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/how-to-debug-pipelines.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ ms.date: 03/18/2020
17
17
In this article, you learn how to debug and troubleshoot [machine learning pipelines](concept-ml-pipelines.md) in the [Azure Machine Learning SDK](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py) and [Azure Machine Learning designer (preview)](https://docs.microsoft.com/azure/machine-learning/concept-designer). Information is provided on how to:
18
18
19
19
* Debug using the Azure Machine Learning SDK
20
-
* Debug using the Azure Machine Learning Designer
20
+
* Debug using the Azure Machine Learning designer
21
21
* Debug using Application Insights
22
22
* Debug interactively using Visual Studio Code (VS Code) and the Python Tools for Visual Studio (PTVSD)
23
23
@@ -88,7 +88,7 @@ The table below provides information for different debug options for pipelines.
88
88
| Library | Type | Example | Destination | Resources |
@@ -145,8 +145,8 @@ You can also find the log files of specific runs in the pipeline run detail page
145
145
1. Select a pipeline run created in the designer.
146
146

147
147
1. Select any module in the preview pane.
148
-
1. In the right pane of the module, go to the **Outputs+ogs** tab.
149
-
1. Select the log file `70_driver_log.txt`
148
+
1. In the right pane of the module, go to the **Outputs + logs** tab.
149
+
1. Select the log file `70_driver_log.txt`.
150
150
151
151
## Debug and troubleshoot in Application Insights
152
152
For more information on using the OpenCensus Python library in this manner, see this guide: [Debug and troubleshoot machine learning pipelines in Application Insights](how-to-debug-pipelines-application-insights.md)
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-retrain-designer.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,14 +49,14 @@ To retrain a model, you need an initial model. In this section, you learn how to
49
49
For this example, the data is stored in an [Azure datastore](how-to-access-data.md). If you don't already have a datastore, you can create one now by selecting **New datastore**.
50
50
51
51
1. Specify the path to your data. You can also select **Browse path** to browse to your datastore.
52
-
1. Select **Run** at the top of the canvas.
52
+
1. Select **Submit** at the top of the canvas.
53
53
54
54
> [!NOTE]
55
55
> If you have already set a default compute for this pipeline draft, the pipeline will run automatically. Otherwise, you can follow the prompts on the settings pane to set one now.
56
56
57
57
### Find your trained model
58
58
59
-
The designer saves all pipeline outputs, including trained models, to the default storage account. You can also access the trained model directly in the designer:
59
+
The designer saves all pipeline outputs, including trained models, to the default storage account. However, you can also access trained models directly in the designer:
Copy file name to clipboardExpand all lines: articles/machine-learning/samples-designer.md
+28-1Lines changed: 28 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ ms.topic: sample
9
9
10
10
author: peterclu
11
11
ms.author: peterlu
12
-
ms.date: 03/10/2020
12
+
ms.date: 03/29/2020
13
13
---
14
14
# Designer sample pipelines
15
15
@@ -25,6 +25,8 @@ Use the built-in examples in Azure Machine Learning designer to quickly get star
25
25
26
26
The designer saves a copy of the sample pipelines to your studio workspace. You can edit the pipeline to adapt it to your needs and save it as your own. Use them as a starting point to jumpstart your projects.
27
27
28
+
### Open a sample pipeline
29
+
28
30
1. Sign in to <ahref="https://ml.azure.com?tabs=jre"target="_blank">ml.azure.com</a>, and select the workspace you want to work with.
29
31
30
32
1. Select **Designer**.
@@ -33,6 +35,31 @@ The designer saves a copy of the sample pipelines to your studio workspace. You
33
35
34
36
Select **Show more samples** for a complete list of samples.
35
37
38
+
### Submit a pipeline run
39
+
40
+
To run a pipeline, you first have to set default compute target to run the pipeline on.
41
+
42
+
1. In the **Settings** pane to the right of the canvas, select **Select compute target**.
43
+
44
+
1. In the dialog that appears, select an existing compute target or create a new one. Select **Save**.
45
+
46
+
1. Select **Submit** at the top of the canvas to submit a pipeline run.
47
+
48
+
Depending on the sample pipeline and compute settings, runs may take some time to complete. The default compute settings have a minimum node size of 0, which means that the designer must allocate resources after being idle. Repeated pipeline runs will take less time since the compute resources are already allocated. Additionally, the designer uses cached results for each module to further improve efficiency.
49
+
50
+
51
+
### Review the results
52
+
53
+
After the pipeline finishes running, you can review the pipeline and view the output for each module to learn more.
54
+
55
+
Use the following steps to view module outputs:
56
+
57
+
1. Select a module in the canvas.
58
+
59
+
1. In the module details pane to the right of the canvas, select **Outputs + logs**. Select the graph icon  to see the results of each module.
60
+
61
+
Use the samples as starting points for some of the most common machine learning scenarios.
Copy file name to clipboardExpand all lines: articles/machine-learning/tutorial-designer-automobile-price-deploy.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,8 @@ To deploy your pipeline, you must first convert the training pipeline into a rea
54
54
55
55
1. Select **Submit**, and use the same compute target and experiment that you used in part one.
56
56
57
+
If is the first run, it may take up to 20 minutes for your pipeline to finish running. The default compute settings have a minimum node size of 0, which means that the designer must allocate resources after being idle. Repeated pipeline runs will take less time since the compute resources are already allocated. Additionally, the designer uses cached results for each module to further improve efficiency.
Copy file name to clipboardExpand all lines: articles/machine-learning/tutorial-designer-automobile-price-train-score.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ You can visualize the data to understand the dataset that you'll use.
99
99
100
100
1. Select the **Automobile price data (Raw)** module.
101
101
102
-
1. In the module details pane to the right of the canvas, select **Outputs**.
102
+
1. In the module details pane to the right of the canvas, select **Outputs + log**.
103
103
104
104
1. Select the graph icon to visualize the data.
105
105
@@ -265,7 +265,7 @@ Use the **Evaluate Model** module to evaluate how well your model scored the tes
265
265
266
266
## Submit the pipeline
267
267
268
-
Now that your pipeline is all setup, you can submit a pipeline run to train your machine learning model. You can submit a pipeline run at any point while building pipelines in the designer. You can do this to check your work as you go to verify your pipeline works as expected.
268
+
Now that your pipeline is all setup, you can submit a pipeline run to train your machine learning model. You can submit a valid pipeline run at any point, which can be used to review changes to your pipeline during development.
269
269
270
270
1. At the top of the canvas, select **Submit**.
271
271
@@ -279,14 +279,16 @@ Now that your pipeline is all setup, you can submit a pipeline run to train your
279
279
1. Select **Submit**.
280
280
281
281
You can view run status and details at the top right of the canvas.
282
+
283
+
If is the first run, it may take up to 20 minutes for your pipeline to finish running. The default compute settings have a minimum node size of 0, which means that the designer must allocate resources after being idle. Repeated pipeline runs will take less time since the compute resources are already allocated. Additionally, the designer uses cached results for each module to further improve efficiency.
282
284
283
285
### View scored labels
284
286
285
287
After the run completes, you can view the results of the pipeline run. First, look at the predictions generated by the regression model.
286
288
287
289
1. Select the **Score Model** module to view its output.
288
290
289
-
1. In the module details pane to the right of the canvas, select **Outputs** > graph icon  to view results.
291
+
1. In the module details pane to the right of the canvas, select **Outputs + logs** > graph icon  to view results.
290
292
291
293
Here you can see the predicted prices and the actual prices from the testing data.
292
294
@@ -298,7 +300,7 @@ Use the **Evaluate Model** to see how well the trained model performed on the te
298
300
299
301
1. Select the **Evaluate Model** module to view its output.
300
302
301
-
1. In the module details pane to the right of the canvas, select **Output** > graph icon  to view results.
303
+
1. In the module details pane to the right of the canvas, select **Outputs + logs** > graph icon  to view results.
302
304
303
305
The following statistics are shown for your model:
0 commit comments