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 6 months ago

Reputation

0

Badges 1

33 × Eureka!
0 Votes
1 Answers
727 Views
0 Votes 1 Answers 727 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...
8 months ago
0 Votes
4 Answers
808 Views
0 Votes 4 Answers 808 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...
8 months ago
0 Votes
10 Answers
835 Views
0 Votes 10 Answers 835 Views
8 months ago
0 Votes
2 Answers
721 Views
0 Votes 2 Answers 721 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...
9 months ago
0 Votes
5 Answers
815 Views
0 Votes 5 Answers 815 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 ...
9 months ago
0 Votes
9 Answers
652 Views
0 Votes 9 Answers 652 Views
8 months ago
0 Votes
2 Answers
778 Views
0 Votes 2 Answers 778 Views
7 months ago
0 Votes
4 Answers
599 Views
0 Votes 4 Answers 599 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...
7 months ago
0 Votes
3 Answers
741 Views
0 Votes 3 Answers 741 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...
9 months ago
0 Votes
2 Answers
723 Views
0 Votes 2 Answers 723 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...
8 months ago
0 Votes
2 Answers
685 Views
0 Votes 2 Answers 685 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...
9 months ago
0 Votes
16 Answers
897 Views
0 Votes 16 Answers 897 Views
8 months ago
0 Votes
3 Answers
654 Views
0 Votes 3 Answers 654 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...
8 months ago
0 Hi, I Am Exploring The Following Workflow To Submit A Task To Remote Server:

Sure, essentially my local python project organized using "src layout", look like this:

foo/
    |--src/
        |--module.py
    |--pyproject.toml
    |--clearml_tasks/
        |--task1.py

in the project, it would use absolute import like from foo import module , and I would install foo project in a editable mode during setup.

When I trying to create clearml task and send it to remote server using above way (leverage requirements.txt to configure library dependencies, and pro...

9 months ago
0 <no title>
PROJECT_NAME = "test"
TASK_NAME = "test_connect"
QUEUE_NAME = "default"
task = Task.init(project_name=PROJECT_NAME, task_name=TASK_NAME)

config = {
    "name": "foo",
    "arg1": "bar",
}
task.connect(config)

task.execute_remotely(queue_name=QUEUE_NAME)
# ------------- end of setup -------------

def dummy_op(config):
    pprint(config)

    return config


dummy_op(config)

Sreenshot also provided to show what "edit" button only appear in user property not hyperparamter
![image](...

8 months ago
0 <no title>

Thanks John! This is exactly it! need to reset the task first then the edit feature will show up

8 months ago
Show more results compactanswers