Update reporting images
@ -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**.
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## 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**.
|
||||||

|

|
||||||
|

|
||||||
|
@ -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
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## Dynamically Tracked Artifacts
|
## Dynamically Tracked Artifacts
|
||||||
|
|
||||||
|
@ -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))
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
```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))
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## Plots
|
## Plots
|
||||||
|
|
||||||
@ -63,7 +65,8 @@ logger.report_scatter2d(
|
|||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
### 3D Plots
|
### 3D Plots
|
||||||
|
|
||||||
@ -83,7 +86,8 @@ logger.report_scatter3d(
|
|||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
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(
|
|||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
### Confusion Matrices
|
### Confusion Matrices
|
||||||
|
|
||||||
@ -120,7 +125,8 @@ logger.report_confusion_matrix(
|
|||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
### Histograms
|
### Histograms
|
||||||
|
|
||||||
@ -140,7 +146,8 @@ logger.report_histogram(
|
|||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
```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(
|
|||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## 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)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
### HTML
|
### HTML
|
||||||
|
|
||||||
@ -201,7 +210,8 @@ logger.report_media(
|
|||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
### Images
|
### Images
|
||||||
|
|
||||||
@ -214,7 +224,8 @@ logger.report_image(
|
|||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
### Video
|
### Video
|
||||||
|
|
||||||
@ -227,7 +238,8 @@ logger.report_media(
|
|||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## 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")
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
@ -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.
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## Reporting HTML URLs
|
## Reporting HTML URLs
|
||||||
|
|
||||||
|
@ -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**.
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## Task 2: Accessing an Artifact
|
## Task 2: Accessing an Artifact
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 65 KiB After Width: | Height: | Size: 62 KiB |
BIN
docs/img/colab_explicit_reporting_01_dark.png
Normal file
After Width: | Height: | Size: 62 KiB |
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 55 KiB |
BIN
docs/img/colab_explicit_reporting_02_dark.png
Normal file
After Width: | Height: | Size: 56 KiB |
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 64 KiB |
BIN
docs/img/colab_explicit_reporting_03_dark.png
Normal file
After Width: | Height: | Size: 65 KiB |
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
BIN
docs/img/colab_explicit_reporting_04_dark.png
Normal file
After Width: | Height: | Size: 68 KiB |
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 80 KiB |
BIN
docs/img/colab_explicit_reporting_05_dark.png
Normal file
After Width: | Height: | Size: 79 KiB |
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 89 KiB |
BIN
docs/img/colab_explicit_reporting_06_dark.png
Normal file
After Width: | Height: | Size: 92 KiB |
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 54 KiB |
BIN
docs/img/colab_explicit_reporting_07_dark.png
Normal file
After Width: | Height: | Size: 53 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 29 KiB |
BIN
docs/img/colab_explicit_reporting_08_dark.png
Normal file
After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 46 KiB |
BIN
docs/img/colab_explicit_reporting_09_dark.png
Normal file
After Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 93 KiB |
BIN
docs/img/colab_explicit_reporting_10_dark.png
Normal file
After Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 76 KiB |
BIN
docs/img/colab_explicit_reporting_11_dark.png
Normal file
After Width: | Height: | Size: 76 KiB |
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 50 KiB |
BIN
docs/img/colab_explicit_reporting_12_dark.png
Normal file
After Width: | Height: | Size: 53 KiB |
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 51 KiB |
BIN
docs/img/colab_explicit_reporting_13_dark.png
Normal file
After Width: | Height: | Size: 52 KiB |
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 64 KiB |
BIN
docs/img/examples_reporting_01_dark.png
Normal file
After Width: | Height: | Size: 67 KiB |
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 85 KiB |
BIN
docs/img/examples_reporting_02_dark.png
Normal file
After Width: | Height: | Size: 86 KiB |
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 74 KiB |
BIN
docs/img/examples_reporting_03_dark.png
Normal file
After Width: | Height: | Size: 73 KiB |
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 106 KiB |
BIN
docs/img/examples_reporting_05_dark.png
Normal file
After Width: | Height: | Size: 98 KiB |
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 51 KiB |
BIN
docs/img/examples_using_artifacts_1_dark.png
Normal file
After Width: | Height: | Size: 51 KiB |