I have a question related to ClearML plot logging. We are currently using:
self.task_logger.report_table("TableSpaceName", "Some Info", iteration=0, table_plot=df)
To report tables. They appear under "PLOTS" section. Similarly, we are reporting plotly graphs:
self.task_logger.report_plotly(
title="PlotTitle", iteration=0, series='SeriesName', figure=fig
)
Both work fine. The issue is, each new report_plotly
call, instead of replacing the image in the section, creates a new one, and leaves the previous one present too. This cloggs the PLOTS section (tables and figures). The question is, how does one report a plot, so that it's reported in-place (Such as e.g., scalars, where sample plot gets updated in time)?