Skip to content

Commit d0f156b

Browse files
committed
SEO review
1 parent 3c03fde commit d0f156b

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

articles/machine-learning/tutorial-deploy-models-with-aml.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Image classification tutorial: Deploy models"
33
titleSuffix: Azure Machine Learning
4-
description: This tutorial shows how to use Azure Machine Learning to deploy an image classification model with scikit-learn in a Python Jupyter notebook. This tutorial is the second of a two-part series.
4+
description: This tutorial, second of a two-part series, shows how to use Azure Machine Learning to deploy an image classification model with scikit-learn in a Python Jupyter notebook.
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: core
@@ -17,9 +17,7 @@ ms.custom: seodec18
1717
# Tutorial: Deploy an image classification model in Azure Container Instances
1818
[!INCLUDE [applies-to-skus](../../includes/aml-applies-to-basic-enterprise-sku.md)]
1919

20-
This tutorial is **part two of a two-part tutorial series**. In the [previous tutorial](tutorial-train-models-with-aml.md), you trained machine learning models and then registered a model in your workspace on the cloud.
21-
22-
Now you're ready to deploy the model as a web service in [Azure Container Instances](https://docs.microsoft.com/azure/container-instances/). A web service is an image, in this case a Docker image. It encapsulates the scoring logic and the model itself.
20+
This tutorial is **part two of a two-part tutorial series**. In the [previous tutorial](tutorial-train-models-with-aml.md), you trained machine learning models and then registered a model in your workspace on the cloud. Now you're ready to deploy the model as a web service. A web service is an image, in this case a Docker image. It encapsulates the scoring logic and the model itself.
2321

2422
In this part of the tutorial, you use Azure Machine Learning for the following tasks:
2523

@@ -297,7 +295,6 @@ Get the scoring web service's HTTP endpoint, which accepts REST client calls. Yo
297295
print(service.scoring_uri)
298296
```
299297

300-
301298
## Test the deployed service
302299

303300
Earlier, you scored all the test data with the local version of the model. Now you can test the deployed model with a random sample of 30 images from the test data.

articles/machine-learning/tutorial-train-models-with-aml.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Image classification tutorial: Train models"
33
titleSuffix: Azure Machine Learning
4-
description: Learn how to train an image classification model with scikit-learn in a Python Jupyter notebook with Azure Machine Learning. This tutorial is part one of a two-part series.
4+
description: Use Azure Machine Learning to train an image classification model with scikit-learn in a Python Jupyter notebook. This tutorial is part one of two.
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: core
@@ -14,7 +14,7 @@ ms.custom: seodec18
1414
#Customer intent: As a professional data scientist, I can build an image classification model with Azure Machine Learning by using Python in a Jupyter notebook.
1515
---
1616

17-
# Tutorial: Train image classification models with MNIST data and scikit-learn using Azure Machine Learning
17+
# Tutorial: Train image classification models with MNIST data and scikit-learn
1818
[!INCLUDE [applies-to-skus](../../includes/aml-applies-to-basic-enterprise-sku.md)]
1919

2020
In this tutorial, you train a machine learning model on remote compute resources. You'll use the training and deployment workflow for Azure Machine Learning in a Python Jupyter notebook. You can then use the notebook as a template to train your own machine learning model with your own data. This tutorial is **part one of a two-part tutorial series**.
@@ -31,7 +31,7 @@ Learn how to take the following actions:
3131
3232
You learn how to select a model and deploy it in [part two of this tutorial](tutorial-deploy-models-with-aml.md).
3333

34-
If you dont have an Azure subscription, create a free account before you begin. Try the [free or paid version of Azure Machine Learning](https://aka.ms/AMLFree) today.
34+
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://aka.ms/AMLFree) today.
3535

3636
>[!NOTE]
3737
> Code in this article was tested with [Azure Machine Learning SDK](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py) version 1.0.65.

0 commit comments

Comments
 (0)