Skip to content

Commit 4fbc71a

Browse files
committed
more fixes
1 parent d068a67 commit 4fbc71a

8 files changed

+13
-13
lines changed

articles/machine-learning/v1/how-to-change-storage-access-key.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.custom: cliv1, sdkv1, event-tier1-build-2022, ignite-2022
1414
---
1515

1616
# Regenerate storage account access keys
17-
[!INCLUDE [cli v1](../../includes/machine-learning-dev-v1.md)]
17+
[!INCLUDE [cli v1](../../../includes/machine-learning-dev-v1.md)]
1818

1919
Learn how to change the access keys for Azure Storage accounts used by Azure Machine Learning. Azure Machine Learning can use storage accounts to store data or trained models.
2020

@@ -100,7 +100,7 @@ To update Azure Machine Learning to use the new key, use the following steps:
100100
az ml workspace sync-keys -w myworkspace -g myresourcegroup
101101
```
102102
103-
[!INCLUDE [install extension](../../includes/machine-learning-service-install-extension.md)]
103+
[!INCLUDE [install extension](../../../includes/machine-learning-service-install-extension.md)]
104104
105105
This command automatically syncs the new keys for the Azure storage account used by the workspace.
106106

articles/machine-learning/v1/how-to-high-availability-machine-learning.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Depending on your needs, you may have more compute or data services that are use
107107

108108
__Compute resources__
109109

110-
* **Azure Kubernetes Service**: See [Best practices for business continuity and disaster recovery in Azure Kubernetes Service (AKS)](../aks/operator-best-practices-multi-region.md) and [Create an Azure Kubernetes Service (AKS) cluster that uses availability zones](../aks/availability-zones.md). If the AKS cluster was created by using the Azure Machine Learning Studio, SDK, or CLI, cross-region high availability is not supported.
110+
* **Azure Kubernetes Service**: See [Best practices for business continuity and disaster recovery in Azure Kubernetes Service (AKS)](../../aks/operator-best-practices-multi-region.md) and [Create an Azure Kubernetes Service (AKS) cluster that uses availability zones](../../aks/availability-zones.md). If the AKS cluster was created by using the Azure Machine Learning Studio, SDK, or CLI, cross-region high availability is not supported.
111111
* **Azure Databricks**: See [Regional disaster recovery for Azure Databricks clusters](/azure/databricks/scenarios/howto-regional-disaster-recovery).
112112
* **Container Instances**: An orchestrator is responsible for failover. See [Azure Container Instances and container orchestrators](../../container-instances/container-instances-orchestrator-relationship.md).
113113
* **HDInsight**: See [High availability services supported by Azure HDInsight](../../hdinsight/hdinsight-high-availability-components.md).
@@ -153,7 +153,7 @@ Jobs in Azure Machine Learning are defined by a job specification. This specific
153153
154154
* Manage configurations as code.
155155

156-
* Avoid hardcoded references to the workspace. Instead, configure a reference to the workspace instance using a [config file](../how-to-configure-environment.md#local-and-dsvm-only-create-a-workspace-configuration-file) and use [Workspace.from_config()](/python/api/azureml-core/azureml.core.workspace.workspace#remarks) to initialize the workspace. To automate the process, use the [Azure CLI extension for machine learning](v1/reference-azure-machine-learning-cli.md) command [az ml folder attach](/cli/azure/ml(v1)/folder#az-ml(v1)-folder-attach).
156+
* Avoid hardcoded references to the workspace. Instead, configure a reference to the workspace instance using a [config file](../how-to-configure-environment.md#local-and-dsvm-only-create-a-workspace-configuration-file) and use [Workspace.from_config()](/python/api/azureml-core/azureml.core.workspace.workspace#remarks) to initialize the workspace. To automate the process, use the [Azure CLI extension for machine learning](reference-azure-machine-learning-cli.md) command [az ml folder attach](/cli/azure/ml(v1)/folder#az-ml(v1)-folder-attach).
157157
* Use job submission helpers such as [ScriptRunConfig](/python/api/azureml-core/azureml.core.scriptrunconfig) and [Pipeline](/python/api/azureml-pipeline-core/azureml.pipeline.core.pipeline(class)).
158158
* Use [Environments.save_to_directory()](/python/api/azureml-core/azureml.core.environment(class)#save-to-directory-path--overwrite-false-) to save your environment definitions.
159159
* Use a Dockerfile if you use custom Docker images.
@@ -177,7 +177,7 @@ Azure Machine Learning cannot sync or recover artifacts or metadata between work
177177

178178
Depending on your recovery approach, you may need to copy artifacts such as dataset and model objects between the workspaces to continue your work. Currently, the portability of artifacts between workspaces is limited. We recommend managing artifacts as code where possible so that they can be recreated in the failover instance.
179179

180-
The following artifacts can be exported and imported between workspaces by using the [Azure CLI extension for machine learning](v1/reference-azure-machine-learning-cli.md):
180+
The following artifacts can be exported and imported between workspaces by using the [Azure CLI extension for machine learning](reference-azure-machine-learning-cli.md):
181181

182182
| Artifact | Export | Import |
183183
| ----- | ----- | ----- |

articles/machine-learning/v1/how-to-machine-learning-fairness-aml.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ ms.custom: devx-track-python, responsible-ml, sdkv1, event-tier1-build-2022
1515

1616
# Use Azure Machine Learning with the Fairlearn open-source package to assess the fairness of ML models (preview)
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 how-to guide, you will learn to use the [Fairlearn](https://fairlearn.github.io/) open-source Python package with Azure Machine Learning to perform the following tasks:
2121

22-
* Assess the fairness of your model predictions. To learn more about fairness in machine learning, see the [fairness in machine learning article](concept-fairness-ml.md).
22+
* Assess the fairness of your model predictions. To learn more about fairness in machine learning, see the [fairness in machine learning article](../concept-fairness-ml.md).
2323
* Upload, list and download fairness assessment insights to/from Azure Machine Learning studio.
2424
* See a fairness assessment dashboard in Azure Machine Learning studio to interact with your model(s)' fairness insights.
2525

2626
>[!NOTE]
2727
> Fairness assessment is not a purely technical exercise. **This package can help you assess the fairness of a machine learning model, but only you can configure and make decisions as to how the model performs.** While this package helps to identify quantitative metrics to assess fairness, developers of machine learning models must also perform a qualitative analysis to evaluate the fairness of their own models.
2828
29-
[!INCLUDE [machine-learning-preview-generic-disclaimer](../../includes/machine-learning-preview-generic-disclaimer.md)]
29+
[!INCLUDE [machine-learning-preview-generic-disclaimer](../../../includes/machine-learning-preview-generic-disclaimer.md)]
3030

3131
## Azure Machine Learning Fairness SDK
3232

@@ -348,6 +348,6 @@ Uploading multiple models' fairness insights in a single Run allows for comparis
348348

349349
## Next steps
350350

351-
[Learn more about model fairness](concept-fairness-ml.md)
351+
[Learn more about model fairness](../concept-fairness-ml.md)
352352

353353
[Check out Azure Machine Learning Fairness sample notebooks](https://github.com/Azure/MachineLearningNotebooks/tree/master/contrib/fairness)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In this how-to guide, you learn to use the interpretability package of the Azure
3232

3333
* Deploy a scoring explainer alongside your model to observe explanations during inferencing.
3434

35-
[!INCLUDE [machine-learning-preview-generic-disclaimer](../../includes/machine-learning-preview-generic-disclaimer.md)]
35+
[!INCLUDE [machine-learning-preview-generic-disclaimer](../../../includes/machine-learning-preview-generic-disclaimer.md)]
3636

3737
For more information on the supported interpretability techniques and machine learning models, see [Model interpretability in Azure Machine Learning](../how-to-machine-learning-interpretability.md) and [sample notebooks](https://github.com/Azure/MachineLearningNotebooks/tree/master/how-to-use-azureml/explain-model).
3838

35.8 KB
Loading

articles/machine-learning/v1/migrate-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ To migrate to Azure Machine Learning, we recommend the following approach:
5050
>[!NOTE]
5151
> The **designer** feature in Azure Machine Learning provides a similar drag-and-drop experience to Studio (classic). However, Azure Machine Learning also provides robust [code-first workflows](../concept-model-management-and-deployment.md) as an alternative. This migration series focuses on the designer, since it's most similar to the Studio (classic) experience.
5252
53-
[!INCLUDE [aml-compare-classic](../../includes/machine-learning-compare-classic-aml.md)]
53+
[!INCLUDE [aml-compare-classic](../../../includes/machine-learning-compare-classic-aml.md)]
5454

5555
3. Verify that your critical Studio (classic) modules are supported in Azure Machine Learning designer. For more information, see the [Studio (classic) and designer component-mapping](#studio-classic-and-designer-component-mapping) table below.
5656

articles/machine-learning/v1/migrate-rebuild-web-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Use Azure Machine Learning pipeline endpoints to make predictions, retrain model
2323
This article is part of the Studio (classic) to Azure Machine Learning migration series. For more information on migrating to Azure Machine Learning, see the [migration overview article](migrate-overview.md).
2424

2525
> [!NOTE]
26-
> This migration series focuses on the drag-and-drop designer. For more information on deploying models programmatically, see [Deploy machine learning models in Azure](v1/how-to-deploy-and-where.md).
26+
> This migration series focuses on the drag-and-drop designer. For more information on deploying models programmatically, see [Deploy machine learning models in Azure](how-to-deploy-and-where.md).
2727
2828
## Prerequisites
2929

articles/machine-learning/v1/migrate-register-dataset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ After you download the data file, you can register it as a data asset in Azure M
8282
1. Navigate to [Azure Machine Learning studio](https://ml.azure.com)
8383

8484
1. Under __Assets__ in the left navigation, select __Data__. On the Data assets tab, select Create
85-
:::image type="content" source="./media/how-to-create-data-assets/data-assets-create.png" alt-text="Screenshot highlights Create in the Data assets tab.":::
85+
:::image type="content" source="./media/migrate-register-dataset/data-assets-create-2.png" alt-text="Screenshot highlights Create in the Data assets tab.":::
8686

8787
1. Give your data asset a name and optional description. Then, select the **Tabular** option under **Type**, in the **Dataset types** section of the dropdown.
8888
> [!NOTE]

0 commit comments

Comments
 (0)