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
DepressedChimpanzee34
Moderator
24 Questions, 215 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

195 × Eureka!
0 Votes
28 Answers
643 Views
0 Votes 28 Answers 643 Views
2 years ago
0 Votes
17 Answers
546 Views
0 Votes 17 Answers 546 Views
I have another small technical question, I am trying to see the workers status programatically using the folowing: from clearml.backend_api.session.client im...
2 years ago
0 Votes
10 Answers
560 Views
0 Votes 10 Answers 560 Views
UI suggestion: Pain point : When viewing a task configuration tab, given a "complex" configuration with many entries, it takes some effort to scroll through ...
2 years ago
0 Votes
30 Answers
572 Views
0 Votes 30 Answers 572 Views
2 years ago
0 Votes
3 Answers
576 Views
0 Votes 3 Answers 576 Views
Hi people, are there any other good options to view a csv table on the ClearML UI other then the artifacts preview?
3 years ago
0 Votes
9 Answers
566 Views
0 Votes 9 Answers 566 Views
2 years ago
0 Votes
15 Answers
514 Views
0 Votes 15 Answers 514 Views
Hi, is there a concept of an agent taking more then one job?
3 years ago
0 Votes
6 Answers
569 Views
0 Votes 6 Answers 569 Views
UI Suggestion #2: Pain point : Trying to select a subset of experiments which are relevant for some comparison \ analysis can be an iterative process. If you...
2 years ago
0 Votes
14 Answers
580 Views
0 Votes 14 Answers 580 Views
2 years ago
0 Votes
28 Answers
612 Views
0 Votes 28 Answers 612 Views
I have a question regarding "imitating" an agent pulling some task for debugging purposes I am trying to do something like: Creating a task on the server tas...
2 years ago
0 Votes
12 Answers
632 Views
0 Votes 12 Answers 632 Views
Web server UI bug? when trying to extend the width of a column in the experiments table, if you try to extend it more then the width of the column to the rig...
2 years ago
0 Votes
14 Answers
624 Views
0 Votes 14 Answers 624 Views
Hi clearml people, I am trying to figure out if plotly animations are supported? I can see that I can report an animation figure and get the Play/Stop button...
3 years ago
0 Votes
30 Answers
494 Views
0 Votes 30 Answers 494 Views
Hi all, I have an issue with the way hyper parameters are logged under configuration, the values that are stored seem to add unnecessary escape characters to...
3 years ago
0 Votes
7 Answers
710 Views
0 Votes 7 Answers 710 Views
Hi all, I'm updating my code to use hydra, and facing an issue: when I try to init a task in offline mode I'me getting the following: ValueError: Multiple co...
3 years ago
0 Votes
2 Answers
552 Views
0 Votes 2 Answers 552 Views
Is there a way to compare experiments across projects?
3 years ago
0 Votes
2 Answers
701 Views
0 Votes 2 Answers 701 Views
Hi all, I'm getting this "ERROR - Action failed <500/100: events.add_batch/v1.0" in my task log, can any one help diagnose \ solve this issue? what does it a...
2 years ago
0 Votes
24 Answers
536 Views
0 Votes 24 Answers 536 Views
2 years ago
0 Votes
3 Answers
629 Views
0 Votes 3 Answers 629 Views
3 years ago
0 Votes
15 Answers
576 Views
0 Votes 15 Answers 576 Views
Hi I came across some inconsistency in the iteration reporting in the ClearML with pytorch-lightning when calling trainer.fit multiple times, before I dive i...
3 years ago
0 Votes
11 Answers
587 Views
0 Votes 11 Answers 587 Views
Hi all, is there documentation \ example describing how does ClearML works with hydra?
3 years ago
0 Votes
5 Answers
626 Views
0 Votes 5 Answers 626 Views
Hi all, I'm looking for an easy clean way to check if the code is executed by a ClearML agent programatically, any suggestions?
3 years ago
0 Votes
30 Answers
540 Views
0 Votes 30 Answers 540 Views
Hi all, is there an easy way to ping the server programatically? I'm just trying to see what is the default server that is set, and is it responsive
2 years ago
0 Votes
13 Answers
575 Views
0 Votes 13 Answers 575 Views
3 years ago
0 Votes
30 Answers
638 Views
0 Votes 30 Answers 638 Views
Hi All, I'm trying to use the relatively new jupyter preview feature but for some reason I have the notebook artifact under artifacts but the preview is unav...
3 years ago
0 Is There A Way To Compare Experiments Across Projects?

That's good enough for me, I forgot about the all projects option

3 years ago
0 Hi, Is There A Concept Of An Agent Taking More Then One Job?

is there a fundamental reason why is this only enabled in --docker mode?

3 years ago
0 Ui Suggestion #2:

CostlyOstrich36 , any thoughts about this one by the way?

