Skip to content

Commit 7880284

Browse files
authored
Update how-to-deploy-and-where.md
1 parent d75ad23 commit 7880284

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

articles/machine-learning/service/how-to-deploy-and-where.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@ ms.topic: conceptual
99
ms.author: jordane
1010
author: jpe316
1111
ms.reviewer: larryfr
12-
ms.date: 05/02/2019
12+
ms.date: 05/21/2019
1313

1414
ms.custom: seoapril2019
1515
---
1616

1717
# Deploy models with the Azure Machine Learning service
1818

19-
Learn how to deploy your machine learning model as a web service in the Azure cloud, or to IoT Edge devices. The information in this document teaches you how to deploy to the following compute targets:
19+
Learn how to deploy your machine learning model as a web service in the Azure cloud, or to IoT Edge devices.
20+
21+
The following compute targets, or compute resources, can be used to host your service deployment.
2022

2123
| Compute target | Deployment type | Description |
2224
| ----- | ----- | ----- |
@@ -26,25 +28,24 @@ Learn how to deploy your machine learning model as a web service in the Azure cl
2628
| [Azure Machine Learning Compute](how-to-run-batch-predictions.md) | (Preview) Batch inference | Run batch scoring on serverless compute. Supports normal and low-priority VMs. |
2729
| [Azure IoT Edge](#iotedge) | (Preview) IoT module | Deploy & serve ML models on IoT devices. |
2830

29-
## Deployment workflow
30-
31-
The process of deploying a model is similar for all compute targets:
31+
The workflow is similar for all compute targets:
3232

33-
1. Register model(s).
34-
1. Deploy model(s).
35-
1. Test deployed model(s).
33+
1. Register the model.
34+
1. Prepare to deploy (specify assets, usage, compute target)
35+
1. Deploy the model to the compute target.
36+
1. Test the deployed model, also called web service.
3637

3738
For more information on the concepts involved in the deployment workflow, see [Manage, deploy, and monitor models with Azure Machine Learning Service](concept-model-management-and-deployment.md).
3839

39-
## Prerequisites for deployment
40+
## Prerequisites
4041

4142
- A model. If you do not have a trained model, you can use the model & dependency files provided in [this tutorial](https://aka.ms/azml-deploy-cloud).
4243

4344
- The [Azure CLI extension for Machine Learning service](reference-azure-machine-learning-cli.md), or the [Azure Machine Learning Python SDK](https://aka.ms/aml-sdk).
4445

45-
## <a id="registermodel"></a> Register a machine learning model
46+
## <a id="registermodel"></a> Register ML models
4647

47-
The model registry is a way to store and organize your trained models in the Azure cloud. Models are registered in your Azure Machine Learning service workspace. The model can be trained using Azure Machine Learning, or imported from a model trained elsewhere. The following examples demonstrate how to register a model from file:
48+
Register your machine learning models in your Azure Machine Learning workspace. The model can come from Azure Machine Learning or can come from somewhere else. The following examples demonstrate how to register a model from file:
4849

4950
### Register a model from an Experiment Run
5051

@@ -86,7 +87,7 @@ az ml model register -n onnx_mnist -p mnist/model.onnx
8687

8788
For more information, see the reference documentation for the [Model class](https://docs.microsoft.com/python/api/azureml-core/azureml.core.model.model?view=azure-ml-py).
8889

89-
## How to deploy
90+
## Prepare to deploy
9091

9192
To deploy as a web service, you must create an inference configuration (`InferenceConfig`) and a deployment configuration. Inference, or model scoring, is the phase where the deployed model is used for prediction, most commonly on production data. In the inference config, you specify the scripts and dependencies needed to serve your model. In the deployment config you specify details of how to serve the model on the compute target.
9293

0 commit comments

Comments
 (0)