Skip to content

Commit eea74d1

Browse files
authored
Merge pull request #75632 from MicrosoftDocs/master
Hotfix: Azure Machine Learning
2 parents 4b9c06d + 3e1b0a1 commit eea74d1

File tree

1 file changed

+12
-62
lines changed

1 file changed

+12
-62
lines changed

articles/machine-learning/service/how-to-create-portal-experiments.md

Lines changed: 12 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ ms.date: 05/02/2019
1616

1717
# Create and explore automated machine learning experiments in the Azure portal (Preview)
1818

19-
In this article, you learn how to create, run, and explore automated machine learning experiments in the Azure portal without a single line of code. Automated machine learning automates the process of selecting the best algorithm to use for your specific data, so you can generate a machine learning model quickly. [Learn more about automated machine learning](https://docs.microsoft.com/azure/machine-learning/service/concept-automated-ml).
19+
In this article, you learn how to create, run, and explore automated machine learning experiments in the Azure portal without a single line of code. Automated machine learning automates the process of selecting the best algorithm to use for your specific data, so you can generate a machine learning model quickly. [Learn more about automated machine learning](concept-automated-ml.md).
2020

21-
If you prefer a more code based experience, you can also [configure your automated machine learning experiments in Python](how-to-configure-auto-train.md) with the [Azure Machine Learning SDK](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py).
21+
If you prefer a more code-based experience, you can also [configure your automated machine learning experiments in Python](how-to-configure-auto-train.md) with the [Azure Machine Learning SDK](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py).
2222

2323
## Prerequisites
2424

@@ -36,7 +36,7 @@ Navigate to the left pane of your workspace. Select Automated Machine Learning u
3636

3737
![Azure portal experiment landing page](media/how-to-create-portal-experiments/landing-page.png)
3838

39-
Otherwise, you will see your Automated machine learning dashboard with an overview of all of your automated machine learning experiments and runs, including those run using the SDK. Here you can filter and explore your runs by date, experiment name, and run status.
39+
Otherwise, you will see your Automated machine learning dashboard with an overview of all of your automated machine learning experiments, including those run with the SDK. Here you can filter and explore your runs by date, experiment name, and run status.
4040

4141
![Azure portal experiment dashboard](media/how-to-create-portal-experiments/dashboard.png)
4242

@@ -144,8 +144,6 @@ You can get a vast variety of summary statistics across your data set to verify
144144

145145
* **Kurtosis**: the kurtosis of the column. Blank entries appear for features with irrelevant types.
146146

147-
Furthermore, you can use these statistics to decide whether you want to include or exclude certain columns. By toggling the selector on each column, you can control the scope across which columns will be used in your automated machine learning experiment.
148-
149147
<a name="preprocess"></a>
150148

151149
### Advanced preprocessing
@@ -164,72 +162,24 @@ When configuring your experiments, you can enable the advanced setting `Preproce
164162
|Weight of Evidence (WoE)|Calculates WoE as a measure of correlation of categorical columns to the target column. It is calculated as the log of the ratio of in-class vs out-of-class probabilities. This step outputs one numerical feature column per class and removes the need to explicitly impute missing values and outlier treatment.|
165163
|Cluster Distance|Trains a k-means clustering model on all numerical columns. Outputs k new features, one new numerical feature per cluster, containing the distance of each sample to the centroid of each cluster.|
166164

167-
## Run experiment
168-
169-
To run the experiment, click the Start button.
170-
171-
The experiment preparing process takes a couple of minutes.
165+
## Run experiment and view results
172166

173-
## View results
167+
To run the experiment, click Start. The experiment preparing process takes a couple of minutes.
174168

175-
Once the experiment preparation phase is done, you'll see the run details screen. This will give you a full list of the models created. By default, the model that scores the highest based on your parameters will be at the top of the list. As the training job tries out more models, you'll see them added to the list and the chart.
176-
Use the chart to get a quick comparison of the metrics for the models produced so far.
177-
178-
![Run details dashboard](media/how-to-create-portal-experiments/run-details.png)
169+
### View experiment details
179170

180-
You are able to drill down on any of the output models which opens the details of that model including performance and distribution charts and metrics. [Learn more about charts](https://docs.microsoft.com/azure/machine-learning/service/how-to-track-experiments#understanding-automated-ml-charts).
181-
182-
![Iteration details](media/how-to-create-portal-experiments/dashboard.png)
171+
Once the experiment preparation phase is done, you'll see the Run Detail screen. This gives you a full list of the models created. By default, the model that scores the highest based on your parameters is at the top of the list. As the training job tries out more models, they are added to the iteration list and chart. Use the iteration chart to get a quick comparison of the metrics for the models produced so far.
183172

184173
Training jobs can take a while for each pipeline to finish running.
185174

186-
## Deploy model
187-
188-
Once you have the best model at hand, it is time to deploy it as a web service to predict on new data.
189-
190-
Automated ML helps you with deploying the model without writing code:
191-
192-
1. From the Run Summary pane on the right, select "Register model".
193-
194-
![Register model](media/how-to-create-portal-experiments/register-model.png)
195-
196-
1. Once the model is registered, you'll be able to download the scoring script to be used during the deployment.
197-
198-
![Download scoring script](media/how-to-create-portal-experiments/download-scoring-script.png)
199-
200-
1. Once you have the scoring script, go to the "Models" page (in the left navigation pane under **Assets**).
201-
202-
![Model navigation pane](media/how-to-create-portal-experiments/nav-pane-models.png)
203-
204-
1. Check the checkbox next to the model you registered, and select "Create image".
205-
206-
You can identify the model by its description, which includes the run ID and iteration number, in the following format: **<Run_ID>_<Iteration_number>_Model**.
207-
208-
1. Enter a name for the image, and upload the scoring file you previously downloaded. [Learn more about scoring scripts](https://docs.microsoft.com/azure/machine-learning/service/how-to-deploy-and-where.md#script).
209-
210-
You can use your own scoring script and Conda file. If you don't have a Conda file, [create your own](tutorial-deploy-models-with-aml.md#create-environment-file) and upload it along with any other additional files you may want to use.
211-
212-
![Create an image form](media/how-to-create-portal-experiments/create-image.png)
213-
214-
1. Select the "Create" button to start the image creation. This will take a few minutes to complete, once done, you will see a message on the top bar.
215-
216-
1. Go to the "Images" tab, check the checkbox next to the image you want to deploy, and select "Create deployment".
217-
218-
![Image create deployment screen](media/how-to-create-portal-experiments/images-create-deployment.png)
219-
220-
1. Enter a unique deployment name.
221-
222-
1. (optional) Enter a description for the deployment.
223-
224-
1. Select the target compute type to use.
175+
![Run details dashboard](media/how-to-create-portal-experiments/run-details.png)
225176

226-
![Create deployment form](media/how-to-create-portal-experiments/create-deployment.png)
177+
### View training run details
227178

228-
1. Select "Create" to start the deployment process, it will take several minutes to complete.
179+
Drill down on any of the output models to see training run details, like performance metrics and distribution charts. [Learn more about charts](https://docs.microsoft.com/azure/machine-learning/service/how-to-track-experiments#understanding-automated-ml-charts).
229180

230-
1. That's it! You have an operational web service to generate predictions.
181+
![Iteration details](media/how-to-create-portal-experiments/iteration-details.png)
231182

232183
## Next steps
233184

234-
* [How to consume a deployed model](how-to-consume-web-service.md).
235-
* [Collect data for models in production](how-to-enable-data-collection.md).
185+
* [Learn more about automated machine learning](concept-automated-ml.md) and Azure Machine Learning.

0 commit comments

Comments
 (0)