Skip to content

Commit 8ebcf4e

Browse files
authored
Merge pull request #212637 from lgayhardt/sept2022movev1
RAI automl and private python package move to v1 toc
2 parents d7e92a2 + c349bdb commit 8ebcf4e

File tree

6 files changed

+24
-14
lines changed

6 files changed

+24
-14
lines changed

articles/machine-learning/.openpublishing.redirection.machine-learning.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3444,6 +3444,16 @@
34443444
"source_path_from_root": "/articles/machine-learning/v1/how-to-differential-privacy.md",
34453445
"redirect_url": "/azure/machine-learning/concept-responsible-ml#privacy-and-security",
34463446
"redirect_document_id": false
3447+
},
3448+
{
3449+
"source_path_from_root": "/articles/machine-learning/how-to-machine-learning-interpretability-automl.md",
3450+
"redirect_url": "/azure/machine-learning/v1/how-to-machine-learning-interpretability-automl",
3451+
"redirect_document_id": true
3452+
},
3453+
{
3454+
"source_path_from_root": "/articles/machine-learning/how-to-use-private-python-packages.md",
3455+
"redirect_url": "/azure/machine-learning/v1/how-to-use-private-python-packages",
3456+
"redirect_document_id": true
34473457
}
34483458
]
34493459
}

articles/machine-learning/toc.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -376,9 +376,6 @@
376376
- name: Set up software environments
377377
displayName: pip, Conda, anaconda
378378
href: how-to-use-environments.md
379-
- name: Use private Python packages
380-
displayName: pip, Conda, anaconda
381-
href: how-to-use-private-python-packages.md
382379
- name: Set input & output directories
383380
displayName: large data, write, experiment files, size limit
384381
href: how-to-save-write-experiment-files.md
@@ -529,9 +526,6 @@
529526
- name: Inference image models with ONNX model
530527
displayName: automl, image, image model, computer vision
531528
href: how-to-inference-onnx-automl-image-models.md
532-
- name: Explain automated ML models
533-
displayName: SDK, interpret, interpret, explain, explainability, interpretability, automated ML, automl, auto ml
534-
href: how-to-machine-learning-interpretability-automl.md
535529
- name: Troubleshoot automated ML
536530
href: how-to-troubleshoot-auto-ml.md
537531
- name: Deploy models

articles/machine-learning/how-to-machine-learning-interpretability-automl.md renamed to articles/machine-learning/v1/how-to-machine-learning-interpretability-automl.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.date: 10/21/2021
1414

1515
# Interpretability: Model explainability in automated ML (preview)
1616

17-
[!INCLUDE [sdk v1](../../includes/machine-learning-sdk-v1.md)]
17+
[!INCLUDE [sdk v1](../../../includes/machine-learning-sdk-v1.md)]
1818

1919
In this article, you learn how to get explanations for automated machine learning (automated ML) models in Azure Machine Learning using the Python SDK. Automated ML helps you understand feature importance of the models that are generated.
2020

@@ -30,7 +30,7 @@ In this article, you learn how to:
3030
## Prerequisites
3131

3232
- Interpretability features. Run `pip install azureml-interpret` to get the necessary package.
33-
- Knowledge of building automated ML experiments. For more information on how to use the Azure Machine Learning SDK, complete this [object detection model tutorial](tutorial-auto-train-image-models.md) or see how to [configure automated ML experiments](how-to-configure-auto-train.md).
33+
- Knowledge of building automated ML experiments. For more information on how to use the Azure Machine Learning SDK, complete this [object detection model tutorial](../tutorial-auto-train-image-models.md) or see how to [configure automated ML experiments](../how-to-configure-auto-train.md).
3434

3535
## Interpretability during training for the best model
3636

