Skip to content

Commit 7021acc

Browse files
committed
tutorial updates
1 parent 950d96f commit 7021acc

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

articles/machine-learning/tutorial-first-experiment-automated-ml.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Create your first automated ML experiment
2+
title: Create automated ML classification models
33
titleSuffix: Azure Machine Learning
4-
description: Learn how to train and deploy a classification model with automated machine learning in Azure Machine Learning studio.
4+
description: Learn how to train & deploy classification models with Azure Machine Learning's automated machine learning (automated ML) interface.
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: core
@@ -14,10 +14,10 @@ ms.date: 02/04/2020
1414
# Customer intent: As a non-coding data scientist, I want to use automated machine learning techniques so that I can build a classification model.
1515
---
1616

17-
# Tutorial: Create your first classification model with automated machine learning
17+
# Tutorial: Create a classification model with automated ML in Azure Machine Learning
1818
[!INCLUDE [applies-to-skus](../../includes/aml-applies-to-enterprise-sku.md)]
1919

20-
In this tutorial, you learn how to create your first automated machine learning experiment through Azure Machine Learning studio without writing a single line of code. This example creates a classification model to predict if a client will subscribe to a fixed term deposit with a financial institution.
20+
In this tutorial, you learn how to create a basic classification model without writing a single line of code using Azure Machine Learning's automated machine learning interface. This classification model predicts if a client will subscribe to a fixed term deposit with a financial institution.
2121

2222
With automated machine learning, you can automate away time intensive tasks. Automated machine learning rapidly iterates over many combinations of algorithms and hyperparameters to help you find the best model based on a success metric of your choosing.
2323

@@ -31,15 +31,15 @@ In this tutorial, you learn how to do the following tasks:
3131
3232
## Prerequisites
3333

