|
9 | 9 | "**Requirements** - In order to benefit from this tutorial, you will need:\n",
|
10 | 10 | "- A basic understanding of Machine Learning\n",
|
11 | 11 | "- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F)\n",
|
12 |
| - "- An Azure ML workspace. [Check this notebook for creating a workspace](../../../resources/workspace/workspace.ipynb) \n", |
| 12 | + "- An Azure ML workspace. [Check this notebook for creating a workspace](../../../resources/workspace/workspace.ipynb) \n", |
13 | 13 | "- A python environment\n",
|
14 | 14 | "- Installed Azure Machine Learning Python SDK v2 - [install instructions](../../../README.md) - check the getting started section\n",
|
15 | 15 | "\n",
|
|
120 | 120 | "source": [
|
121 | 121 | "workspace = ml_client.workspaces.get(name=ml_client.workspace_name)\n",
|
122 | 122 | "\n",
|
123 |
| - "subscription_id = ml_client.connections._subscription_id\n", |
| 123 | + "subscription_id = ml_client.subscription_id\n", |
124 | 124 | "resource_group = workspace.resource_group\n",
|
125 | 125 | "workspace_name = ml_client.workspace_name\n",
|
126 | 126 | "\n",
|
|
230 | 230 | "# Create the AutoML classification job with the related factory-function.\n",
|
231 | 231 | "from azure.ai.ml.entities import ResourceConfiguration \n",
|
232 | 232 | "\n",
|
233 |
| - "classification_job = automl.classification(\n", |
| 233 | + "classification_job = automl.classification(\n", |
234 | 234 | " experiment_name=exp_name,\n",
|
235 | 235 | " training_data=my_training_data_input,\n",
|
236 | 236 | " target_column_name=\"y\",\n",
|
|
0 commit comments