Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Profile picture
TartSeagull57
Moderator
4 Questions, 11 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

7 × Eureka!
0 Votes
0 Answers
711 Views
0 Votes 0 Answers 711 Views
one year ago
0 Votes
13 Answers
567 Views
0 Votes 13 Answers 567 Views
one year ago
0 Votes
3 Answers
627 Views
0 Votes 3 Answers 627 Views
one year ago
0 Votes
1 Answers
576 Views
0 Votes 1 Answers 576 Views
one year ago
0 Hi, I Just Started Working With Clearml And I Have A Question About One Of My Plots. Fig 1 Is What It Looks Like In My Pycharm Output. Fig 2 Is What Is Logged In The Clearml Server. Why Does The Figure Change So Drastically? And How Can I Solve It? Sideno

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.

one year ago
0 Hi, I Just Started Working With Clearml And I Have A Question About One Of My Plots. Fig 1 Is What It Looks Like In My Pycharm Output. Fig 2 Is What Is Logged In The Clearml Server. Why Does The Figure Change So Drastically? And How Can I Solve It? Sideno

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)

one year ago
0 Hi, I Just Started Working With Clearml And I Have A Question About One Of My Plots. Fig 1 Is What It Looks Like In My Pycharm Output. Fig 2 Is What Is Logged In The Clearml Server. Why Does The Figure Change So Drastically? And How Can I Solve It? Sideno

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

one year ago
0 Hi, I Just Started Working With Clearml And I Have A Question About One Of My Plots. Fig 1 Is What It Looks Like In My Pycharm Output. Fig 2 Is What Is Logged In The Clearml Server. Why Does The Figure Change So Drastically? And How Can I Solve It? Sideno

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.

one year ago
0 Hello

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.

one year ago
0 Hello

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 :)

one year ago
0 Hello

Great, thanks for informing me!

one year ago
0 Hello

Ah I see, thanks!!

one year ago
0 Hi Everyone, I Have A Bit Of A Vague Problem. My Code Used To Work Fine But All Of A Sudden It Broke Down. When I Run An Experiment Now, It Just Stops Execution Without Returning Any Errors. After Some Searching, I Found Out That The Code Never Proceeds

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!

one year ago