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
TightElk12
Moderator
9 Questions, 26 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

25 × Eureka!
0 Votes
8 Answers
508 Views
0 Votes 8 Answers 508 Views
I would like to understand the limitations of Task.current_task() and in which cases it should not be called in order to avoid catching another running in pa...
2 years ago
0 Votes
6 Answers
615 Views
0 Votes 6 Answers 615 Views
I'm looking into a way to hint git repository location as I'm using a launcher to start python script. Currently the dashboard shows some unrelated uncommite...
2 years ago
0 Votes
11 Answers
510 Views
0 Votes 11 Answers 510 Views
Hello, if I set export CLEARML_FILES_HOST=" https://files.community.clear.ml " and execute a script that should store models, should I expect to see them dow...
3 years ago
0 Votes
4 Answers
505 Views
0 Votes 4 Answers 505 Views
I wonder if there is a way to setup Task such that it would raise an error if the env where execution happens is not configured to track things on our custom...
3 years ago
0 Votes
7 Answers
513 Views
0 Votes 7 Answers 513 Views
Can we somehow add a column "Duration" to the list of Experiments ?
3 years ago
0 Votes
10 Answers
517 Views
0 Votes 10 Answers 517 Views
Another question, is it possible to run a single experiment which is composed of multiple steps executed as sequential sub-processes where the current task i...
2 years ago
0 Votes
1 Answers
530 Views
0 Votes 1 Answers 530 Views
Hi, i'd like to have more info on how to create a sub-project : https://clear.ml/docs/latest/docs/fundamentals/task#projects-and-sub-projects
2 years ago
0 Votes
1 Answers
507 Views
0 Votes 1 Answers 507 Views
I was wondering if we can see full launch cmd somewhere on Trains UI ? For example, I run my code as python -m torch.distributed.launch --nproc 2 --use_env -...
3 years ago
0 Votes
3 Answers
557 Views
0 Votes 3 Answers 557 Views
I wonder what is the best practice today to fetch a model from another task by models name or id ? Currently, I see this can be done as from clearml import T...
3 years ago
0 Can We Somehow Add A Column "Duration" To The List Of Experiments ?

Well, I would like "quickly" to compare durations of several experiments ...

3 years ago
2 years ago
0 Hello, If I Set

Hi AgitatedDove14 , yes, exactly

3 years ago
0 Hello, If I Set

Thanks! Yes, this could be great !
And if you could also update the docs with all env vars possible to set up it would awesome!

3 years ago
0 Another Question, Is It Possible To Run A Single Experiment Which Is Composed Of Multiple Steps Executed As Sequential Sub-Processes Where The Current Task Is Fetched As

Let me check that, thanks !
I was also started to think about closing the task and call init. Let me detail again the use-case if it was unclear:
parent process |-- Task.init(...) |-- step 1 sub-process | |-- Task.init(...) | |-- task.connect |-- step 2 sub-process | |-- Task.init(...) | |-- task.connect |- end

2 years ago
0 I Would Like To Understand The Limitations Of

Hi AgitatedDove14 thanks for the answer.
I'm using python doit: https://pydoit.org/ to schedule multiple steps. Basically, it does subprocess.Popen for each step. In each step (=subprocess) I get the task using Task.current_task() .
t0: doit -> parent proc creates new Task t1: |_ child proc: current_task() and do smth t2: |_ child proc: current_task() and do smth
My question is what happens if I launch in parallel multiple doit commands that create new Tasks. I would l...

2 years ago
2 years ago
0 Can We Somehow Add A Column "Duration" To The List Of Experiments ?

Updated column also can contain some more recent values and not the time when experiment ended/failed etc ...

3 years ago
0 Hello, If I Set

Yes, that make sense !

Could you please open a GitHub issue, so we remember to update the feature ?

sure !

3 years ago
2 years ago
0 I Wonder If There Is A Way To Setup

Hi AgitatedDove14
if there is no clearml.conf on the system, then the script with Task.init("a", "b") will create project "a" and task "b" on demoapp server.
User can also do the following:
Task.set_credentials(...) Task.init("a", "b")and now it will go to provided api_host etc, still without clearml.conf file.
Now, I would like to raise an issue if api_host is the default one (the one when without clearml.conf file) and thus tracking is going to public demoapp server.

But actua...

3 years ago
0 I Would Like To Understand The Limitations Of

Could you please explain in 2-3 words how current task fetches the good Task ?

2 years ago
2 years ago
0 Can We Somehow Add A Column "Duration" To The List Of Experiments ?

As they didn't all started at the same time, I have to do math to subtract the duration 🙂

3 years ago
0 I Wonder If There Is A Way To Setup

Thanks AgitatedDove14 ! This is what was I was looking !

3 years ago
0 I'M Looking Into A Way To Hint Git Repository Location As I'M Using A Launcher To Start Python Script. Currently The Dashboard Shows Some Unrelated Uncommited Changes From

It's code is like that
` (env-name) /code# cat /opt/conda/envs/env-name/bin/doit `` #!/opt/conda/envs/env-name/bin/python

-- coding: utf-8 --

import re
import sys

from doit.main import main

if name == 'main':
sys.argv[0] = re.sub(r'(-script.pyw?|.exe)?$', '', sys.argv[0])
sys.exit(main()) `

2 years ago
0 I'M Looking Into A Way To Hint Git Repository Location As I'M Using A Launcher To Start Python Script. Currently The Dashboard Shows Some Unrelated Uncommited Changes From

If using the launcher as is -> Can not detect the repository:
launcher argsbut if execute the launcher as a module -> repository is detected
python -m launcher argsIt would be nice to avoid writing "python -m" everytime...

2 years ago
0 I'M Looking Into A Way To Hint Git Repository Location As I'M Using A Launcher To Start Python Script. Currently The Dashboard Shows Some Unrelated Uncommited Changes From

Patching sys.argv[0] = __file__ where __file__ is the file where Task.init happens helps with git repo discovery.

2 years ago
0 Another Question, Is It Possible To Run A Single Experiment Which Is Composed Of Multiple Steps Executed As Sequential Sub-Processes Where The Current Task Is Fetched As

actually, i'm using subprocess. Popen and step X is another python script file executed from a single main parent process.

2 years ago