You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/tutorial-1st-r-experiment.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
-
title: "Tutorial: Logistic regression model in R"
2
+
title: "Tutorial: Use R to create a machine learning model"
3
3
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.
5
5
services: machine-learning
6
6
ms.service: machine-learning
7
7
ms.subservice: core
@@ -12,10 +12,10 @@ ms.author: davidsmi
12
12
ms.date: 02/07/2020
13
13
---
14
14
15
-
# Tutorial: Create a logistic regression model in R with Azure Machine Learning
15
+
# Tutorial: Use R to create a machine learning model
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.
19
19
20
20
In this tutorial, you perform the following tasks:
21
21
> [!div class="checklist"]
@@ -29,7 +29,7 @@ In this tutorial, you perform the following tasks:
29
29
> * Deploy a prediction endpoint
30
30
> * Test the model from R
31
31
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.
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.
description: This tutorialshows 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.
5
5
services: machine-learning
6
6
ms.service: machine-learning
7
7
ms.subservice: core
@@ -17,9 +17,7 @@ ms.custom: seodec18
17
17
# Tutorial: Deploy an image classification model in Azure Container Instances
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.
23
21
24
22
In this part of the tutorial, you use Azure Machine Learning for the following tasks:
25
23
@@ -297,7 +295,6 @@ Get the scoring web service's HTTP endpoint, which accepts REST client calls. Yo
297
295
print(service.scoring_uri)
298
296
```
299
297
300
-
301
298
## Test the deployed service
302
299
303
300
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.
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.
5
5
services: machine-learning
6
6
ms.service: machine-learning
7
7
ms.subservice: core
@@ -14,7 +14,7 @@ ms.custom: seodec18
14
14
#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.
15
15
---
16
16
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
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:
31
31
32
32
You learn how to select a model and deploy it in [part two of this tutorial](tutorial-deploy-models-with-aml.md).
33
33
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.
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.
35
35
36
36
>[!NOTE]
37
37
> 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