34-
* An Azure subscription. If you dont have an Azure subscription, create a [free account](https://aka.ms/AMLFree).
34+
* An Azure subscription. If you don't have an Azure subscription, create a [free account](https://aka.ms/AMLFree).
3535

3636
* Download the [**bankmarketing_train.csv**](https://automlsamplenotebookdata.blob.core.windows.net/automl-sample-notebook-data/bankmarketing_train.csv) data file. The **y** column indicates if a customer subscribed to a fixed term deposit, which is later identified as the target column for predictions in this tutorial.
3737

3838
## Create a workspace
3939

4040
An Azure Machine Learning workspace is a foundational resource in the cloud that you use to experiment, train, and deploy machine learning models. It ties your Azure subscription and resource group to an easily consumed object in the service.
4141

42-
You create a workspace via the Azure Machine Learning studio, a web-based console for managing your Azure resources.
42+
You create a workspace via the Azure portal, a web-based console for managing your Azure resources.
4343

4444
[!INCLUDE [aml-create-portal](../../includes/aml-create-in-portal-enterprise.md)]
4545

@@ -48,9 +48,9 @@ You create a workspace via the Azure Machine Learning studio, a web-based consol
4848
4949
## Create and run the experiment
5050

51-
You complete the following experiment set-up and run steps in Azure Machine Learning studio, a consolidated interface that includes machine learning tools to perform data science scenarios for data science practitioners of all skill levels. The studio is not supported on Internet Explorer browsers.
51+
You complete the following experiment set-up and run steps via Azure Machine learning at https://ml.azure.com, a consolidated web interface that includes machine learning tools to perform data science scenarios for data science practitioners of all skill levels. This interface is not supported on Internet Explorer browsers.
5252

53-
1. Sign in to [Azure Machine Learning studio](https://ml.azure.com).
53+
1. Sign in to Azure Machine Learning at https://ml.azure.com.
5454

5555
1. Select your subscription and the workspace you created.
5656

@@ -60,13 +60,13 @@ You complete the following experiment set-up and run steps in Azure Machine Lear
6060

6161
Since this is your first automated ML experiment, you'll see an empty list and links to documentation.
6262

63-
![Azure Machine Learning studio](./media/tutorial-first-experiment-automated-ml/get-started.png)
63+
![Get started page](./media/tutorial-first-experiment-automated-ml/get-started.png)
6464

6565
1. Select **New automated ML run**.
6666

6767
1. Create a new dataset by selecting **From local files** from the **+Create dataset** drop-down.
6868

69-
1. On the **Basic info** form, give your dataset a name and provide an optional description. Automated ML in Azure Machine Learning studio currently only supports tabular datasets, so the dataset type should default to Tabular.
69+
1. On the **Basic info** form, give your dataset a name and provide an optional description. The automated ML interface currently only supports TabularDatasets, so the dataset type should default to *Tabular*.
7070

7171
1. Select **Next** on the bottom left
7272

@@ -160,9 +160,9 @@ The following navigates through the **Model details** and the **Visualizations**
160160

161161
![Run iteration detail](./media/tutorial-first-experiment-automated-ml/run-detail.gif)
162162

163-
## Deploy the model
163+
## Deploy the best model
164164

165-
Automated machine learning in Azure Machine Learning studio allows you to deploy the best model as a web service in a few steps. Deployment is the integration of the model so it can predict on new data and identify potential areas of opportunity.
165+
The automated machine learning interface allows you to deploy the best model as a web service in a few steps. Deployment is the integration of the model so it can predict on new data and identify potential areas of opportunity.
166166

167167
For this experiment, deployment to a web service means that the financial institution now has an iterative and scalable web solution for identifying potential fixed term deposit customers.
168168

@@ -199,9 +199,9 @@ Deployment files are larger than data and experiment files, so they cost more to
199199

200200
### Delete the deployment instance
201201

202-
Delete just the deployment instance from the Azure Machine Learning studio, if you want to keep the resource group and workspace for other tutorials and exploration.
202+
Delete just the deployment instance from Azure Machine Learning at https://ml.azure.com/ , if you want to keep the resource group and workspace for other tutorials and exploration.
203203

204-
1. Go to the [Azure Machine Learning studio](https://ml.azure.com/). Navigate to your workspace and on the left under the **Assets** pane, select **Endpoints**.
204+
1. Go to Azure Machine Learning at https://ml.azure.com/. Navigate to your workspace and on the left under the **Assets** pane, select **Endpoints**.
205205

206206
1. Select the deployment you want to delete and select **Delete**.
207207

@@ -213,15 +213,15 @@ Delete just the deployment instance from the Azure Machine Learning studio, if y
213213

214214
## Next steps
215215

216-
In this automated machine learning tutorial, you used Azure Machine Learning studio to create and deploy a classification model. See these articles for more information and next steps:
216+
In this automated machine learning tutorial, you used Azure Machine Learning's automated ML interface to create and deploy a classification model. See these articles for more information and next steps:
217217

218218
> [!div class="nextstepaction"]
219219
> [Consume a web service](how-to-consume-web-service.md#consume-the-service-from-power-bi)
220220
221-
+ Learn more about [featurization](how-to-create-portal-experiments.md#featurization).
222-
+ Learn more about [data profiling](how-to-create-portal-experiments.md#profile).
223221
+ Learn more about [automated machine learning](concept-automated-ml.md).
224-
+ For more information on classification metrics and charts, see the [Understand automated machine learning results](how-to-understand-automated-ml.md#classification) article.
222+
+ For more information on classification metrics and charts, see the [Understand automated machine learning results](how-to-understand-automated-ml.md#classification) article.+ Learn more about [featurization](how-to-create-portal-experiments.md#featurization).
223+
+ Learn more about [data profiling](how-to-create-portal-experiments.md#profile).
224+
225225

226226
>[!NOTE]
227227
> This Bank Marketing dataset is made available under the [Creative Commons (CCO: Public Domain) License](https://creativecommons.org/publicdomain/zero/1.0/). Any rights in individual contents of the database are licensed under the [Database Contents License](https://creativecommons.org/publicdomain/zero/1.0/) and available on [Kaggle](https://www.kaggle.com/janiobachmann/bank-marketing-dataset). This dataset was originally available within the [UCI Machine Learning Database](https://archive.ics.uci.edu/ml/datasets/bank+marketing).<br><br>

0 commit comments

Comments
 (0)