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
1. First, let's connect to Azure Machine Learning workspace where we are going to work on.
136
134
137
-
# [Azure CLI](#tab/cli)
135
+
# [Azure CLI](#tab/cli)
138
136
139
-
```azurecli
140
-
az account set --subscription <subscription>
141
-
az configure --defaults workspace=<workspace> group=<resource-group> location=<location>
142
-
```
137
+
```azurecli
138
+
az account set --subscription <subscription>
139
+
az configure --defaults workspace=<workspace> group=<resource-group> location=<location>
140
+
```
143
141
144
-
# [Python SDK](#tab/sdk)
142
+
# [Python SDK](#tab/sdk)
145
143
146
-
The workspace is the top-level resource for Azure Machine Learning, providing a centralized place to work with all the artifacts you create when you use Azure Machine Learning. In this section, we'll connect to the workspace in which you'll perform deployment tasks.
144
+
The workspace is the top-level resource for Azure Machine Learning, providing a centralized place to work with all the artifacts you create when you use Azure Machine Learning. In this section, we'll connect to the workspace in which you'll perform deployment tasks.
147
145
148
-
1. Import the required libraries:
146
+
1. Import the required libraries:
149
147
150
-
```python
151
-
from azure.ai.ml import MLClient
152
-
from azure.identity import DefaultAzureCredential
153
-
```
148
+
```python
149
+
from azure.ai.ml import MLClient
150
+
from azure.identity import DefaultAzureCredential
151
+
```
154
152
155
-
2. Configure workspace details and get a handle to the workspace:
153
+
2. Configure workspace details and get a handle to the workspace:
0 commit comments