Skip to content

Commit

Permalink
Reformatted the jupyter file
Browse files Browse the repository at this point in the history
  • Loading branch information
rsgrewal-aws committed Jul 18, 2022
1 parent f3cb7e3 commit a343c12
Showing 1 changed file with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -383,9 +383,7 @@
"metadata": {},
"outputs": [],
"source": [
"endpoint_config_name = \"catboost-multimodel-config\" + strftime(\n",
" \"%Y-%m-%d-%H-%M-%S\", gmtime()\n",
")\n",
"endpoint_config_name = \"catboost-multimodel-config\" + strftime(\"%Y-%m-%d-%H-%M-%S\", gmtime())\n",
"print(\"Endpoint config name: \" + endpoint_config_name)\n",
"\n",
"create_endpoint_config_response = sm_client.create_endpoint_config(\n",
Expand Down Expand Up @@ -423,9 +421,7 @@
"\n",
"import time\n",
"\n",
"endpoint_name = \"catboost-multimodel-endpoint-\" + strftime(\n",
" \"%Y-%m-%d-%H-%M-%S\", gmtime()\n",
")\n",
"endpoint_name = \"catboost-multimodel-endpoint-\" + strftime(\"%Y-%m-%d-%H-%M-%S\", gmtime())\n",
"print(\"Endpoint name: \" + endpoint_name)\n",
"\n",
"create_endpoint_response = sm_client.create_endpoint(\n",
Expand Down Expand Up @@ -520,9 +516,7 @@
"source": [
"# delete the end point\n",
"\n",
"sm_client.delete_endpoint(\n",
" EndpointName=endpoint_name\n",
")"
"sm_client.delete_endpoint(EndpointName=endpoint_name)"
],
"metadata": {
"collapsed": false,
Expand Down

0 comments on commit a343c12

Please sign in to comment.