Skip to content

Commit 41437de

Browse files
authored
Merge pull request #108739 from sdgilley/sdg-seo-review
SEO review
2 parents a38d748 + d0f156b commit 41437de

File tree

3 files changed

+10
-13
lines changed

3 files changed

+10
-13
lines changed

articles/machine-learning/tutorial-1st-r-experiment.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: "Tutorial: Logistic regression model in R"
2+
title: "Tutorial: Use R to create a machine learning model"
33
titleSuffix: Azure Machine Learning
4-
description: In this tutorial, you create a logistic regression model using R packages azuremlsdk and caret to predict likelihood of a fatality in an automobile accident.
4+
description: In this tutorial you'll use the Azure Machine Learning R SDK to create a logistic regression model that predicts the likelihood of a fatality in a car accident.
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: core
@@ -12,10 +12,10 @@ ms.author: davidsmi
1212
ms.date: 02/07/2020
1313
---
1414

15-
# Tutorial: Create a logistic regression model in R with Azure Machine Learning
15+
# Tutorial: Use R to create a machine learning model
1616
[!INCLUDE [applies-to-skus](../../includes/aml-applies-to-basic-enterprise-sku.md)]
1717

18-
In this tutorial you'll use R and Azure Machine Learning to create a logistic regression model that predicts the likelihood of a fatality in an automobile accident. After completing this tutorial, you'll have the practical knowledge of the Azure Machine Learning R SDK to scale up to developing more-complex experiments and workflows.
18+
In this tutorial you'll use the Azure Machine Learning R SDK to create a logistic regression model that predicts the likelihood of a fatality in a car accident. You'll see how the Azure Machine Learning cloud resources work with R to provide a scalable environment for training and deploying a model.
1919

2020
In this tutorial, you perform the following tasks:
2121
> [!div class="checklist"]
@@ -29,7 +29,7 @@ In this tutorial, you perform the following tasks:
2929
> * Deploy a prediction endpoint
3030
> * Test the model from R
3131
32-
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.
32+
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.
3333

3434

3535
## Create a workspace

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)