Skip to content

Commit

Permalink
Renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
csiebler committed Oct 19, 2021
1 parent fa26ddf commit b07d98d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python-model-deployment/deploy_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
" environment=environment)\n",
"\n",
"# Full definition see https://docs.microsoft.com/en-us/python/api/azureml-core/azureml.core.webservice.akswebservice?view=azure-ml-py\n",
"aks_config = {\n",
"deployment_config = {\n",
" 'enable_app_insights': True,\n",
" 'collect_model_data': True,\n",
" 'token_auth_enabled': False,\n",
Expand All @@ -186,7 +186,7 @@
" name=deployment_name,\n",
" models=[model],\n",
" inference_config=inf_config,\n",
" deployment_config=AksWebservice.deploy_configuration(**aks_config),\n",
" deployment_config=AksWebservice.deploy_configuration(**deployment_config),\n",
" deployment_target=aks_target,\n",
" overwrite=True)\n",
"\n",
Expand Down

0 comments on commit b07d98d

Please sign in to comment.