Update Matplotlib integration images
@ -10,13 +10,16 @@ example demonstrates using ClearML to log plots and images generated by Matplotl
|
||||
The Matplotlib and Seaborn plots reported using [`Logger.report_matplotlib_figure()`](../../references/sdk/logger.md#report_matplotlib_figure)
|
||||
appear in the task's **PLOTS** tab.
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Debug Samples
|
||||
|
||||
Matplotlib figures can be logged as images by using [`Logger.report_matplotlib_figure()`](../../references/sdk/logger.md#report_matplotlib_figure),
|
||||
and passing `report_image=True`. The images are displayed in the task's **DEBUG SAMPLES**.
|
||||
|
||||

|
||||

|
||||

|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 84 KiB |
BIN
docs/img/manual_matplotlib_reporting_01_dark.png
Normal file
After Width: | Height: | Size: 83 KiB |
Before Width: | Height: | Size: 114 KiB After Width: | Height: | Size: 124 KiB |
BIN
docs/img/manual_matplotlib_reporting_02_dark.png
Normal file
After Width: | Height: | Size: 125 KiB |
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 52 KiB |
BIN
docs/img/manual_matplotlib_reporting_03_dark.png
Normal file
After Width: | Height: | Size: 52 KiB |
@ -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.
|
||||
|
||||

|
||||

|
||||

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

|
||||

|
||||

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

|
||||

|
||||

|
||||
|
||||
See [Manual Matplotlib Reporting](../guides/reporting/manual_matplotlib_reporting.md) example.
|
||||
|
||||
|