You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -98,9 +98,9 @@ from azure.identity import DefaultAzureCredential
98
98
# authenticate
99
99
credential = DefaultAzureCredential()
100
100
101
-
SUBSCRIPTION="<SUBSCRIPTION_ID>"
102
-
RESOURCE_GROUP="<RESOURCE_GROUP>"
103
-
WS_NAME="<AML_WORKSPACE_NAME>"
101
+
SUBSCRIPTION="<SUBSCRIPTION_ID>"
102
+
RESOURCE_GROUP="<RESOURCE_GROUP>"
103
+
WS_NAME="<AML_WORKSPACE_NAME>"
104
104
# Get a handle to the workspace
105
105
ml_client = MLClient(
106
106
credential=credential,
@@ -113,14 +113,14 @@ ml_client = MLClient(
113
113
> [!NOTE]
114
114
> Creating MLClient will not connect to the workspace. The client initialization is lazy, it will wait for the first time it needs to make a call (this will happen in the next code cell).
115
115
116
-
Verify the connection by making a call to `ml_client`. Since this is the first time that you're making a call to the workspace, you might be asked to authenticate.
116
+
Verify the connection by making a call to `ml_client`. Since this is the first time that you're making a call to the workspace, you may be asked to authenticate.
117
117
118
118
119
119
```python
120
-
# Verify that the handle works correctly.
120
+
# Verify that the handle works correctly.
121
121
# If you ge an error here, modify your SUBSCRIPTION, RESOURCE_GROUP, and WS_NAME in the previous cell.
122
122
ws = ml_client.workspaces.get(WS_NAME)
123
-
print(ws.location,":", ws.resource_group)
123
+
print(ws.location,":", ws.resource_group)
124
124
```
125
125
126
126
## Access the registered data asset
@@ -476,7 +476,7 @@ outputs:
476
476
code: .
477
477
environment:
478
478
# for this step, we'll use an AzureML curate environment
You can track the progress of your pipeline, by using the link generated in the previous cell. When you first select this link, you might see that the pipeline is still running. Once it's complete, you can examine each component's results.
596
+
You can track the progress of your pipeline, by using the link generated in the previous cell. When you first select this link, you may see that the pipeline is still running. Once it's complete, you can examine each component's results.
597
597
598
598
Double-click the **Train Credit Defaults Model** component.
599
599
@@ -614,6 +614,7 @@ To learn how to deploy your model to an online endpoint, see [Deploy a model as
614
614
<!-- nbend -->
615
615
616
616
617
+
617
618
## Clean up resources
618
619
619
620
If you plan to continue now to other tutorials, skip to [Next steps](#next-steps).
0 commit comments