@@ -315,8 +315,8 @@ You can visualize the feature importance chart in your workspace in [Azure Machi
315315

316316
[![Machine Learning Interpretability Architecture](./media/how-to-machine-learning-interpretability-automl/automl-explanation.png)](./media/how-to-machine-learning-interpretability-automl/automl-explanation.png#lightbox)
317317

318-
For more information on the explanation dashboard visualizations and specific plots, please refer to the [how-to doc on interpretability](how-to-machine-learning-interpretability-aml.md).
318+
For more information on the explanation dashboard visualizations and specific plots, please refer to the [how-to doc on interpretability](../how-to-machine-learning-interpretability-aml.md).
319319

320320
## Next steps
321321

322-
For more information about how you can enable model explanations and feature importance in areas other than automated ML, see [more techniques for model interpretability](how-to-machine-learning-interpretability.md).
322+
For more information about how you can enable model explanations and feature importance in areas other than automated ML, see [more techniques for model interpretability](../how-to-machine-learning-interpretability.md).

articles/machine-learning/how-to-use-private-python-packages.md renamed to articles/machine-learning/v1/how-to-use-private-python-packages.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.custom: sdkv1, event-tier1-build-2022
1515

1616
# Use private Python packages with Azure Machine Learning
1717

18-
[!INCLUDE [sdk v1](../../includes/machine-learning-sdk-v1.md)]
18+
[!INCLUDE [sdk v1](../../../includes/machine-learning-sdk-v1.md)]
1919

2020
In this article, learn how to use private Python packages securely within Azure Machine Learning. Use cases for private Python packages include:
2121

@@ -29,7 +29,7 @@ The private packages are used through [Environment](/python/api/azureml-core/azu
2929
## Prerequisites
3030

3131
* The [Azure Machine Learning SDK for Python](/python/api/overview/azure/ml/install)
32-
* An [Azure Machine Learning workspace](quickstart-create-resources.md)
32+
* An [Azure Machine Learning workspace](../quickstart-create-resources.md)
3333

3434
## Use small number of packages for development and testing
3535

@@ -89,7 +89,7 @@ The environment is now ready to be used in training runs or web service endpoint
8989

9090
You can consume packages from an Azure storage account within your organization's firewall. The storage account can hold a curated set of packages or an internal mirror of publicly available packages.
9191

92-
To set up such private storage, see [Secure an Azure Machine Learning workspace and associated resources](how-to-secure-workspace-vnet.md#secure-azure-storage-accounts). You must also [place the Azure Container Registry (ACR) behind the VNet](how-to-secure-workspace-vnet.md#enable-azure-container-registry-acr).
92+
To set up such private storage, see [Secure an Azure Machine Learning workspace and associated resources](../how-to-secure-workspace-vnet.md#secure-azure-storage-accounts). You must also [place the Azure Container Registry (ACR) behind the VNet](../how-to-secure-workspace-vnet.md#enable-azure-container-registry-acr).
9393

9494
> [!IMPORTANT]
9595
> You must complete this step to be able to train or deploy models using the private package repository.
@@ -98,4 +98,4 @@ After completing these configurations, you can reference the packages in the Azu
9898

9999
## Next steps
100100

101-
* Learn more about [enterprise security in Azure Machine Learning](concept-enterprise-security.md)
101+
* Learn more about [enterprise security in Azure Machine Learning](../concept-enterprise-security.md)

articles/machine-learning/v1/toc.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,9 @@
118118
href: how-to-manage-workspace-cli.md
119119
- name: Set up software environments CLI (v1)
120120
href: how-to-use-environments.md
121+
- name: Use private Python packages
122+
displayName: pip, Conda, anaconda
123+
href: how-to-use-private-python-packages.md
121124
- name: Create & manage compute resources
122125
- name: Workspace Diagnostics
123126
href: how-to-workspace-diagnostic-api.md
@@ -265,6 +268,9 @@
265268
href: how-to-prepare-datasets-for-automl-images-v1.md
266269
- name: Reinforcement learning
267270
href: how-to-use-reinforcement-learning.md
271+
- name: Explain automated ML models
272+
displayName: SDK, interpret, interpret, explain, explainability, interpretability, automated ML, automl, auto ml
273+
href: how-to-machine-learning-interpretability-automl.md
268274
- name: Deploy models
269275
items:
270276
- name: Where and how to deploy

0 commit comments

Comments
 (0)