Update reporting images

This commit is contained in:
revital 2025-04-21 14:55:38 +03:00
parent b126d32e61
commit be7db90c5f
41 changed files with 38 additions and 20 deletions

View File

@ -1,5 +1,5 @@
--- ---
title: 3D Plots Reporting title: 3D Plot Reporting
--- ---
The [3d_plots_reporting.py](https://github.com/clearml/clearml/blob/master/examples/reporting/3d_plots_reporting.py) The [3d_plots_reporting.py](https://github.com/clearml/clearml/blob/master/examples/reporting/3d_plots_reporting.py)
@ -28,7 +28,8 @@ Logger.current_logger().report_surface(
``` ```
View the reported surface plot in **PLOTS**. View the reported surface plot in **PLOTS**.
![Surface plot](../../img/examples_reporting_02.png) ![Surface plot](../../img/examples_reporting_02.png#light-mode-only)
![Surface plot](../../img/examples_reporting_02_dark.png#dark-mode-only)
## 3D Scatter Plot ## 3D Scatter Plot
@ -49,4 +50,5 @@ Logger.current_logger().report_scatter3d(
``` ```
View the reported 3D scatter plot in **PLOTS**. View the reported 3D scatter plot in **PLOTS**.
![3d scatter plot](../../img/examples_reporting_01.png) ![3d scatter plot](../../img/examples_reporting_01.png#light-mode-only)
![3d scatter plot](../../img/examples_reporting_01_dark.png#dark-mode-only)

View File

@ -25,8 +25,9 @@ is different). Configure ClearML in any of the following ways:
When the script runs, it creates a task named `artifacts example` in the `examples` project. When the script runs, it creates a task named `artifacts example` in the `examples` project.
ClearML reports artifacts in the **ClearML Web UI** **>** task details **>** **ARTIFACTS** tab. ClearML reports artifacts in the **ClearML Web UI** **>** task details **>** **ARTIFACTS** tab.
examples_reporting_03
![Task artifacts](../../img/examples_reporting_03.png) ![Task artifacts](../../img/examples_reporting_03.png#light-mode-only)
![Task artifacts](../../img/examples_reporting_03_dark.png#dark-mode-only)
## Dynamically Tracked Artifacts ## Dynamically Tracked Artifacts

View File

@ -27,7 +27,8 @@ for i in range(10):
logger.report_scalar(title="graph B", series="series B", iteration=i, value=10./(i+1)) logger.report_scalar(title="graph B", series="series B", iteration=i, value=10./(i+1))
``` ```
![Separate scalar plots](../../img/colab_explicit_reporting_01.png) ![Separate scalar plots](../../img/colab_explicit_reporting_01.png#light-mode-only)
![Separate scalar plots](../../img/colab_explicit_reporting_01_dark.png#dark-mode-only)
```python ```python
# report two scalar series on the same graph # report two scalar series on the same graph
@ -36,7 +37,8 @@ for i in range(10):
logger.report_scalar(title="unified graph", series="series B", iteration=i, value=10./(i+1)) logger.report_scalar(title="unified graph", series="series B", iteration=i, value=10./(i+1))
``` ```
![Unified scalar plots](../../img/colab_explicit_reporting_02.png) ![Unified scalar plots](../../img/colab_explicit_reporting_02.png#light-mode-only)
![Unified scalar plots](../../img/colab_explicit_reporting_02_dark.png#dark-mode-only)
## Plots ## Plots
@ -63,7 +65,8 @@ logger.report_scatter2d(
) )
``` ```
![2d scatter plot](../../img/colab_explicit_reporting_04.png) ![2d scatter plot](../../img/colab_explicit_reporting_04.png#light-mode-only)
![2d scatter plot](../../img/colab_explicit_reporting_04_dark.png#dark-mode-only)
### 3D Plots ### 3D Plots
@ -83,7 +86,8 @@ logger.report_scatter3d(
) )
``` ```
![3d scatter plot](../../img/colab_explicit_reporting_05.png) ![3d scatter plot](../../img/colab_explicit_reporting_05.png#light-mode-only)
![3d scatter plot](../../img/colab_explicit_reporting_05_dark.png#dark-mode-only)
To plot a series as a surface plot, use [`Logger.report_surface()`](../../references/sdk/logger.md#report_surface). To plot a series as a surface plot, use [`Logger.report_surface()`](../../references/sdk/logger.md#report_surface).
@ -101,7 +105,8 @@ logger.report_surface(
) )
``` ```
![3d surface plot](../../img/colab_explicit_reporting_06.png) ![3d surface plot](../../img/colab_explicit_reporting_06.png#light-mode-only)
![3d surface plot](../../img/colab_explicit_reporting_06_dark.png#dark-mode-only)
### Confusion Matrices ### Confusion Matrices
@ -120,7 +125,8 @@ logger.report_confusion_matrix(
) )
``` ```
![Confusion matrix](../../img/colab_explicit_reporting_03.png) ![Confusion matrix](../../img/colab_explicit_reporting_03.png#light-mode-only)
![Confusion matrix](../../img/colab_explicit_reporting_03_dark.png#dark-mode-only)
### Histograms ### Histograms
@ -140,7 +146,8 @@ logger.report_histogram(
) )
``` ```
![Histogram](../../img/colab_explicit_reporting_12.png) ![Histogram](../../img/colab_explicit_reporting_12.png#light-mode-only)
![Histogram](../../img/colab_explicit_reporting_12_dark.png#dark-mode-only)
```python ```python
# report a two histograms on the same plot # report a two histograms on the same plot
@ -164,7 +171,8 @@ logger.report_histogram(
) )
``` ```
![Two histograms in one plot](../../img/colab_explicit_reporting_07.png) ![Two histograms in one plot](../../img/colab_explicit_reporting_07.png#light-mode-only)
![Two histograms in one plot](../../img/colab_explicit_reporting_07_dark.png#dark-mode-only)
## Media ## Media
@ -188,7 +196,8 @@ image_local_copy = StorageManager.get_local_copy(
logger.report_media(title='audio', series='pink panther', iteration=1, local_path=audio_local_copy) logger.report_media(title='audio', series='pink panther', iteration=1, local_path=audio_local_copy)
``` ```
![Audio sample](../../img/colab_explicit_reporting_08.png) ![Audio sample](../../img/colab_explicit_reporting_08.png#light-mode-only)
![Audio sample](../../img/colab_explicit_reporting_08_dark.png#dark-mode-only)
### HTML ### HTML
@ -201,7 +210,8 @@ logger.report_media(
) )
``` ```
![HTML sample](../../img/colab_explicit_reporting_09.png) ![HTML sample](../../img/colab_explicit_reporting_09.png#light-mode-only)
![HTML sample](../../img/colab_explicit_reporting_09_dark.png#dark-mode-only)
### Images ### Images
@ -214,7 +224,8 @@ logger.report_image(
) )
``` ```
![Image sample](../../img/colab_explicit_reporting_10.png) ![Image sample](../../img/colab_explicit_reporting_10.png#light-mode-only)
![Image sample](../../img/colab_explicit_reporting_10_dark.png#dark-mode-only)
### Video ### Video
@ -227,7 +238,8 @@ logger.report_media(
) )
``` ```
![Video sample](../../img/colab_explicit_reporting_11.png) ![Video sample](../../img/colab_explicit_reporting_11.png#light-mode-only)
![Video sample](../../img/colab_explicit_reporting_11_dark.png#dark-mode-only)
## Text ## Text
@ -237,4 +249,5 @@ Report text messages by calling [`Logger.report_text()`](../../references/sdk/lo
logger.report_text("hello, this is plain text") logger.report_text("hello, this is plain text")
``` ```
![Text report to console](../../img/colab_explicit_reporting_13.png) ![Text report to console](../../img/colab_explicit_reporting_13.png#light-mode-only)
![Text report to console](../../img/colab_explicit_reporting_13_dark.png#dark-mode-only)

View File

@ -9,7 +9,8 @@ ClearML reports these HTML debug samples in the **ClearML Web UI** **>** task's
When the script runs, it creates a task named `html samples reporting` in the `examples` project. When the script runs, it creates a task named `html samples reporting` in the `examples` project.
![image](../../img/examples_reporting_05.png) ![Debig Samples](../../img/examples_reporting_05.png#light-mode-only)
![Debig Samples](../../img/examples_reporting_05_dark.png#dark-mode-only)
## Reporting HTML URLs ## Reporting HTML URLs

View File

@ -23,7 +23,8 @@ initialized in the same script.
Artifact details (location and size) can be viewed in ClearML's **web UI > task details > ARTIFACTS tab > OTHER section**. Artifact details (location and size) can be viewed in ClearML's **web UI > task details > ARTIFACTS tab > OTHER section**.
![Artifacts in WebApp](../../img/examples_using_artifacts_1.png) ![Artifacts in WebApp](../../img/examples_using_artifacts_1.png#light-mode-only)
![Artifacts in WebApp](../../img/examples_using_artifacts_1_dark.png#dark-mode-only)
## Task 2: Accessing an Artifact ## Task 2: Accessing an Artifact

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 84 KiB

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 78 KiB

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 78 KiB

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB