Skip to content

Commit

Permalink
fixed linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
melodywang060 committed Oct 10, 2024
1 parent 33b27db commit 2034658
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions source/examples/rapids-azureml-hpo/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,17 @@
"from azure.ai.ml import MLClient\n",
"from azure.identity import DefaultAzureCredential\n",
"\n",
"\n",
"subscription_id = \"FILL IN WITH YOUR AZURE ML CREDENTIALS\"\n",
"resource_group_name = \"FILL IN WITH YOUR AZURE ML CREDENTIALS\"\n",
"workspace_name = \"FILL IN WITH YOUR AZURE ML CREDENTIALS\"\n",
"\n",
"# Get a handle to the workspace\n",
"ml_client = MLClient(\n",
" credential=DefaultAzureCredential(),\n",
" subscription_id= #FILL IN WITH YOUR AZURE ML CREDENTIALS,\n",
" resource_group_name= #FILL IN WITH YOUR AZURE ML CREDENTIALS,\n",
" workspace_name= #FILL IN WITH YOUR AZURE ML CREDENTIALS,\n",
" subscription_id= subscription_id,\n",
" resource_group_name= resource_group_name\n",
" workspace_name= workspace_name\n",
")\n",
"\n",
"print(\n",
Expand Down

0 comments on commit 2034658

Please sign in to comment.