Skip to content

Commit 98817cd

Browse files
authored
Update how-to-track-designer-experiments.md
1 parent 473068b commit 98817cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/machine-learning/how-to-track-designer-experiments.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ ms.custom: designer, sdkv1, event-tier1-build-2022
1818

1919
In this article, you learn how to add logging code to designer pipelines. You also learn how to view those logs using the Azure Machine Learning studio web portal.
2020

21-
For more information on logging metrics using the SDK authoring experience, see [Monitor Azure ML experiment jobs and metrics](how-to-log-view-metrics.md).
21+
For more information on logging metrics using the SDK authoring experience, see [Monitor Azure ML experiment runs and metrics](how-to-log-view-metrics.md).
2222

2323
## Enable logging with Execute Python Script
2424

25-
Use the [Execute Python Script](./algorithm-module-reference/execute-python-script.md) component to enable logging in designer pipelines. Although you can log any value with this workflow, it's especially useful to log metrics from the __Evaluate Model__ component to track model performance across jobs.
25+
Use the [Execute Python Script](./algorithm-module-reference/execute-python-script.md) component to enable logging in designer pipelines. Although you can log any value with this workflow, it's especially useful to log metrics from the __Evaluate Model__ component to track model performance across runs.
2626

2727
The following example shows you how to log the mean squared error of two trained models using the Evaluate Model and Execute Python Script components.
2828

@@ -58,7 +58,7 @@ The following example shows you how to log the mean squared error of two trained
5858

5959
This code uses the Azure Machine Learning Python SDK to log values. It uses Run.get_context() to get the context of the current job. It then logs values to that context with the job.parent.log() method. It uses `parent` to log values to the parent pipeline job rather than the component job.
6060

61-
For more information on how to use the Python SDK to log values, see [Enable logging in Azure ML training jobs](how-to-log-view-metrics.md).
61+
For more information on how to use the Python SDK to log values, see [Enable logging in Azure ML training runs](how-to-log-view-metrics.md).
6262

6363
## View logs
6464

@@ -77,5 +77,5 @@ In this article, you learned how to use logs in the designer. For next steps, se
7777

7878

7979
* Learn how to troubleshoot designer pipelines, see [Debug & troubleshoot ML pipelines](how-to-debug-pipelines.md#azure-machine-learning-designer).
80-
* Learn how to use the Python SDK to log metrics in the SDK authoring experience, see [Enable logging in Azure ML training jobs](how-to-log-view-metrics.md).
80+
* Learn how to use the Python SDK to log metrics in the SDK authoring experience, see [Enable logging in Azure ML training runs](how-to-log-view-metrics.md).
8181
* Learn how to use [Execute Python Script](./algorithm-module-reference/execute-python-script.md) in the designer.

0 commit comments

Comments
 (0)