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
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.
21
21
22
22
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.
23
23
@@ -31,15 +31,15 @@ In this tutorial, you learn how to do the following tasks:
31
31
32
32
## Prerequisites
33
33
34
-
* An Azure subscription. If you don’t 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).
35
35
36
36
* 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.
37
37
38
38
## Create a workspace
39
39
40
40
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.
41
41
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.
@@ -48,9 +48,9 @@ You create a workspace via the Azure Machine Learning studio, a web-based consol
48
48
49
49
## Create and run the experiment
50
50
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.
52
52
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.
54
54
55
55
1. Select your subscription and the workspace you created.
56
56
@@ -60,13 +60,13 @@ You complete the following experiment set-up and run steps in Azure Machine Lear
60
60
61
61
Since this is your first automated ML experiment, you'll see an empty list and links to documentation.

64
64
65
65
1. Select **New automated ML run**.
66
66
67
67
1. Create a new dataset by selecting **From local files** from the **+Create dataset** drop-down.
68
68
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*.
70
70
71
71
1. Select **Next** on the bottom left
72
72
@@ -160,9 +160,9 @@ The following navigates through the **Model details** and the **Visualizations**
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.
166
166
167
167
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.
168
168
@@ -199,9 +199,9 @@ Deployment files are larger than data and experiment files, so they cost more to
199
199
200
200
### Delete the deployment instance
201
201
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.
203
203
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**.
205
205
206
206
1. Select the deployment you want to delete and select **Delete**.
207
207
@@ -213,15 +213,15 @@ Delete just the deployment instance from the Azure Machine Learning studio, if y
213
213
214
214
## Next steps
215
215
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:
217
217
218
218
> [!div class="nextstepaction"]
219
219
> [Consume a web service](how-to-consume-web-service.md#consume-the-service-from-power-bi)
220
220
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).
223
221
+ 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
+
225
225
226
226
>[!NOTE]
227
227
> 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