2 years ago
3 years ago
0 A Suggestion. Sometimes Newcomers That Join An Existing Project That Uses Clearml Forget To Configure Their Clearml For The Organization'S Server Resulting In Them Launching Experiments To The Public Cloud Possibly With Sensitive Data - I Think That If Y

AgitatedDove14 , mostly out of curiosity, what is the motivation behind introducing this as an environment variable knob rather then a flag with some default in Task.init?

2 years ago
0 Hi I Came Across Some Inconsistency In The Iteration Reporting In The Clearml With Pytorch-Lightning When Calling Trainer.Fit Multiple Times, Before I Dive In I Wondered If There Is A Known Issue Related To This?

and also in terms of outcome, the scalars follow the correct epoch count, but the debug samples and monitored performance metric show a different count

3 years ago
0 Hi I Came Across Some Inconsistency In The Iteration Reporting In The Clearml With Pytorch-Lightning When Calling Trainer.Fit Multiple Times, Before I Dive In I Wondered If There Is A Known Issue Related To This?

Hi AgitatedDove14 , so it looks something like this:
` Task.init
trainer.fit(model) # clearml logging starts from 0 and logs all summaries correctly according to real count

triggered fit stopping at epoch=n

something

trainer.fit(model) # clearml logging starts from n+n (thats how it seems) for non explicit scalar summaries (debug samples, scalar resources monitoring, and also global iteration count)

triggered fit stopping

... `I am at the moment diverging from this implementation to s...

3 years ago
0 Hi I Came Across Some Inconsistency In The Iteration Reporting In The Clearml With Pytorch-Lightning When Calling Trainer.Fit Multiple Times, Before I Dive In I Wondered If There Is A Known Issue Related To This?

AgitatedDove14 no it has an offset of the value that it started with, so for example you stopped at n, then when you are running the n+1 epoch you get the 2*n+1 reported

3 years ago
0 Hi All, Is There Documentation \ Example Describing How Does Clearml Works With Hydra?

hi TimelyPenguin76 thanks, for some reason it didn't show up in my search or maybe I missed it..
I was wondering specifically about the following case:
lets say I'm cloning the task you created above, now I am editing some of the hyper parameters in the UI and enqueueing it.
would the config be "automatically" synced? I assume not, if not what would be a recommended way to sync it?
I especially wondered if there is a "smart" sync (with parsing) that can take advantage of the type hinting in...

3 years ago
0 Hi All, Is There Documentation \ Example Describing How Does Clearml Works With Hydra?

Hi AgitatedDove14 , if you don't mind having a look too, I think its probably just a small misunderstanding
according to the above I was expecting the config to be auto-magically updated with the new yaml config I edited in the UI, however it seems like an additional step is required.. probably connect_dict? or am I missing something

3 years ago
0 Hi All, Is There Documentation \ Example Describing How Does Clearml Works With Hydra?

TimelyPenguin76 thanks for the answer, so for example (to make sure I understand) with the example you gave above when I'll print the config I'll see the new edited parameters?
What about the second part of the question, would it be parsed according to the type hinting?

3 years ago
3 years ago
0 Ui Suggestion #2:

FrothyDog40 :man-facepalming: yea that seem to do the job, however it still feels like a bug that the out-of-view experiments are not deselected when clicking the top box (select all \deselect all)
less critical though.. thanks!

2 years ago
0 Web Server Ui Bug? When Trying To Extend The Width Of A Column In The Experiments Table, If You Try To Extend It More Then The Width Of The Column To The Right, It Doesn'T Do Anything..

OS:Fedora
browser: brave but also on chrome
reproduce like in the example I gave above.. drag the right corner across more then a single column

2 years ago
0 A Suggestion. Sometimes Newcomers That Join An Existing Project That Uses Clearml Forget To Configure Their Clearml For The Organization'S Server Resulting In Them Launching Experiments To The Public Cloud Possibly With Sensitive Data - I Think That If Y

AgitatedDove14 , well.. having the demo server by default lowers the effort threshold for trying ClearML and getting convinced it can deliver what it promises, and maybe test some simple custom use cases. I don't know what are the behind the scenes considerations in terms of costs of keeping the demo server running, but even having a leaner version where you limit the duration in which the experiment records are deleted after a week or few days sounds useful to me

2 years ago
0 Hi Clearml People, I Am Trying To Figure Out If Plotly Animations Are Supported? I Can See That I Can Report An Animation Figure And Get The Play/Stop Buttons But It Seem To Be Static

SuccessfulKoala55
` import plotly.express as px
df = px.data.gapminder()
fig = px.scatter(df, x="gdpPercap", y="lifeExp", animation_frame="year", animation_group="country",
size="pop", color="continent", hover_name="country",
log_x=True, size_max=55, range_x=[100, 100000], range_y=[25, 90])

task.get_logger().report_plotly(title="TEST", series="sepal", iteration=0, figure=fig) `Thanks

3 years ago
Show more results compactanswers