Skip to content

Commit ad4ff09

Browse files
Merge pull request #225766 from Blackmist/fixing-reference-links
fixing links
2 parents bf6b002 + 876f211 commit ad4ff09

8 files changed

+12
-12
lines changed

articles/machine-learning/how-to-deploy-automl-endpoint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,10 @@ After you create a deployment, you can score it as described in [Invoke the endp
168168
If you haven't installed Python SDK v2 yet, please install with this command:
169169
170170
```azurecli
171-
pip install --pre azure-ai-ml
171+
pip install azure-ai-ml
172172
```
173173

174-
For more information, see [Install the Azure Machine Learning SDK v2 for Python](/python/api/overview/azure/ml/installv2).
174+
For more information, see [Install the Azure Machine Learning SDK v2 for Python](/python/api/overview/azure/ai-ml-readme).
175175

176176
## Put the scoring file in its own directory
177177

articles/machine-learning/how-to-devops-machine-learning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You can use an [Azure DevOps pipeline](/azure/devops/pipelines/) to automate the
2626

2727
This article will teach you how to create an Azure Pipeline that builds and deploys a machine learning model to [Azure Machine Learning](overview-what-is-azure-machine-learning.md). You'll train a scikit-learn linear regression model on the Diabetes dataset.
2828

29-
This tutorial uses [Azure Machine Learning Python SDK v2](/python/api/overview/azure/ml/installv2) and [Azure CLI ML extension v2](/cli/azure/ml).
29+
This tutorial uses [Azure Machine Learning Python SDK v2](/python/api/overview/azure/ai-ml-readme) and [Azure CLI ML extension v2](/cli/azure/ml).
3030

3131
## Prerequisites
3232

articles/machine-learning/how-to-manage-synapse-spark-pool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ In this article, you will learn how to attach a [Synapse Spark Pool](../synapse-
5050
- [Create an Azure Synapse Analytics workspace in Azure portal](../synapse-analytics/quickstart-create-workspace.md).
5151
- [Create an Apache Spark pool using the Azure portal](../synapse-analytics/quickstart-create-apache-spark-pool-portal.md).
5252
- [Configure your development environment](./how-to-configure-environment.md), or [create an Azure Machine Learning compute instance](./concept-compute-instance.md#create).
53-
- [Install the Azure Machine Learning SDK for Python](/python/api/overview/azure/ml/installv2).
53+
- [Install the Azure Machine Learning SDK for Python](/python/api/overview/azure/ai-ml-readme).
5454

5555
---
5656

articles/machine-learning/how-to-schedule-pipeline-job.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In this article, you'll learn how to programmatically schedule a pipeline to run
3232
# [Python SDK](#tab/python)
3333

3434
- Create an Azure Machine Learning workspace if you don't have one.
35-
- The [Azure Machine Learning SDK v2 for Python](/python/api/overview/azure/ml/installv2).
35+
- The [Azure Machine Learning SDK v2 for Python](/python/api/overview/azure/ai-ml-readme).
3636

3737
# [studio UI](#tab/ui)
3838

articles/machine-learning/how-to-submit-spark-jobs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Azure Machine Learning supports submission of standalone machine learning jobs,
3636
- An Azure subscription; if you don't have an Azure subscription, [create a free account](https://azure.microsoft.com/free) before you begin.
3737
- An Azure Machine Learning workspace. See [Create workspace resources](./quickstart-create-resources.md).
3838
- [Configure your development environment](./how-to-configure-environment.md), or [create an Azure Machine Learning compute instance](./concept-compute-instance.md#create).
39-
- [Install the Azure Machine Learning SDK for Python](/python/api/overview/azure/ml/installv2).
39+
- [Install the Azure Machine Learning SDK for Python](/python/api/overview/azure/ai-ml-readme).
4040
- [(Optional): An attached Synapse Spark pool in the Azure Machine Learning workspace](./how-to-manage-synapse-spark-pool.md).
4141

4242
# [Studio UI](#tab/ui)
@@ -339,7 +339,7 @@ To create a standalone Spark job, use the `azure.ai.ml.spark` function, with the
339339
You can submit a standalone Spark job from:
340340
- an Azure Machine Learning Notebook connected to an Azure Machine Learning compute instance.
341341
- [Visual Studio Code connected to an Azure Machine Learning compute instance](./how-to-set-up-vs-code-remote.md?tabs=studio).
342-
- your local computer that has [the Azure Machine Learning SDK for Python](/python/api/overview/azure/ml/installv2) installed.
342+
- your local computer that has [the Azure Machine Learning SDK for Python](/python/api/overview/azure/ai-ml-readme) installed.
343343

344344
This Python code snippet shows the creation of a standalone Spark job, with an Azure Machine Learning Managed (Automatic) Spark compute, using user identity.
345345

@@ -615,7 +615,7 @@ To create an Azure Machine Learning pipeline with a Spark component, you should
615615
You can submit a pipeline job with a Spark component from:
616616
- an Azure Machine Learning Notebook connected to an Azure Machine Learning compute instance.
617617
- [Visual Studio Code connected to an Azure Machine Learning compute instance](./how-to-set-up-vs-code-remote.md?tabs=studio).
618-
- your local computer that has [the Azure Machine Learning SDK for Python](/python/api/overview/azure/ml/installv2) installed.
618+
- your local computer that has [the Azure Machine Learning SDK for Python](/python/api/overview/azure/ai-ml-readme) installed.
619619

620620
This Python code snippet shows use of a managed identity, together with the creation of an Azure Machine Learning pipeline job. Additionally, it shows use of a Spark component and an Azure Machine Learning Managed (Automatic) Synapse compute:
621621

articles/machine-learning/how-to-troubleshoot-online-endpoints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The section [HTTP status codes](#http-status-codes) explains how invocation and
3434
* An **Azure subscription**. Try the [free or paid version of Azure Machine Learning](https://azure.microsoft.com/free/).
3535
* The [Azure CLI](/cli/azure/install-azure-cli).
3636
* For Azure Machine Learning CLI v2, see [Install, set up, and use the CLI (v2)](how-to-configure-cli.md).
37-
* For Azure Machine Learning Python SDK v2, see [Install the Azure Machine Learning SDK v2 for Python](/python/api/overview/azure/ml/installv2).
37+
* For Azure Machine Learning Python SDK v2, see [Install the Azure Machine Learning SDK v2 for Python](/python/api/overview/azure/ai-ml-readme).
3838

3939
## Deploy locally
4040

articles/machine-learning/migrate-to-v2-execution-parallel-run-step.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This article gives a comparison of scenario(s) in SDK v1 and SDK v2. In the foll
3232

3333
## Prerequisites
3434

35-
- Prepare your SDK v2 environment: [Install the Azure ML SDK v2 for Python](/python/api/overview/azure/ml/installv2)
35+
- Prepare your SDK v2 environment: [Install the Azure ML SDK v2 for Python](/python/api/overview/azure/ai-ml-readme)
3636
- Understand the basis of SDK v2 pipeline: [How to create Azure ML pipeline with Python SDK v2](how-to-create-component-pipeline-python.md)
3737

3838

articles/machine-learning/quickstart-spark-jobs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ In this quickstart guide, you'll learn how to submit a Spark job using Azure Mac
4242
- An Azure Machine Learning workspace. See [Create workspace resources](./quickstart-create-resources.md).
4343
- An Azure Data Lake Storage (ADLS) Gen 2 storage account. See [Create an Azure Data Lake Storage (ADLS) Gen 2 storage account](../storage/blobs/create-data-lake-storage-account.md).
4444
- [Configure your development environment](./how-to-configure-environment.md), or [create an Azure Machine Learning compute instance](./concept-compute-instance.md#create).
45-
- [Install Azure Machine Learning SDK for Python](/python/api/overview/azure/ml/installv2).
45+
- [Install Azure Machine Learning SDK for Python](/python/api/overview/azure/ai-ml-readme).
4646

4747
> [!TIP]
4848
> You can submit a Spark job from:
4949
> - an Azure Machine Learning Notebook connected to an Azure Machine Learning compute instance.
5050
> - [Visual Studio Code connected to an Azure Machine Learning compute instance](./how-to-set-up-vs-code-remote.md?tabs=studio).
51-
> - your local computer that has [the Azure Machine Learning SDK for Python](/python/api/overview/azure/ml/installv2) installed.
51+
> - your local computer that has [the Azure Machine Learning SDK for Python](/python/api/overview/azure/ai-ml-readme) installed.
5252
5353
# [Studio UI](#tab/studio-ui)
5454
- An Azure subscription; if you don't have an Azure subscription, [create a free account](https://azure.microsoft.com/free) before you begin.

0 commit comments

Comments
 (0)