@ -42,29 +42,34 @@ Logger.current_logger().report_scalar(
|
|||||||
These scalars can be visualized in plots, which appear in the [ClearML web UI](../../../webapp/webapp_overview.md), in
|
These scalars can be visualized in plots, which appear in the [ClearML web UI](../../../webapp/webapp_overview.md), in
|
||||||
the task's **SCALARS** tab.
|
the task's **SCALARS** tab.
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## Hyperparameters
|
## Hyperparameters
|
||||||
|
|
||||||
ClearML automatically logs command line options defined with abseil flags. They appear in **CONFIGURATION** **>**
|
ClearML automatically logs command line options defined with abseil flags. They appear in **CONFIGURATION** **>**
|
||||||
**HYPERPARAMETERS** **>** **TF_DEFINE**.
|
**HYPERPARAMETERS** **>** **TF_DEFINE**.
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## Console
|
## Console
|
||||||
|
|
||||||
Text printed to the console for training progress, as well as all other console output, appear in **CONSOLE**.
|
Text printed to the console for training progress, as well as all other console output, appear in **CONSOLE**.
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## Artifacts
|
## Artifacts
|
||||||
|
|
||||||
Models created by the task appear in the task's **ARTIFACTS** tab. ClearML automatically logs and tracks
|
Models created by the task appear in the task's **ARTIFACTS** tab. ClearML automatically logs and tracks
|
||||||
models and any snapshots created using PyTorch.
|
models and any snapshots created using PyTorch.
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
Clicking on the model name takes you to the [model's page](../../../webapp/webapp_model_viewing.md), where you can view
|
Clicking on the model name takes you to the [model's page](../../../webapp/webapp_model_viewing.md), where you can view
|
||||||
the model's details and access the model.
|
the model's details and access the model.
|
||||||
|
|
||||||

|

|
||||||
|

|
@ -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
|
||||||
|
|
||||||
|
@ -30,7 +30,8 @@ args = parser.parse_args()
|
|||||||
|
|
||||||
Command line options appears in **HYPERPARAMETERS** **>** **Args**.
|
Command line options appears in **HYPERPARAMETERS** **>** **Args**.
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## TensorFlow Definitions
|
## TensorFlow Definitions
|
||||||
|
|
||||||
@ -50,7 +51,8 @@ flags.DEFINE_string('echo5', '5', 'Text to echo.', module_name='test')
|
|||||||
|
|
||||||
TensorFlow Definitions appear in **HYPERPARAMETERS** **>** **TF_DEFINE**.
|
TensorFlow Definitions appear in **HYPERPARAMETERS** **>** **TF_DEFINE**.
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## Parameter Dictionaries
|
## Parameter Dictionaries
|
||||||
|
|
||||||
@ -78,5 +80,6 @@ parameters['float'] = '9.9'
|
|||||||
|
|
||||||
Parameters from dictionaries connected to Tasks appear in **HYPERPARAMETERS** **>** **General**.
|
Parameters from dictionaries connected to Tasks appear in **HYPERPARAMETERS** **>** **General**.
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
|
@ -50,8 +50,10 @@ Logger.current_logger().report_image(
|
|||||||
ClearML reports these images as debug samples in the **ClearML Web UI**, under the task's
|
ClearML reports these images as debug samples in the **ClearML Web UI**, under the task's
|
||||||
**DEBUG SAMPLES** tab.
|
**DEBUG SAMPLES** tab.
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
Click a thumbnail to open the image viewer.
|
Click a thumbnail to open the image viewer.
|
||||||
|
|
||||||

|

|
||||||
|

|
@ -40,7 +40,8 @@ Logger.current_logger().report_media(
|
|||||||
|
|
||||||
The reported audio can be viewed in the **DEBUG SAMPLES** tab. Click a thumbnail to open the audio player.
|
The reported audio can be viewed in the **DEBUG SAMPLES** tab. Click a thumbnail to open the audio player.
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
## Reporting (Uploading) Media from a Local File
|
## Reporting (Uploading) Media from a Local File
|
||||||
@ -59,4 +60,5 @@ Logger.current_logger().report_media(
|
|||||||
|
|
||||||
The reported video can be viewed in the **DEBUG SAMPLES** tab. Click a thumbnail to open the video player.
|
The reported video can be viewed in the **DEBUG SAMPLES** tab. Click a thumbnail to open the video player.
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
@ -44,14 +44,16 @@ output_model.update_weights(register_uri=model_url)
|
|||||||
## WebApp
|
## WebApp
|
||||||
The model appears in the task's **ARTIFACTS** tab.
|
The model appears in the task's **ARTIFACTS** tab.
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
Clicking on the model name takes you to the [model's page](../../webapp/webapp_model_viewing.md), where you can view the
|
Clicking on the model name takes you to the [model's page](../../webapp/webapp_model_viewing.md), where you can view the
|
||||||
model's details and access the model.
|
model's details and access the model.
|
||||||
|
|
||||||
The model's **LABELS** tab displays its label enumeration.
|
The model's **LABELS** tab displays its label enumeration.
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## Additional Example
|
## Additional Example
|
||||||
|
|
||||||
|
@ -33,7 +33,8 @@ Logger.current_logger().report_table(
|
|||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## Reporting CSV Files as Tables
|
## Reporting CSV Files as Tables
|
||||||
|
|
||||||
@ -50,4 +51,5 @@ Logger.current_logger().report_table(
|
|||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
@ -35,4 +35,5 @@ When the script runs, it creates a task named `plotly reporting` in the examples
|
|||||||
ClearML reports Plotly figures, and displays them in the **ClearML Web UI** **>** task's **PLOTS**
|
ClearML reports Plotly figures, and displays them in the **ClearML Web UI** **>** task's **PLOTS**
|
||||||
tab.
|
tab.
|
||||||
|
|
||||||

|

|
||||||
|

|
@ -53,9 +53,11 @@ Logger.current_logger().report_histogram(
|
|||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## Confusion Matrices
|
## Confusion Matrices
|
||||||
|
|
||||||
@ -74,7 +76,8 @@ Logger.current_logger().report_confusion_matrix(
|
|||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
```python
|
```python
|
||||||
# report confusion matrix with 0,0 is at the top left
|
# report confusion matrix with 0,0 is at the top left
|
||||||
@ -89,6 +92,9 @@ Logger.current_logger().report_confusion_matrix(
|
|||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
## 2D Scatter Plots
|
## 2D Scatter Plots
|
||||||
|
|
||||||
Report 2D scatter plots by calling [`Logger.report_scatter2d()`](../../references/sdk/logger.md#report_scatter2d).
|
Report 2D scatter plots by calling [`Logger.report_scatter2d()`](../../references/sdk/logger.md#report_scatter2d).
|
||||||
@ -132,4 +138,5 @@ Logger.current_logger().report_scatter2d(
|
|||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|

|
@ -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: 34 KiB After Width: | Height: | Size: 36 KiB |
BIN
docs/img/examples_model_logging_artifacts_dark.png
Normal file
After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
BIN
docs/img/examples_model_logging_labels_dark.png
Normal file
After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 43 KiB |
BIN
docs/img/examples_pytorch_abseil_models_2_dark.png
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
docs/img/examples_pytorch_abseil_models_dark.png
Normal file
After Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 78 KiB |
BIN
docs/img/examples_pytorch_abseil_params_dark.png
Normal file
After Width: | Height: | Size: 79 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: 107 KiB After Width: | Height: | Size: 165 KiB |
BIN
docs/img/examples_reporting_07_dark.png
Normal file
After Width: | Height: | Size: 165 KiB |
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.3 MiB |
BIN
docs/img/examples_reporting_07a_dark.png
Normal file
After Width: | Height: | Size: 1.3 MiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 32 KiB |
BIN
docs/img/examples_reporting_08_dark.png
Normal file
After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 77 KiB |
BIN
docs/img/examples_reporting_09_dark.png
Normal file
After Width: | Height: | Size: 77 KiB |
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 73 KiB |
BIN
docs/img/examples_reporting_11_dark.png
Normal file
After Width: | Height: | Size: 94 KiB |
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 36 KiB |
BIN
docs/img/examples_reporting_12_dark.png
Normal file
After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 54 KiB |
BIN
docs/img/examples_reporting_13_dark.png
Normal file
After Width: | Height: | Size: 56 KiB |
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 50 KiB |
BIN
docs/img/examples_reporting_15_dark.png
Normal file
After Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 51 KiB |
BIN
docs/img/examples_reporting_15a_dark.png
Normal file
After Width: | Height: | Size: 51 KiB |
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 62 KiB |
BIN
docs/img/examples_reporting_16_dark.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
docs/img/examples_reporting_16a.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
docs/img/examples_reporting_16a_dark.png
Normal file
After Width: | Height: | Size: 66 KiB |
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 85 KiB |
BIN
docs/img/examples_reporting_17_dark.png
Normal file
After Width: | Height: | Size: 88 KiB |
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 42 KiB |
BIN
docs/img/examples_reporting_hyper_param_01_dark.png
Normal file
After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 44 KiB |
BIN
docs/img/examples_reporting_hyper_param_02_dark.png
Normal file
After Width: | Height: | Size: 45 KiB |
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 72 KiB |
BIN
docs/img/examples_reporting_hyper_param_03_dark.png
Normal file
After Width: | Height: | Size: 73 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 |