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
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.
20
20
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).
22
22
23
23
## Enable logging with Execute Python Script
24
24
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.
26
26
27
27
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.
28
28
@@ -58,7 +58,7 @@ The following example shows you how to log the mean squared error of two trained
58
58
59
59
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.
60
60
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).
62
62
63
63
## View logs
64
64
@@ -77,5 +77,5 @@ In this article, you learned how to use logs in the designer. For next steps, se
77
77
78
78
79
79
* 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).
81
81
* Learn how to use [Execute Python Script](./algorithm-module-reference/execute-python-script.md) in the designer.
0 commit comments