Skip to content

Commit 08041a9

Browse files
author
Larry Franks
committed
fixing links
1 parent 9db2b0d commit 08041a9

6 files changed

+15
-15
lines changed

articles/machine-learning/how-to-deploy-model-cognitive-search.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ When deploying a model for use with Azure Cognitive Search, the deployment must
4646

4747
* A registered model. If you do not have a model, use the example notebook at [https://github.com/Azure-Samples/azure-search-python-samples/tree/master/AzureML-Custom-Skill](https://github.com/Azure-Samples/azure-search-python-samples/tree/master/AzureML-Custom-Skill).
4848

49-
* A general understanding of [How and where to deploy models](how-to-deploy-and-where.md).
49+
* A general understanding of [How and where to deploy models](v1/how-to-deploy-and-where.md).
5050

5151
## Connect to your workspace
5252

@@ -185,7 +185,7 @@ def run(raw_data):
185185
return json.dumps({"error": result, "tb": traceback.format_exc()})
186186
```
187187

188-
For more information on entry scripts, see [How and where to deploy](how-to-deploy-and-where.md).
188+
For more information on entry scripts, see [How and where to deploy](v1/how-to-deploy-and-where.md).
189189

190190
## Define the software environment
191191

@@ -213,7 +213,7 @@ For more information on environments, see [Create and manage environments for tr
213213
The deployment configuration defines the Azure Kubernetes Service hosting environment used to run the web service.
214214

215215
> [!TIP]
216-
> If you aren't sure about the memory, CPU, or GPU needs of your deployment, you can use profiling to learn these. For more information, see [How and where to deploy a model](how-to-deploy-and-where.md).
216+
> If you aren't sure about the memory, CPU, or GPU needs of your deployment, you can use profiling to learn these. For more information, see [How and where to deploy a model](v1/how-to-deploy-and-where.md).
217217
218218
```python
219219
from azureml.core.model import Model

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ Follow one of these paths to access the explanations dashboard in Azure Machine
365365
[![Visualization Dashboard with Aggregate Feature Importance in AzureML studio in experiments](./media/how-to-machine-learning-interpretability-aml/model-explanation-dashboard-aml-studio.png)](./media/how-to-machine-learning-interpretability-aml/model-explanation-dashboard-aml-studio.png#lightbox)
366366

367367
* **Models** pane
368-
1. If you registered your original model by following the steps in [Deploy models with Azure Machine Learning](./how-to-deploy-and-where.md), you can select **Models** in the left pane to view it.
368+
1. If you registered your original model by following the steps in [Deploy models with Azure Machine Learning](v1/how-to-deploy-and-where.md), you can select **Models** in the left pane to view it.
369369
1. Select a model, and then the **Explanations** tab to view the explanations dashboard.
370370

371371
## Interpretability at inference time
@@ -430,7 +430,7 @@ You can deploy the explainer along with the original model and use it at inferen
430430

431431
1. Deploy the image to a compute target, by following these steps:
432432

433-
1. If needed, register your original prediction model by following the steps in [Deploy models with Azure Machine Learning](./how-to-deploy-and-where.md).
433+
1. If needed, register your original prediction model by following the steps in [Deploy models with Azure Machine Learning](v1/how-to-deploy-and-where.md).
434434

435435
1. Create a scoring file.
436436

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ To use the key when deploying a model to Azure Container Instance, create a new
142142
For more information on creating and using a deployment configuration, see the following articles:
143143
144144
* [AciWebservice.deploy_configuration()](/python/api/azureml-core/azureml.core.webservice.aci.aciwebservice#deploy-configuration-cpu-cores-none--memory-gb-none--tags-none--properties-none--description-none--location-none--auth-enabled-none--ssl-enabled-none--enable-app-insights-none--ssl-cert-pem-file-none--ssl-key-pem-file-none--ssl-cname-none--dns-name-label-none--primary-key-none--secondary-key-none--collect-model-data-none--cmk-vault-base-url-none--cmk-key-name-none--cmk-key-version-none-) reference
145-
* [Where and how to deploy](how-to-deploy-and-where.md)
145+
* [Where and how to deploy](v1/how-to-deploy-and-where.md)
146146
* [Deploy a model to Azure Container Instances](v1/how-to-deploy-azure-container-instance.md)
147147
148148
For more information on using a customer-managed key with ACI, see [Encrypt data with a customer-managed key](../container-instances/container-instances-encrypt-data.md#encrypt-data-with-a-customer-managed-key).

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

Lines changed: 3 additions & 3 deletions
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](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](v1/how-to-deploy-and-where.md).
2727
2828
## Prerequisites
2929

@@ -55,7 +55,7 @@ There are multiple ways to deploy a model in Azure Machine Learning. One of the
5555

5656
The designer converts the training pipeline into a real-time inference pipeline. A similar conversion also occurs in Studio (classic).
5757

58-
In the designer, the conversion step also [registers the trained model to your Azure Machine Learning workspace](how-to-deploy-and-where.md#registermodel).
58+
In the designer, the conversion step also [registers the trained model to your Azure Machine Learning workspace](v1/how-to-deploy-and-where.md#registermodel).
5959

6060
1. Select **Submit** to run the real-time inference pipeline, and verify that it runs successfully.
6161

@@ -100,7 +100,7 @@ Use the following steps to publish a pipeline endpoint for batch prediction:
100100

101101
The designer converts the training pipeline into a batch inference pipeline. A similar conversion also occurs in Studio (classic).
102102

103-
In the designer, this step also [registers the trained model to your Azure Machine Learning workspace](how-to-deploy-and-where.md#registermodel).
103+
In the designer, this step also [registers the trained model to your Azure Machine Learning workspace](v1/how-to-deploy-and-where.md#registermodel).
104104

105105
1. Select **Submit** to run the batch inference pipeline and verify that it successfully completes.
106106

articles/machine-learning/v1/concept-model-management-and-deployment.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ author: rsethur
1010
ms.author: seramasu
1111
ms.reviewer: larryfr
1212
ms.custom: seodec18, mktng-kw-nov2021, event-tier1-build-2022
13-
ms.date: 08/15/2022
13+
ms.date: 08/18/2022
1414
---
1515

1616
# MLOps: Model management, deployment, lineage, and monitoring with Azure Machine Learning v1
@@ -74,7 +74,7 @@ Registered models are identified by name and version. Each time you register a m
7474
> You can also register models trained outside Azure Machine Learning.
7575
7676
You can't delete a registered model that is being used in an active deployment.
77-
For more information, see the register model section of [Deploy models](../how-to-deploy-and-where.md#registermodel).
77+
For more information, see the register model section of [Deploy models](how-to-deploy-and-where.md#registermodel).
7878

7979
> [!IMPORTANT]
8080
> When using Filter by `Tags` option on the Models page of Azure Machine Learning Studio, instead of using `TagName : TagValue` customers should use `TagName=TagValue` (without space)
@@ -126,7 +126,7 @@ To deploy the model as a web service, you must provide the following items:
126126
* Dependencies required to use the model. For example, a script that accepts requests and invokes the model, conda dependencies, etc.
127127
* Deployment configuration that describes how and where to deploy the model.
128128

129-
For more information, see [Deploy models](../how-to-deploy-and-where.md).
129+
For more information, see [Deploy models](how-to-deploy-and-where.md).
130130

131131
#### Controlled rollout
132132

@@ -205,7 +205,7 @@ You can also use Azure Data Factory to create a data ingestion pipeline that pre
205205

206206
Learn more by reading and exploring the following resources:
207207

208-
+ [How & where to deploy models](../how-to-deploy-and-where.md) with Azure Machine Learning
208+
+ [How & where to deploy models](how-to-deploy-and-where.md) with Azure Machine Learning
209209

210210
+ [Tutorial: Train and deploy a model](../tutorial-train-deploy-notebook.md).
211211

articles/machine-learning/v1/how-to-access-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ Azure Machine Learning provides several ways to use your models for scoring. Som
290290
| Method | Datastore access | Description |
291291
| ----- | :-----: | ----- |
292292
| [Batch prediction](../tutorial-pipeline-batch-scoring-classification.md) || Make predictions on large quantities of data asynchronously. |
293-
| [Web service](../how-to-deploy-and-where.md) |   | Deploy models as a web service. |
293+
| [Web service](how-to-deploy-and-where.md) |   | Deploy models as a web service. |
294294

295295
For situations where the SDK doesn't provide access to datastores, you might be able to create custom code by using the relevant Azure SDK to access the data. For example, the [Azure Storage SDK for Python](https://github.com/Azure/azure-storage-python) is a client library that you can use to access data stored in blobs or files.
296296

@@ -304,4 +304,4 @@ Azure Data Factory provides efficient and resilient data transfer with more than
304304

305305
* [Create an Azure machine learning dataset](how-to-create-register-datasets.md)
306306
* [Train a model](../how-to-set-up-training-targets.md)
307-
* [Deploy a model](../how-to-deploy-and-where.md)
307+
* [Deploy a model](how-to-deploy-and-where.md)

0 commit comments

Comments
 (0)