|
36 | 36 | "source": [
|
37 | 37 | "## Connect to your workspace\n",
|
38 | 38 | "\n",
|
39 |
| - "With the required SDK packages installed, now you're ready to connect to your workspace.\n", |
40 |
| - "\n", |
41 |
| - "To connect to a workspace, we need identifier parameters - a subscription ID, resource group name, and workspace name. The resource group name and workspace name are already filled in for you. You only need the subscription ID to complete the command.\n", |
42 |
| - "\n", |
43 |
| - "To find the necessary parameters, click on the subscription and workspace name at the top right of the Studio. A pane will open on the right.\n", |
44 |
| - "\n", |
45 |
| - "<p style=\"color:red;font-size:120%;background-color:yellow;font-weight:bold\"> Copy the subscription ID and replace **YOUR-SUBSCRIPTION-ID** with the value you copied. </p>" |
| 39 | + "With the required SDK packages installed, now you're ready to connect to your workspace." |
46 | 40 | ]
|
47 | 41 | },
|
48 | 42 | {
|
|
58 | 52 | },
|
59 | 53 | "outputs": [],
|
60 | 54 | "source": [
|
61 |
| - "# enter details of your AML workspace\n", |
62 |
| - "subscription_id = \"YOUR-SUBSCRIPTION-ID\"\n", |
63 |
| - "resource_group = \"rg-dp100-labs\"\n", |
64 |
| - "workspace = \"mlw-dp100-labs\"" |
| 55 | + "from azure.identity import DefaultAzureCredential, InteractiveBrowserCredential\n", |
| 56 | + "\n", |
| 57 | + "try:\n", |
| 58 | + " credential = DefaultAzureCredential()\n", |
| 59 | + " # Check if given credential can get token successfully.\n", |
| 60 | + " credential.get_token(\"https://management.azure.com/.default\")\n", |
| 61 | + "except Exception as ex:\n", |
| 62 | + " # Fall back to InteractiveBrowserCredential in case DefaultAzureCredential not work\n", |
| 63 | + " credential = InteractiveBrowserCredential()" |
65 | 64 | ]
|
66 | 65 | },
|
67 | 66 | {
|
|
75 | 74 | "outputs": [],
|
76 | 75 | "source": [
|
77 | 76 | "from azure.ai.ml import MLClient\n",
|
78 |
| - "from azure.identity import DefaultAzureCredential\n", |
79 | 77 | "\n",
|
80 |
| - "# get a handle to the workspace\n", |
81 |
| - "ml_client = MLClient(\n", |
82 |
| - " DefaultAzureCredential(), subscription_id, resource_group, workspace\n", |
83 |
| - ")" |
| 78 | + "# Get a handle to workspace\n", |
| 79 | + "ml_client = MLClient.from_config(credential=credential)" |
84 | 80 | ]
|
85 | 81 | },
|
86 | 82 | {
|
|
361 | 357 | " type: uri_file\n",
|
362 | 358 | "outputs:\n",
|
363 | 359 | " output_data:\n",
|
364 |
| - " type: uri_file\n", |
| 360 | + " type: uri_folder\n", |
365 | 361 | "code: ./src\n",
|
366 | 362 | "environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu@latest\n",
|
367 | 363 | "command: >-\n",
|
|
388 | 384 | "type: command\n",
|
389 | 385 | "inputs:\n",
|
390 | 386 | " training_data: \n",
|
391 |
| - " type: uri_file\n", |
| 387 | + " type: uri_folder\n", |
392 | 388 | " reg_rate:\n",
|
393 | 389 | " type: number\n",
|
394 | 390 | " default: 0.01\n",
|
|
0 commit comments