Reputation
Badges 1
7 × Eureka!Nevermind I made a mistake in using the SDK, I made it work using the tutorial in the link, thanks!
Hope the CLI bug is fixed soon :)
Thanks for the reply.
I tried to do the same using the SDK, that does not give the an error but it also gets stuck in the webUI as ' running' while my computer is not running anything anymore.
I use the default storage option, so that is on the clearml file server. It's only a pretty small scale project so I don't need other elaborate options. Thanks for your suggestion though!
I circumvented the problem by saving the variables as scalars, those automatic plots work well.
Thanks for your help!
CostlyOstrich36 The problem was that the plot I created myself (with the loss and accuracy) was not stored properly in the results/plot tab. I removed the plotting from my script and instead I save the loss and accuracy using Logger.current_logger().report_scalar(). With the loss and accuracy properly saved as scalars, they are plotted nicely in the results/scalar tab.
Hi Natan,
Thanks for your reply.
Fig1 = the left one, with the subplots
Fig2 = the right one, with the 'child' labels (which I did not create)
This is the plot that is automatically registered in the details of the experiment.
fig, axs = plt.subplots(2, 1) axs[1].plot(range(epoch), accuracy_train, range(epoch), accuracy_valid) axs[1].legend(['Training accuracy', 'Validation accuracy']) axs[0].plot(range(epoch), loss_train, range(epoch), loss_valid) axs[0].legend(['Training loss', 'Validation loss']) plt.show()
This is the code I used on the output of my model (epoch, accuracy_train, accuracy_valid, loss_train, loss_valid)
what framework are you on? What version of ClearML are you using?
I'm using PyTorch and my clearml version is 1.3.2.
What are you referring yo specifically? The data plots seem to be identical.
The top subplot disappears entirely. Also the 'child' labels are added, it seems like it tries to combine the two plots?
Do you mean the x/y intersection?
The x labels are not at the x-axis but in the middle of the plot. Also the y-axis seems to be duplicated? There are differen...