From 462b01ee0e0ac9e496ac9bbba8c2943636a82247 Mon Sep 17 00:00:00 2001 From: pollfly <75068813+pollfly@users.noreply.github.com> Date: Tue, 30 Jul 2024 23:32:08 +0300 Subject: [PATCH] Edit Logger docs (#1302) --- docs/logger.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/logger.md b/docs/logger.md index 59f8ea9a..fbe0360a 100644 --- a/docs/logger.md +++ b/docs/logger.md @@ -22,13 +22,13 @@ Using the **ClearML** [Logger](https://github.com/allegroai/clearml/blob/master/ Additionally, the **ClearML** Logger module provides methods that allow you to do the following: * Get the [current logger]() - * Overrride the ClearML configuration file with a [default upload destination]() for images and files + * Override the ClearML configuration file with a [default upload destination]() for images and files ## Graphs and Images ### Scalar Metrics -Use to report scalar metrics by iteration as a line plot. +Report scalar metrics by iteration as a line plot. First [get the current logger](#get-the-current-logger) and then use it (see an [example script](https://github.com/allegroai/clearml/blob/master/examples/reporting/scalar_reporting.py)) with the following method. @@ -99,7 +99,7 @@ def report_scalar(self, title, series, value, iteration) ### Histograms -Use to report any data by iteration as a histogram. +Report any data by iteration as a histogram. First [get the current logger](#get-the-current-logger) and then use it (see an [example script](https://github.com/allegroai/clearml/blob/master/examples/reporting/scatter_hist_confusion_mat_reporting.py)) with the following method. @@ -197,7 +197,7 @@ def report_histogram(self, title, series, values, iteration, labels=None, xlabel ### Line Plots -Use to report any data by iteration as a single or multiple line plot. +Report any data by iteration as a single or multiple line plot. First [get the current logger](#get-the-current-logger) and then use it (see an [example script](https://github.com/allegroai/clearml/blob/master/examples/reporting/scatter_hist_confusion_mat_reporting.py)) with the following method. @@ -323,7 +323,7 @@ def report_line_plot(self, title, series, iteration, xaxis, yaxis, mode='lines', ### 2D Scatter Diagrams -Use to report any vector data as a 2D scatter diagram. +Report any vector data as a 2D scatter diagram. First [get the current logger](#get-the-current-logger) and then use it (see an [example script](https://github.com/allegroai/clearml/blob/master/examples/reporting/scatter_hist_confusion_mat_reporting.py)) with the following method. @@ -459,7 +459,7 @@ def report_scatter2d(self, title, series, scatter, iteration, xaxis=None, yaxis= ### 3D Scatter Diagrams -Use to report any array data as a 3D scatter diagram. +Report any array data as a 3D scatter diagram. First [get the current logger](#get-the-current-logger) and then use it (see an [example script](https://github.com/allegroai/clearml/blob/master/examples/reporting/3d_plots_reporting.py)) with the following method. @@ -584,7 +584,7 @@ def report_scatter3d(self, title, series, scatter, iteration, labels=None, mode=
lines+markers
lines
.
+ The default value is lines
.
path
is not specified, then matrix
is required. The default values is None
.
+ path
is not specified, then matrix
is required. The default value is None
.
matrix
is not specified, then path
is required. The default values is None
.
+ matrix
is not specified, then path
is required. The default value is None
.
~/clearml.conf
).