Skip to content

Commit bf74801

Browse files
committed
Typo fix
1 parent f8faccd commit bf74801

File tree

2 files changed

+32
-5
lines changed

2 files changed

+32
-5
lines changed

articles/machine-learning/how-to-debug-pipelines.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ For pipelines created in the designer, you can find the **log files** on either
133133
When you submit a pipeline run and stay in the authoring page, you can find the log files generated for each module.
134134

135135
1. Select any module in the authoring canvas.
136-
1. In the right pane of the module, go to the **Outputs+logs** tab.
137-
1. Select the log file `70_driver_log.txt`
136+
1. In the right pane of the module, go to the **Outputs + logs** tab.
137+
1. Select the log file `70_driver_log.txt`.
138138

139139
![Authoring page module logs](./media/how-to-debug-pipelines/pipelinerun-05.png)
140140

@@ -145,8 +145,8 @@ You can also find the log files of specific runs in the pipeline run detail page
145145
1. Select a pipeline run created in the designer.
146146
![Pipeline run page](./media/how-to-debug-pipelines/pipelinerun-04.png)
147147
1. Select any module in the preview pane.
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`
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`.
150150

151151
## Debug and troubleshoot in Application Insights
152152
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)

articles/machine-learning/samples-designer.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: sample
99

1010
author: peterclu
1111
ms.author: peterlu
12-
ms.date: 03/10/2020
12+
ms.date: 03/29/2020
1313
---
1414
# Designer sample pipelines
1515

@@ -25,6 +25,8 @@ Use the built-in examples in Azure Machine Learning designer to quickly get star
2525

2626
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.
2727

28+
### Open a sample pipeline
29+
2830
1. Sign in to <a href="https://ml.azure.com?tabs=jre" target="_blank">ml.azure.com</a>, and select the workspace you want to work with.
2931

3032
1. Select **Designer**.
@@ -33,6 +35,31 @@ The designer saves a copy of the sample pipelines to your studio workspace. You
3335

3436
Select **Show more samples** for a complete list of samples.
3537

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 ![visualize icon](./media/tutorial-designer-automobile-price-train-score/visualize-icon.png) to see the results of each module.
60+
61+
Use the samples as starting points for some of the most common machine learning scenarios.
62+
3663
## Regression samples
3764

3865
Learn more about the built-in regression samples.

0 commit comments

Comments
 (0)