Unanswered
Hi All!
I Am Logging A Plot And I Am Having An Issue With Its Legend. When I Run The Code Myself It Appears As Expected (1St Image). When I Log It In Clearml The Legend Is Not Right (2Nd Image).
The Code For Generating The Plot Is (Df Is A Pandas Datafram
Hi @<1791277437087125504:profile|BrightDog7>
Seems like mostly proportion change, the data is the same but the layout on the web is wider hence the change (btw you can download the data from the web UI as json to double check)
Notice that it tries to convert it to "interactive" data points for easier zooming etc, and that's probably the cause of the proportion change.
You can force an image (like what you get directly from matplotlib):
logger.report_matplotlib_figure(
title='NLLs', series='NLLs', figure=fig, iteration=0
report_interactive=False,
)
125 Views
0
Answers
7 months ago
7 months ago