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 use automated machine learning, or automated ML, in the Azure Machine Learning studio to create a demand forecasting model for a bike sharing service.
20
+
In this tutorial, you use automated machine learning, or automated ML, in the Azure Machine Learning studio to create a time series forecasting model to predict rental demand for a bike sharing service.
21
21
22
22
In this tutorial, you learn how to do the following tasks:
23
23
24
24
> [!div class="checklist"]
25
-
> * Create an experiment in an Azure Machine Learning workspace.
26
-
> * Configure a remote run of automated ML for a demand forecast model.
25
+
> * Create and load a dataset.
26
+
> * Configure and run an automated ml experiment.
27
27
> * Explore the experiment results.
28
28
> * Deploy the best model.
29
29
@@ -35,7 +35,7 @@ In this tutorial, you learn how to do the following tasks:
35
35
36
36
## Get started in Azure Machine Learning studio
37
37
38
-
For this tutorial, you create your automated ml experiment run 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.
38
+
For this tutorial, you create your automated ML experiment run 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.
39
39
40
40
1. Sign in to [Azure Machine Learning studio](https://ml.azure.com).
41
41
@@ -57,7 +57,7 @@ Before you configure your experiment, upload your data file to your workspace in
57
57
58
58
1. Select **Next** on the bottom left
59
59
60
-
1. On the **Datastore and file selection** form, select the default datastore that was automatically set up during your workspace creation, **workspaceblobstore (Azure Blob Storage)**. This is the storage location for your soon to be uploaded data file.
60
+
1. On the **Datastore and file selection** form, select the default datastore that was automatically set up during your workspace creation, **workspaceblobstore (Azure Blob Storage)**. This is the storage location where you'll upload your data file.
61
61
62
62
1. Select **Browse**.
63
63
@@ -121,7 +121,9 @@ After you load and configure your data, set up your remote compute target and se
121
121
122
122
Complete the setup for your automated ml experiment by specifying the machine learning task type and configuration settings.
123
123
124
-
1. On the **Task type and settings** form, select **Forecasting** as the machine learning task type.
124
+
1. On the **Task type and settings** form, select **Time series forecasting** as the machine learning task type.
125
+
126
+
1. Select **date** as your **Time column** and leave **Group by column(s)** blank.
125
127
126
128
1. Select **View additional configuration settings** and populate the fields as follows. These settings are to better control the training job. Otherwise, defaults are applied based on experiment selection and data.
127
129
@@ -134,8 +136,8 @@ Complete the setup for your automated ml experiment by specifying the machine le
134
136
Blocked algorithms | Algorithms you want to exclude from the training job| Extreme Random Trees
Exit criterion| If a criteria is met, the training job is stopped. |Training job time (hours): 3 <br> Metric score threshold: None
137
-
Validation | Choose a cross-validation type and number of tests.|Validation type:<br> k-fold cross-validation <br> <br> Number of validations: 3
138
-
Concurrency| The maximum number of parallel iterations executed and cores used per iteration| Max concurrent iterations: 4
139
+
Validation | Choose a cross-validation type and number of tests.|Validation type:<br> k-fold cross-validation <br> <br> Number of validations: 5
140
+
Concurrency| The maximum number of parallel iterations executed and cores used per iteration| Max concurrent iterations: 6
139
141
140
142
Select **OK**.
141
143
@@ -146,23 +148,23 @@ To run your experiment, select **Create**. The **Run Details** screen opens wit
146
148
>[!IMPORTANT]
147
149
> Preparation takes **10-15 minutes** to prepare the experiment run.
148
150
> Once running, it takes **2-3 minutes more for each iteration**. <br> <br>
149
-
> In production, you'd likely walk away for a bit as this process is rather lengthy. While you wait, we suggest you start exploring the tested algorithms on the **Models** tab as they complete.
151
+
> In production, you'd likely walk away for a bit as this process takes time. While you wait, we suggest you start exploring the tested algorithms on the **Models** tab as they complete.
150
152
151
153
## Explore models
152
154
153
155
Navigate to the **Models** tab to see the algorithms (models) tested. By default, the models are ordered by metric score as they complete. For this tutorial, the model that scores the highest based on the chosen **Normalized root mean squared error** metric is at the top of the list.
154
156
155
157
While you wait for all of the experiment models to finish, select the **Algorithm name** of a completed model to explore its performance details.
156
158
157
-
The following navigates through the **Model details** and the **Visualizations** tabs to view the selected model's properties, metrics and performance charts.
159
+
The following example navigates through the **Model details** and the **Visualizations** tabs to view the selected model's properties, metrics and performance charts.
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.
164
166
165
-
For this experiment, deployment to a web service means that the bike share company now has an iterative and scalable web solution for forecasting bikes hare rental demand.
167
+
For this experiment, deployment to a web service means that the bike share company now has an iterative and scalable web solution for forecasting bike share rental demand.
166
168
167
169
Once the run is complete, navigate back to the **Run Detail** page and select the **Models** tab.
168
170
@@ -211,9 +213,9 @@ Delete just the deployment instance from the Azure Machine Learning studio, if y
211
213
212
214
## Next steps
213
215
214
-
In this tutorial, you automated ML in the Azure Machine Learning studio to create and deploy a demand forecasting model.
216
+
In this tutorial, you used automated ML in the Azure Machine Learning studio to create and deploy a time series forecasting model that predicts bike share rental demand.
215
217
216
-
See this article for steps on how to create a Power BI supported schema and how to consume your newly deployed web service in Power BI:
218
+
See this article for steps on how to create a Power BI supported schema to faciliate consumption of your newly deployed web service:
217
219
218
220
> [!div class="nextstepaction"]
219
221
> [Consume a web service](how-to-consume-web-service.md#consume-the-service-from-power-bi)
0 commit comments