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
GracefulDog98
Moderator
4 Questions, 6 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

6 × Eureka!
0 Votes
1 Answers
532 Views
0 Votes 1 Answers 532 Views
Hi, I execute my scripts with ArgParse parameters, e.g. python3 my_experiment.py --name test --device 0 and then in my script call: from clearml import Task ...
2 years ago
0 Votes
2 Answers
718 Views
0 Votes 2 Answers 718 Views
Hi, what's the expected flow when running an agent in Docker mode, and my git repo requires SSH keys for cloning? E.g. Include an SSH key within the Docker c...
2 years ago
0 Votes
8 Answers
654 Views
0 Votes 8 Answers 654 Views
Hi, I'm attempting to use clearml-session and have an agent started on the same machine with clearml-agent daemon . The agent starts up without issues. Howev...
2 years ago
0 Votes
3 Answers
594 Views
0 Votes 3 Answers 594 Views
Hi, I'm looking at ClearML as an option to automate our training pipelines. However, from reading the documentation I'm confused if ClearML can do what we wa...
2 years ago
0 Hi, I'M Attempting To Use

clearml-agent --docker

Oh thanks. clearml-agent --help did not show the docker option, but clearml-agent daemon --help does, so I did not see it

2 years ago
0 Hi, I'M Attempting To Use

Thanks for the link. The only difference is that I execute the clearml-session with --docker flag. That seemed to be the issue in the post above?

2 years ago
0 Hi, I'M Attempting To Use

Is the clearml-agent running in docker mode ?

How do you run the clearml-agent in docker mode? You execute the clearml-session in Docker mode?

2 years ago
0 Hi, I'M Attempting To Use

In the log for clearml-agent I can see the following, where <my_container> is the container:
` docker_cmd = <my_container>:latest --network host
entry_point = interactive_session.py
working_dir = .
Using base prefix '/usr/local'
New python executable in /home/<user>/.clearml/venvs-builds/3.7/bin/python3.7
Also creating executable in /home/<user>/.clearml/venvs-builds/3.7/bin/python
Installing setuptools, pip, wheel...
done.
2021-08-04 16:50:03
Collecting pip<20.2
Using cached pi...

2 years ago
0 Hi, What'S The Expected Flow When Running An Agent In Docker Mode, And My Git Repo Requires Ssh Keys For Cloning? E.G.

The agent will map the ~/.ssh folder automatically into the docker's /root/.ssh

Thanks

2 years ago