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
NastyOtter17
Moderator
8 Questions, 14 Answers
  Active since 10 January 2023
  Last activity 13 days ago

Reputation

0

Badges 1

9 × Eureka!
0 Votes
9 Answers
15 Views
0 Votes 9 Answers 15 Views
None Hello if I try to create a dataset from code, as shown in this example I have two questions: - Closing the data doesnt work: dataset.close() AttributeEr...
2 years ago
0 Votes
4 Answers
485 Views
0 Votes 4 Answers 485 Views
For some runs of my experiments the ressource monitoring exists, for other it does not. Any idea why this could be the case?
2 years ago
0 Votes
1 Answers
29 Views
0 Votes 1 Answers 29 Views
None The link to the script is broken, script in the repo is named matplotlib_manual_reporting.py
2 years ago
0 Votes
5 Answers
488 Views
0 Votes 5 Answers 488 Views
I try to update scalars, but the iteration I pass is ignored, instead the last iteration is incremented, feels wrong to me. prev_task = Task.init(continue_la...
2 years ago
0 Votes
5 Answers
524 Views
0 Votes 5 Answers 524 Views
Typo: Was going crazy for a short amount of time yelling to myself: I just installed clear-agent init!
2 years ago
0 Votes
4 Answers
21 Views
0 Votes 4 Answers 21 Views
None "ClearML automatically logs debug samples, allowing you to track" I wouldn't consider the logging shown in the examples as "automatic", rather "explicit"
2 years ago
0 Votes
1 Answers
469 Views
0 Votes 1 Answers 469 Views
I am not using Tensorflow, however the experiment shows some (useless) data, is the only way to get rid of it to specify auto_connect_frameworks={'tensorflow...
2 years ago
0 Votes
1 Answers
458 Views
0 Votes 1 Answers 458 Views
What exactly is sdk.google.storage.project https://clear.ml/docs/latest/docs/configs/clearml_conf#sdkgooglestorage used for? 🤔 "Project" is so ambiguous
2 years ago
2 years ago
0 I Try To Update Scalars, But The Iteration I Pass Is Ignored, Instead The Last Iteration Is Incremented, Feels Wrong To Me.

Sure!
Before:
{'model': {'accuracy': {'name': 'accuracy', 'x': [0, 1], 'y': [0.5789473652839661, 1.0]}}
After:
{'model': {'accuracy': {'name': 'accuracy', 'x': [0, 1, 2 ], 'y': [0.5789473652839661, 1.0, 2.0 ]}}
Expected:
{'model': {'accuracy': {'name': 'accuracy', 'x': [ 0, 1], 'y': [ 2.0 , 1.0]}}

2 years ago
0 Typo: Was Going Crazy For A Short Amount Of Time Yelling To Myself: I Just Installed Clear-Agent Init!

Well its not just the dash in front of queue, but also ml missing in clearml-agent

2 years ago
0 Hi, Is It Possible To Query All Experiments In A Project And Get The Best Performing One (Sorted By One Metric)? Something Similar As Search_Runs In Mlflow (

But now you're talking about the case two Tasks have the same metric, right?
I mean in general, whether the task with the largest metric is first, or smallest, because I'd need largest metric, but to me it seems like smallest metric is first. Can the order be inversed?

2 years ago
0 Hi, Is It Possible To Query All Experiments In A Project And Get The Best Performing One (Sorted By One Metric)? Something Similar As Search_Runs In Mlflow (

Still feels super hacky tho, think it would be nice to have a simplier way or atleast some nice documentation 🙂
Thanks for your help!

2 years ago
0 Hi, Is It Possible To Query All Experiments In A Project And Get The Best Performing One (Sorted By One Metric)? Something Similar As Search_Runs In Mlflow (

I'll try to test in a new project. Will they get ordered ascending or descending? Does documentation beside your example exist?

2 years ago
0 Hello If I Try To Create A Dataset From Code, As Shown In This Example I Have Two Questions:

Not much more:
Uploading compressed dataset changes (1 files, total 7.56 KB) to None
Upload completed (7.56 KB)
Traceback (most recent call last):
File "/mnt/c/Users/tbudras/Documents/local-development-code/test_data.py", line 11, in <module>
dataset.close()
AttributeError: 'Dataset' object has no attribute 'close'

2 years ago
0 I Try To Update Scalars, But The Iteration I Pass Is Ignored, Instead The Last Iteration Is Incremented, Feels Wrong To Me.

Indeed, does what stated in the docu, however I think its a bit odd, as .report_scalar() works quite different in this case compared to the normal case and iteration is not an optional param but will be ignored anyway

2 years ago