Update example images
Some checks failed
CI / build (push) Has been cancelled

This commit is contained in:
Noam Wasersprung
2025-04-16 18:45:54 +03:00
committed by GitHub
98 changed files with 96 additions and 49 deletions

View File

@@ -132,13 +132,14 @@ All the task information that ClearML captures can be viewed in the [WebApp](../
View saved model snapshots in the **ARTIFACTS** tab.
![Model snapshots](../img/ignite_artifact.png)
![Model snapshots](../img/ignite_artifact.png#light-mode-only)
### Scalars
View the scalars in the task's **SCALARS** tab.
![Scalars](../img/examples_cifar_scalars.png)
![Scalars](../img/examples_cifar_scalars.png#light-mode-only)
![Scalars](../img/examples_cifar_scalars_dark.png#dark-mode-only)
### Debug Samples
@@ -146,5 +147,6 @@ View the scalars in the task's **SCALARS** tab.
ClearML automatically tracks images logged to `TensorboardLogger`. They appear in the task's **DEBUG SAMPLES**.
![Debug Samples](../img/examples_integration_pytorch_ignite_debug.png)
![Debug Samples](../img/examples_integration_pytorch_ignite_debug.png#light-mode-only)
![Debug Samples](../img/examples_integration_pytorch_ignite_debug_dark.png#dark-mode-only)

View File

@@ -28,7 +28,8 @@ This will create a ClearML Task that captures:
View captured Matplotlib plots and images in the [WebApp](../webapp/webapp_exp_track_visual.md),
in the task's **Plots** and **Debug Samples** tabs respectively.
![Task plots](../img/examples_matplotlib_example_01.png)
![Task plots](../img/examples_matplotlib_example_01.png#light-mode-only)
![Task plots](../img/examples_matplotlib_example_01_dark.png#dark-mode-only)
## Automatic Logging Control
By default, when ClearML is integrated into your script, it captures all of your matplotlib visualizations.
@@ -67,12 +68,14 @@ plt.show()
The logged figure is displayed in the task's **Plots** tab.
![Task Matplotlib plots](../img/manual_matplotlib_reporting_01.png)
![Task Matplotlib plots](../img/manual_matplotlib_reporting_01.png#light-mode-only)
![Task Matplotlib plots](../img/manual_matplotlib_reporting_01_dark.png#dark-mode-only)
Matplotlib figures can be logged as images by passing `report_image=True` to `Logger.report_matplotlib_figure()`.
View the images in the task's **DEBUG SAMPLES** tab.
![Task debug sample](../img/manual_matplotlib_reporting_03.png)
![Task debug sample](../img/manual_matplotlib_reporting_03.png#light-mode-only)
![Task debug sample](../img/manual_matplotlib_reporting_03_dark.png#dark-mode-only)
See [Manual Matplotlib Reporting](../guides/reporting/manual_matplotlib_reporting.md) example.

View File

@@ -31,7 +31,8 @@ And that's it! This creates a [ClearML Task](../fundamentals/task.md) which capt
You can view all the task details in the [WebApp](../webapp/webapp_overview.md).
![LightningCLI params](../img/integrations_lightningcli_params.png)
![LightningCLI params](../img/integrations_lightningcli_params.png#light-mode-only)
![LightningCLI params](../img/integrations_lightningcli_params_dark.png#dark-mode-only)
See an example of PyTorch Lightning and ClearML in action [here](../guides/frameworks/pytorch_lightning/pytorch_lightning_example.md).