Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7e239b5

Browse files
committedApr 25, 2022
add image; fix links
1 parent efdb4aa commit 7e239b5

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed
 

‎articles/machine-learning/how-to-train-sdk.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure Machine Learning
44
description: Configure and submit Azure Machine Learning jobs to train your models with SDK v2.
55
services: machine-learning
66
author: balapv
7-
ms.author: balapb
7+
ms.author: balapv
88
ms.reviewer: sgilley
99
ms.service: machine-learning
1010
ms.subservice: core
@@ -20,12 +20,12 @@ ms.custom: sdkv2
2020
> * [v1](v1/how-to-attach-compute-targets.md)
2121
> * [v2 (preview)](how-to-attach-compute-targets.md)
2222
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.
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.
2424

2525
## Prerequisites
2626

2727
* 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]()
2929
* An Azure Machine Learning workspace
3030

3131
### Clone examples repository
@@ -217,7 +217,7 @@ As seen above, the `sweep` function allows user to configure the following key a
217217

218218
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.
219219

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":::
221221

222222
## Distributed training
223223

@@ -241,4 +241,4 @@ job.distribution = MpiDistribution(process_count_per_instance=3)
241241

242242
Try these next steps to learn how to use the Azure Machine Learning SDK (v2) for Python:
243243

244-
1. [Use pipelines with the Azure ML Python SDK (v2)](../pipeline-sdkv2.md)
244+
1. Use pipelines with the Azure ML Python SDK (v2)
Loading

‎articles/machine-learning/v1/how-to-attach-compute-targets.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ms.custom: devx-track-python, contperf-fy21q1, ignite-fall-2021, sdkv1
2020
> * [v1](how-to-attach-compute-targets.md)
2121
> * [v2 (preview)](../how-to-attach-compute-targets.md)
2222
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.
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.
2424

2525
In this article, learn how to set up your workspace to use these compute resources:
2626

@@ -29,7 +29,7 @@ In this article, learn how to set up your workspace to use these compute resourc
2929
* Apache Spark pools (powered by Azure Synapse Analytics)
3030
* Azure HDInsight
3131
* 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)
3333
* Azure Data Lake Analytics
3434
* Azure Container Instance
3535
* Azure Kubernetes Service & Azure Arc-enabled Kubernetes (preview)
@@ -44,7 +44,7 @@ To use compute targets managed by Azure Machine Learning, see:
4444

4545
* An Azure Machine Learning workspace. For more information, see [Create an Azure Machine Learning workspace](../how-to-manage-workspace.md).
4646

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).
4848

4949
## Limitations
5050

@@ -130,13 +130,13 @@ Azure Machine Learning also supports attaching an Azure Virtual Machine. The VM
130130
131131
## <a id="synapse"></a>Apache Spark pools
132132

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).
134134

135135
## <a id="hdinsight"></a>Azure HDInsight
136136

137137
Azure HDInsight is a popular platform for big-data analytics. The platform provides Apache Spark, which can be used to train your model.
138138

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).
140140

141141
> [!WARNING]
142142
> 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
342342
343343
## <a id="aci"></a>Azure Container Instance
344344

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).
346346

347347
## <a id="kubernetes"></a>Kubernetes (preview)
348348

‎includes/aml-compute-target-train.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ You can use any of the following resources for a training compute target for mos
2525
|[Azure&nbsp;Databricks](../articles/machine-learning/v1/how-to-attach-compute-targets.md#databricks)| Yes (SDK local mode only) | Yes | &nbsp; |
2626
|[Azure Data Lake Analytics](../articles/machine-learning/v1/how-to-attach-compute-targets.md#adla) | &nbsp; | Yes | &nbsp; |
2727
|[Azure HDInsight](../articles/machine-learning/v1/how-to-attach-compute-targets.md#hdinsight) | &nbsp; | Yes | &nbsp; |
28-
|[Azure Batch](../articles/machine-learning/hv1/ow-to-attach-compute-targets.md#azbatch) | &nbsp; | Yes | &nbsp; |
28+
|[Azure Batch](../articles/machine-learning/v1/how-to-attach-compute-targets.md#azbatch) | &nbsp; | Yes | &nbsp; |
2929
|[Azure Kubernetes Service](../articles/machine-learning/v1/how-to-attach-compute-targets.md#kubernetes) (preview) | Yes | Yes | Yes |
3030
|[Azure Arc-enabled Kubernetes](../articles/machine-learning/v1/how-to-attach-compute-targets.md#kubernetes) (preview) | Yes | Yes | Yes |
3131

0 commit comments

Comments
 (0)
Please sign in to comment.