From 5609786797f863fe091a9e6e0cfb46b2a111eeea Mon Sep 17 00:00:00 2001 From: jkasiraj Date: Thu, 21 Apr 2022 10:48:36 -0700 Subject: [PATCH] doc: view ROC, PR, and confusion matrix in Trial Component UI --- src/smexperiments/tracker.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/smexperiments/tracker.py b/src/smexperiments/tracker.py index 493a129..33a52b3 100644 --- a/src/smexperiments/tracker.py +++ b/src/smexperiments/tracker.py @@ -471,9 +471,9 @@ def log_precision_recall( output_artifact=True, no_skill=None, ): - """Log a precision recall graph artifact. If your job is created by a pipeline - execution you can view the artifact by selecting the corresponding step in the pipelines UI. - The Trial Component UI currently does not support rendering of the artifact. + """Log a precision recall graph artifact. You can view the artifact in the charts tab of the + Trial Component UI. If your job is created by a pipeline execution you can view the artifact + by selecting the corresponding step in the pipelines UI. See also `SageMaker Pipelines `_ Requires sklearn. @@ -535,9 +535,9 @@ def log_roc_curve( title=None, output_artifact=True, ): - """Log a receiver operating characteristic (ROC curve) artifact. If your job is created by a pipeline - execution you can view the artifact by selecting the corresponding step in the pipelines UI. - The Trial Component UI currently does not support rendering of the artifact. + """Log a receiver operating characteristic (ROC curve) artifact. You can view the artifact + in the charts tab of the Trial Component UI. If your job is created by a pipeline execution + you can view the artifact by selecting the corresponding step in the pipelines UI. See also `SageMaker Pipelines `_ Requires sklearn. @@ -588,9 +588,9 @@ def log_confusion_matrix( title=None, output_artifact=True, ): - """Log a confusion matrix artifact. If your job is created by a pipeline execution you can view the - artifact by selecting the corresponding step in the pipelines UI. The Trial Component UI - currently does not support rendering of the artifact. + """Log a confusion matrix artifact. You can view the artifact in the charts tab of the + Trial Component UI. If your job is created by a pipeline execution you can view the + artifact by selecting the corresponding step in the pipelines UI. See also `SageMaker Pipelines `_ Requires sklearn.