Skip to content

Commit d1ab930

Browse files
committed
corrections
1 parent 382e48e commit d1ab930

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

articles/machine-learning/how-to-debug-pipeline-failure.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ After you submit a pipeline job, you can select a link to the job in your worksp
2222
2323
## Use outline to quickly find a node
2424

25-
On the pipeline job detail page, the **Outline** pane on the left shows the overall structure of your pipeline job. Hover on any row and select the **Locate in canvas** icon to highlight that node on the canvas and open an information pane for the node on the right.
25+
On the pipeline job detail page, the **Outline** pane at left shows the overall structure of your pipeline job. Hover on any row and select the **Locate in canvas** icon to highlight that node on the canvas and open an information pane for the node on the right.
2626

2727
:::image type="content" source="./media/how-to-debug-pipeline-failure/outline-detail.png" alt-text="Screenshot showing outline and locate in the canvas." lightbox= "./media/how-to-debug-pipeline-failure/outline.png":::
2828

29-
In the **Outline** pane, you can select the **Filter** icon to quickly filter the view to **Completed nodes only**, **Component only**, or **Dataset only**. You can also filter the list by entering node names or component names in the Search box, or by selecting **Add filter** and choosing from a list of filters.
29+
In the **Outline** pane, you can select the **Filter** icon to quickly filter the view to **Completed nodes only**, **Component only**, or **Data only**. You can also filter the list by entering node names or component names in the Search box, or by selecting **Add filter** and choosing from a list of filters.
3030

3131
:::image type="content" source="./media/how-to-debug-pipeline-failure/quick-filter-detail.png" alt-text="Screenshot showing quick filter and search in the Outline pane." lightbox= "./media/how-to-debug-pipeline-failure/quick-filter.png":::
3232

@@ -40,9 +40,9 @@ If your pipeline fails or gets stuck on a node, first view the logs.
4040

4141
![Animated screenshot showing how to check node logs.](media/how-to-debug-pipeline-failure/node-logs.gif)
4242

43-
1. Select the node to open the information pane on the right.
43+
1. Select the node to open the information pane at right.
4444

45-
1. Select **Outputs + logs** tab to view all the outputs and logs of this node.
45+
1. Select the **Outputs + logs** tab to view all the outputs and logs from this node.
4646

4747
:::image type="content" source="./media/how-to-debug-pipeline-failure/log-detail.png" alt-text="Screenshot of the user_logs in the node information pane." lightbox= "./media/how-to-debug-pipeline-failure/log-detail.png":::
4848

@@ -51,13 +51,13 @@ If your pipeline fails or gets stuck on a node, first view the logs.
5151
- The *system_logs* folder contains logs generated by Azure Machine Learning. To learn more, see [View and download diagnostic logs](how-to-log-view-metrics.md#view-and-download-diagnostic-logs).
5252

5353
> [!NOTE]
54-
> If you don't see those folders, the compute run time update might not be released to the compute cluster yet, and you can look at *70_driver_log.txt* in the *azureml-logs* folder first.
54+
> If you don't see those folders, the compute run time update might not be released to the compute cluster yet. You can look at *70_driver_log.txt* in the *azureml-logs* folder first.
5555
5656
## Compare pipeline jobs (preview)
5757

5858
You can compare different pipeline jobs to debug failure or other unexpected issues (preview). Pipeline comparison identifies the differences, such as topology, component properties, and job properties, between pipeline jobs.
5959

60-
For example, you can compare successful and failed pipeline jobs to find differences that might have made one pipeline job fail. You can debug a failed pipeline job by comparing it to a completed job, or debug a failed node in a pipeline by comparing it to a similar completed node.
60+
You can compare successful and failed pipeline jobs to find differences that might make one pipeline job fail. You can debug a failed pipeline job by comparing it to a completed job, or debug a failed node in a pipeline by comparing it to a similar completed node.
6161

6262
To enable this feature in Azure Machine Learning studio, select the megaphone icon at top right to manage preview features. In the **Managed preview feature** panel, make sure **Compare pipeline jobs to debug failures or unexpected issues** is set to **Enabled**.
6363

@@ -67,14 +67,14 @@ To enable this feature in Azure Machine Learning studio, select the megaphone ic
6767

6868
During iterative model development, you might clone and modify a successful baseline pipeline by changing a parameter, dataset, compute resource, or other setting. If the new pipeline fails, you can use pipeline comparison to help figure out the failure by identifying the changes from the parent pipeline.
6969

70-
For example, if you get an error message that your new pipeline failed due to an out-of-memory issue, you can use pipeline comparison to see what changes from the parent pipeline might cause memory issues.
70+
For example, if your new pipeline failed due to an out-of-memory issue, you can use pipeline comparison to see what changes from the parent pipeline might cause memory issues.
7171

7272
#### Compare the pipeline with its parent
7373

7474
1. On the failed pipeline job page, select **Show lineage**.
7575
1. Select the link in the **Cloned from** popup to open the parent pipeline job page in a new browser tab.
7676

77-
:::image type="content" source="./media/how-to-debug-pipeline-failure/cloned-from.png" alt-text="Screenshot showing the cloned from link, with the previous step, the lineage button highlighted." lightbox= "./media/how-to-debug-pipeline-failure/cloned-from.png":::
77+
:::image type="content" source="./media/how-to-debug-pipeline-failure/draft-show-lineage.png" alt-text="Screenshot showing the cloned from link, with the previous step, the lineage button highlighted." lightbox= "./media/how-to-debug-pipeline-failure/draft-show-lineage.png":::
7878

7979
1. On both pages, select **Add to compare** on the top menu bar to add both jobs to the **Compare** list.
8080

@@ -86,7 +86,7 @@ Once you add both pipelines to the comparison list, you can select **Compare det
8686

8787
**Compare graph** shows the graph topology changes between pipelines **A** and **B**. On the canvas, nodes specific to pipeline A are marked **A** and highlighted in red, and nodes specific to pipeline B are marked **B** and highlighted in green. A description of changes appears at the tops of nodes that have differences.
8888

89-
You can select any node to open a **Component information** pane, where you can see **Dataset properties** or **Component properties** like **parameters**, **runSettings**, and **outputSettings**. You can choose to **Show only differences** and to **See differences inline**.
89+
You can select any node to open a **Component information** pane, where you can see **Dataset properties** or **Component properties** like **parameters**, **runSettings**, and **outputSettings**. You can choose to **Show only differences** and to **Show differences inline**.
9090

9191
:::image type="content" source="./media/how-to-debug-pipeline-failure/parameter-changed.png" alt-text="Screenshot showing the parameter changed and the component information tab." lightbox= "./media/how-to-debug-pipeline-failure/parameter-changed.png":::
9292

@@ -128,6 +128,6 @@ To share debug results with your teammates or other stakeholders, select **Share
128128

129129
## Related content
130130

131-
- [Python SDK v2](./how-to-create-component-pipeline-python.md)
131+
- [Build pipelines with components by using the Python SDK v2](./how-to-create-component-pipeline-python.md)
132132
- [Build pipelines with components by using the Azure Machine Learning CLI](./how-to-create-component-pipelines-cli.md)
133133
- [What is an Azure Machine Learning component?](./concept-component.md)
Binary file not shown.
-4.07 KB
Loading
-216 Bytes
Loading
-164 Bytes
Loading

0 commit comments

Comments
 (0)