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
#Customer intent: As a Python scikit-learn developer, I need to combine open-source with a cloud platform to train, evaluate, and deploy my machine learning models at scale.
14
14
---
15
15
@@ -27,6 +27,7 @@ The example scripts in this article are used to classify iris flower images to b
27
27
Whether you're training a machine learning scikit-learn model from the ground-up or you're bringing an existing model into the cloud, you can use Azure Machine Learning to scale out open-source training jobs using elastic cloud compute resources. You can build, deploy, version, and monitor production-grade models with Azure Machine Learning.
28
28
29
29
## Prerequisites
30
+
<!-- M.A: update the prerequisites (path to the notebook) before sign-off -->
30
31
31
32
You can run this code in either an Azure Machine Learning compute instance, or your own Jupyter Notebook:
32
33
@@ -37,18 +38,26 @@ You can run this code in either an Azure Machine Learning compute instance, or y
37
38
38
39
- Create a Jupyter Notebook server and run the code in the following sections.
39
40
40
-
-[Install the Azure Machine Learning SDK](/python/api/overview/azure/ml/install) (>= 1.13.0).
41
-
-[Create a workspace configuration file](how-to-configure-environment.md#workspace).
41
+
-[Install the Azure Machine Learning SDK (v2)](https://aka.ms/sdk-v2-install).
42
+
42
43
43
44
## Set up the experiment
44
45
45
46
This section sets up the training experiment by loading the required Python packages, initializing a workspace, defining the training environment, and preparing the training script.
46
47
47
48
### Initialize a workspace
48
49
49
-
The [Azure Machine Learning workspace](concept-workspace.md) is the top-level resource for the service. It provides you with a centralized place to work with all the artifacts you create. In the Python SDK, you can access the workspace artifacts by creating a [`workspace`](/python/api/azureml-core/azureml.core.workspace.workspace) object.
50
+
The [Azure Machine Learning workspace](concept-workspace.md) is the top-level resource for the service. It provides you with a centralized place to work with all the artifacts you create.
51
+
52
+
First, you'll need to connect to your Azure ML workspace. 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.
53
+
54
+
We are using DefaultAzureCredential to get access to workspace. DefaultAzureCredential should be capable of handling most Azure SDK authentication scenarios.
55
+
56
+
Reference for more available credentials if it does not work for you: configure credential example, azure-identity reference doc.
57
+
58
+
<!-- In the Python SDK, you can access the workspace artifacts by creating a [`workspace`](/python/api/azureml-core/azureml.core.workspace.workspace) object. -->
50
59
51
-
Create a workspace object from the `config.json` file created in the [prerequisites section](#prerequisites).
60
+
<!--Create a workspace object from the `config.json` file created in the [prerequisites section](#prerequisites).-->
0 commit comments