Skip to content

Commit de47b8f

Browse files
Merge pull request #213400 from Blackmist/sdk-links-1
updates for v2 SDK links
2 parents cc55c37 + 944d46f commit de47b8f

15 files changed

+30
-27
lines changed

articles/machine-learning/concept-automated-ml.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Traditional machine learning model development is resource-intensive, requiring
2323

2424
Azure Machine Learning offers the following two experiences for working with automated ML. See the following sections to understand feature availability in each experience.
2525

26-
* For code-experienced customers, [Azure Machine Learning Python SDK](/python/api/overview/azure/ml/intro). Get started with [Tutorial: Train an object detection model (preview) with AutoML and Python](tutorial-auto-train-image-models.md)
26+
* For code-experienced customers, [Azure Machine Learning Python SDK](https://aka.ms/sdk-v2-install). Get started with [Tutorial: Train an object detection model (preview) with AutoML and Python](tutorial-auto-train-image-models.md)
2727

2828
* For limited/no-code experience customers, Azure Machine Learning studio at [https://ml.azure.com](https://ml.azure.com/). Get started with these tutorials:
2929
* [Tutorial: Create a classification model with automated ML in Azure Machine Learning](tutorial-first-experiment-automated-ml.md).

articles/machine-learning/concept-compute-instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ You can [Add RStudio](how-to-create-manage-compute-instance.md#add-custom-applic
7878
|Anaconda Python||
7979
|Jupyter and extensions||
8080
|Jupyterlab and extensions||
81-
[Azure Machine Learning SDK for Python](/python/api/overview/azure/ml/intro)</br>from PyPI|Includes most of the azureml extra packages. To see the full list, [open a terminal window on your compute instance](how-to-access-terminal.md) and run <br/> `conda list -n azureml_py36 azureml*` |
81+
[Azure Machine Learning SDK for Python](https://aka.ms/sdk-v2-install)</br>from PyPI|Includes most of the azureml extra packages. To see the full list, [open a terminal window on your compute instance](how-to-access-terminal.md) and run <br/> `conda list -n azureml_py36 azureml*` |
8282
|Other PyPI packages|`jupytext`</br>`tensorboard`</br>`nbconvert`</br>`notebook`</br>`Pillow`|
8383
|Conda packages|`cython`</br>`numpy`</br>`ipykernel`</br>`scikit-learn`</br>`matplotlib`</br>`tqdm`</br>`joblib`</br>`nodejs`</br>`nb_conda_kernels`|
8484
|Deep learning packages|`PyTorch`</br>`TensorFlow`</br>`Keras`</br>`Horovod`</br>`MLFlow`</br>`pandas-ml`</br>`scrapbook`|

articles/machine-learning/concept-workspace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ You can interact with your workspace in the following ways:
4646
+ On the web:
4747
+ [Azure Machine Learning studio ](https://ml.azure.com)
4848
+ [Azure Machine Learning designer](concept-designer.md)
49-
+ In any Python environment with the [Azure Machine Learning SDK for Python](/python/api/overview/azure/ml/intro).
49+
+ In any Python environment with the [Azure Machine Learning SDK for Python](https://aka.ms/sdk-v2-install).
5050
+ On the command line using the Azure Machine Learning [CLI extension](how-to-configure-cli.md)
5151
+ [Azure Machine Learning VS Code Extension](how-to-manage-resources-vscode.md#workspaces)
5252

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ In this article, learn how to connect to data storage services on Azure with Azu
3131

3232
- An Azure subscription. 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/).
3333

34-
- The [Azure Machine Learning SDK for Python](/python/api/overview/azure/ml/intro).
34+
- The [Azure Machine Learning SDK for Python](https://aka.ms/sdk-v2-install).
3535

3636
- An Azure Machine Learning workspace.
3737

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ By using the classes and methods in the SDK v1, you can:
5959
* Achieve model interpretability on real-world datasets at scale during training and inference.
6060
* Use an interactive visualization dashboard to discover patterns in your data and its explanations at training time.
6161

62-
Model interpretability classes are made available through the SDK&nbsp;v1 package. For more information, see [Install SDK packages for Azure Machine Learning](/python/api/overview/azure/ml/install) and [azureml.interpret](/python/api/azureml-interpret/azureml.interpret).
62+
> [!NOTE]
63+
> Model interpretability classes are made available through the SDK v1 package. For more information, see [Install SDK packages for Azure Machine Learning](/python/api/overview/azure/ml/install) and [azureml.interpret](/python/api/azureml-interpret/azureml.interpret).
6364
6465
## Supported model interpretability techniques
6566

articles/machine-learning/how-to-manage-optimize-cost.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ You can also configure the amount of time the node is idle before scale down. By
5353
+ If you perform less iterative experimentation, reduce this time to save costs.
5454
+ If you perform highly iterative dev/test experimentation, you might need to increase the time so you aren't paying for constant scaling up and down after each change to your training script or environment.
5555

56-
AmlCompute clusters can be configured for your changing workload requirements in Azure portal, using the [AmlCompute SDK class](/python/api/azureml-core/azureml.core.compute.amlcompute.amlcompute), [AmlCompute CLI](/cli/azure/ml(v1)/computetarget/create#az-ml-v1--computetarget-create-amlcompute), with the [REST APIs](https://github.com/Azure/azure-rest-api-specs/tree/master/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable).
56+
AmlCompute clusters can be configured for your changing workload requirements in Azure portal, using the [AmlCompute SDK class](/python/api/azure-ai-ml/azure.ai.ml.entities.amlcompute), [AmlCompute CLI](/cli/azure/ml/compute#az-ml-compute-create), with the [REST APIs](https://github.com/Azure/azure-rest-api-specs/tree/master/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable).
5757

5858

5959
## Set quotas on resources

articles/machine-learning/how-to-manage-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.custom: devx-track-python
1717

1818

1919

20-
There are several ways to manage your Azure ML resources. You can use the [portal](https://portal.azure.com/), [command-line interface](/cli/azure), or [Python SDK](/python/api/overview/azure/ml/intro). Or, you can choose the REST API. The REST API uses HTTP verbs in a standard way to create, retrieve, update, and delete resources. The REST API works with any language or tool that can make HTTP requests. REST's straightforward structure often makes it a good choice in scripting environments and for MLOps automation.
20+
There are several ways to manage your Azure ML resources. You can use the [portal](https://portal.azure.com/), [command-line interface](/cli/azure), or [Python SDK](https://aka.ms/sdk-v2-install). Or, you can choose the REST API. The REST API uses HTTP verbs in a standard way to create, retrieve, update, and delete resources. The REST API works with any language or tool that can make HTTP requests. REST's straightforward structure often makes it a good choice in scripting environments and for MLOps automation.
2121

2222
In this article, you learn how to:
2323

articles/machine-learning/how-to-private-endpoint-integration-synapse.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ To verify that the integration between Azure Synapse and Azure Machine Learning
135135
print(ws.name)
136136
```
137137

138-
This code snippet connects to the linked workspace, and then prints the workspace info. In the printed output, the value displayed is the name of the Azure Machine Learning workspace, not the linked service name that was used in the `getWorkspace()` call. For more information on using the `ws` object, see the [Workspace](/python/api/azureml-core/azureml.core.workspace.workspace) class reference.
138+
> [!IMPORTANT]
139+
> This code snippet connects to the linked workspace using SDK v1, and then prints the workspace info. In the printed output, the value displayed is the name of the Azure Machine Learning workspace, not the linked service name that was used in the `getWorkspace()` call. For more information on using the `ws` object, see the [Workspace](/python/api/azureml-core/azureml.core.workspace.workspace) class reference.
139140

140141
## Next steps
141142

articles/machine-learning/how-to-read-write-data-v2.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Learn how to read and write data for your jobs with the Azure Machine Learning P
2828

2929
- An Azure subscription. 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/).
3030

31-
- The [Azure Machine Learning SDK for Python v2](/python/api/overview/azure/ml/intro).
31+
- The [Azure Machine Learning SDK for Python v2](https://aka.ms/sdk-v2-install).
3232

3333
- An Azure Machine Learning workspace
3434

@@ -68,8 +68,8 @@ Type | Input/Output | `upload` | `download` | `ro_mount` | `rw_mount` | `direct`
6868

6969
Create a job specification YAML file (`<file-name>.yml`). Specify in the `inputs` section of the job:
7070

71-
1. The `type`; whether the data you are pointing to is a specific file (`uri_file`) or a folder location (`uri_folder`) or an `mltable`.
72-
1. The `path` of where your data is located; the path can be any of those outlined in the [Supported Paths](#supported-paths) section.
71+
1. The `type`; whether the data is a specific file (`uri_file`) or a folder location (`uri_folder`) or an `mltable`.
72+
1. The `path` of where your data is located; can be any of the paths outlined in the [Supported Paths](#supported-paths) section.
7373

7474
```yaml
7575
$schema: https://azuremlschemas.azureedge.net/latest/commandJob.schema.json
@@ -100,8 +100,8 @@ az ml job create -f <file-name>.yml
100100

101101
The `Input` class allows you to define:
102102

103-
1. The `type`; whether the data you are pointing to is a specific file (`uri_file`) or a folder location (`uri_folder`) or an `mltable`.
104-
1. The `path` of where your data is located; the path can be any of those outlined in the [Supported Paths](#supported-paths) section.
103+
1. The `type`; whether the data is a specific file (`uri_file`) or a folder location (`uri_folder`) or an `mltable`.
104+
1. The `path` of where your data is located; can be any of the paths outlined in the [Supported Paths](#supported-paths) section.
105105

106106
```python
107107
from azure.ai.ml import command

articles/machine-learning/how-to-setup-customer-managed-keys.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,9 @@ For more information on customer-managed keys with Cosmos DB, see [Configure cus
131131
132132
### Azure Container Instance
133133
134+
> [!IMPORTANT]
135+
> Deploying to Azure Container Instances is not available in SDK or CLI v2. Only through SDK & CL v1.
136+
134137
When __deploying__ a trained model to an Azure Container instance (ACI), you can encrypt the deployed resource using a customer-managed key. For information on generating a key, see [Encrypt data with a customer-managed key](../container-instances/container-instances-encrypt-data.md#generate-a-new-key).
135138
136139
To use the key when deploying a model to Azure Container Instance, create a new deployment configuration using `AciWebservice.deploy_configuration()`. Provide the key information using the following parameters:

0 commit comments

Comments
 (0)