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
ScrawnyCrocodile51
Moderator
13 Questions, 33 Answers
  Active since 05 February 2025
  Last activity 4 months ago

Reputation

0

Badges 1

33 × Eureka!
0 Votes
16 Answers
626 Views
0 Votes 16 Answers 626 Views
6 months ago
0 Votes
4 Answers
556 Views
0 Votes 4 Answers 556 Views
Hi clearml team, is there a way to overwrite working_dir when creating task from task.init() workflow? the underlying function I am triggering relying on the...
6 months ago
0 Votes
4 Answers
423 Views
0 Votes 4 Answers 423 Views
Hi clearml community, is there a way to install additional packages on top of base docker env when using Task.force_store_standalone_script() and task.execut...
4 months ago
0 Votes
3 Answers
550 Views
0 Votes 3 Answers 550 Views
Hi, i am exploring the following workflow to submit a task to remote server: task = Task.create( branch=branch, repo=repo, script=script, requirements_file=r...
6 months ago
0 Votes
1 Answers
511 Views
0 Votes 1 Answers 511 Views
Hello, I recently start to running into SSLError when using Task.init(): 2025-03-03 12:30:55,981:WARNING:urlopen:Retrying (Retry(total=239, connect=240, read...
6 months ago
0 Votes
2 Answers
494 Views
0 Votes 2 Answers 494 Views
Hello, I am trying to programmatically retrieve the artifact FILE_PATH information that get displayed in the UI. So I have a pandas dataframe uploaded as art...
5 months ago
0 Votes
9 Answers
447 Views
0 Votes 9 Answers 447 Views
5 months ago
0 Votes
3 Answers
457 Views
0 Votes 3 Answers 457 Views
Hi, I want to setup task that can "overwrite configuration on the UI". Found some reference in the doc but couldn't make it work yet. I feel it should be ver...
6 months ago
0 Votes
2 Answers
511 Views
0 Votes 2 Answers 511 Views
4 months ago
0 Votes
10 Answers
557 Views
0 Votes 10 Answers 557 Views
5 months ago
0 Votes
2 Answers
519 Views
0 Votes 2 Answers 519 Views
Hi, is there a configuration somewhere that allow me to see stuff logged from regular logging in clearml console? Or clearml's logger.report_text(print_conso...
6 months ago
0 Votes
2 Answers
477 Views
0 Votes 2 Answers 477 Views
Hi, I am wondering after a task submitted to remote server finishing running. Will the docker container / disk space (really I am more interested about the d...
6 months ago
0 Votes
5 Answers
558 Views
0 Votes 5 Answers 558 Views
Hi, is there a way to wait until a dataset finish uploading before proceed? because I want to upload dataset if it is not already exist and then process the ...
6 months ago
0 Hi Clearml Team, Is There A Way To Overwrite Working_Dir When Creating Task From Task.Init() Workflow? The Underlying Function I Am Triggering Relying On The Assumption On Running From Certain Directory.

The ultimate goal is to make sure run.py get run under project root directory because the underlying code has this assumption when writing it. Locally pycharm take care of this, but when execute remotely, need to take care of this otherwise it will complain Module Not Found .

A typical project setup I am working with look like this:

project_root/
    |--src/
        |--utilities.py
        |--foo.py
    |--runbooks/
        |--run.py

And typical import look like this, for ...

5 months ago
Show more results compactanswers