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
In this article, you learn how to configure and submit Azure Machine Learning jobs to train your models. Snippets of code explain the key parts of configuration and submission of a training job. Then use one of the [example notebooks](https://github.com/Azure/azureml-examples/tree/sdk-preview/sdk) to find the full end-to-end working examples.
23
+
In this article, you learn how to configure and submit Azure Machine Learning jobs to train your models. Snippets of code explain the key parts of configuration and submission of a training job. Then use one of the [example notebooks](https://github.com/Azure/azureml-examples/tree/sdk-preview/sdk) to find the full end-to-end working examples.
24
24
25
25
## Prerequisites
26
26
27
27
* If you don't have an Azure subscription, create a free account before you begin. Try the [free or paid version of Azure Machine Learning](https://azure.microsoft.com/free/) today
28
-
* The Azure Machine Learning SDK v2 for Python - [install SDKv2](./install-sdkv2.md)
28
+
* The Azure Machine Learning SDK v2 for Python - [install SDKv2]()
29
29
* An Azure Machine Learning workspace
30
30
31
31
### Clone examples repository
@@ -217,7 +217,7 @@ As seen above, the `sweep` function allows user to configure the following key a
217
217
218
218
Once this job completes, you can look at the metrics and the job details in the [Azure ML Portal](https://ml.azure.com/). The job details page will identify the best performing child run.
219
219
220
-
:::image type="content" source="sweep-best-run.jpg" alt-text="Best run of the sweep":::
220
+
:::image type="content" source="media/how-to-train-sdk/sweep-best-run.jpg" alt-text="Best run of the sweep":::
Learn how to attach Azure compute resources to your Azure Machine Learning workspace with SDK v1. Then you can use these resources as training and inference [compute targets](concept-compute-target.md) in your machine learning tasks.
23
+
Learn how to attach Azure compute resources to your Azure Machine Learning workspace with SDK v1. Then you can use these resources as training and inference [compute targets](../concept-compute-target.md) in your machine learning tasks.
24
24
25
25
In this article, learn how to set up your workspace to use these compute resources:
26
26
@@ -29,7 +29,7 @@ In this article, learn how to set up your workspace to use these compute resourc
29
29
* Apache Spark pools (powered by Azure Synapse Analytics)
30
30
* Azure HDInsight
31
31
* Azure Batch
32
-
* Azure Databricks - used as a training compute target only in [machine learning pipelines](how-to-create-machine-learning-pipelines.md)
32
+
* Azure Databricks - used as a training compute target only in [machine learning pipelines](../how-to-create-machine-learning-pipelines.md)
33
33
* Azure Data Lake Analytics
34
34
* Azure Container Instance
35
35
* Azure Kubernetes Service & Azure Arc-enabled Kubernetes (preview)
@@ -44,7 +44,7 @@ To use compute targets managed by Azure Machine Learning, see:
44
44
45
45
* An Azure Machine Learning workspace. For more information, see [Create an Azure Machine Learning workspace](../how-to-manage-workspace.md).
46
46
47
-
* The [Azure CLI extension for Machine Learning service](reference-azure-machine-learning-cli.md), [Azure Machine Learning Python SDK](/python/api/overview/azure/ml/intro), or the [Azure Machine Learning Visual Studio Code extension](how-to-setup-vs-code.md).
47
+
* The [Azure CLI extension for Machine Learning service](reference-azure-machine-learning-cli.md), [Azure Machine Learning Python SDK](/python/api/overview/azure/ml/intro), or the [Azure Machine Learning Visual Studio Code extension](../how-to-setup-vs-code.md).
48
48
49
49
## Limitations
50
50
@@ -130,13 +130,13 @@ Azure Machine Learning also supports attaching an Azure Virtual Machine. The VM
130
130
131
131
## <aid="synapse"></a>Apache Spark pools
132
132
133
-
The Azure Synapse Analytics integration with Azure Machine Learning (preview) allows you to attach an Apache Spark pool backed by Azure Synapse for interactive data exploration and preparation. With this integration, you can have a dedicated compute for data wrangling at scale. For more information, see [How to attach Apache Spark pools powered by Azure Synapse Analytics](how-to-link-synapse-ml-workspaces.md#attach-synapse-spark-pool-as-a-compute).
133
+
The Azure Synapse Analytics integration with Azure Machine Learning (preview) allows you to attach an Apache Spark pool backed by Azure Synapse for interactive data exploration and preparation. With this integration, you can have a dedicated compute for data wrangling at scale. For more information, see [How to attach Apache Spark pools powered by Azure Synapse Analytics](../how-to-link-synapse-ml-workspaces.md#attach-synapse-spark-pool-as-a-compute).
134
134
135
135
## <aid="hdinsight"></a>Azure HDInsight
136
136
137
137
Azure HDInsight is a popular platform for big-data analytics. The platform provides Apache Spark, which can be used to train your model.
138
138
139
-
1.**Create**: Azure Machine Learning cannot create an HDInsight cluster for you. Instead, you must create the cluster and then attach it to your Azure Machine Learning workspace. For more information, see [Create a Spark Cluster in HDInsight](../hdinsight/spark/apache-spark-jupyter-spark-sql.md).
139
+
1.**Create**: Azure Machine Learning cannot create an HDInsight cluster for you. Instead, you must create the cluster and then attach it to your Azure Machine Learning workspace. For more information, see [Create a Spark Cluster in HDInsight](../../hdinsight/spark/apache-spark-jupyter-spark-sql.md).
140
140
141
141
> [!WARNING]
142
142
> Azure Machine Learning requires the HDInsight cluster to have a __public IP address__.
@@ -342,7 +342,7 @@ For a more detailed example, see an [example notebook](https://aka.ms/pl-adla) o
342
342
343
343
## <aid="aci"></a>Azure Container Instance
344
344
345
-
Azure Container Instances (ACI) are created dynamically when you deploy a model. You cannot create or attach ACI to your workspace in any other way. For more information, see [Deploy a model to Azure Container Instances](v1/how-to-deploy-azure-container-instance.md).
345
+
Azure Container Instances (ACI) are created dynamically when you deploy a model. You cannot create or attach ACI to your workspace in any other way. For more information, see [Deploy a model to Azure Container Instances](how-to-deploy-azure-container-instance.md).
0 commit comments