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
LazyTurkey38
Moderator
17 Questions, 56 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

54 × Eureka!
0 Votes
3 Answers
915 Views
0 Votes 3 Answers 915 Views
When scheduling a job for remote execution, is it possible to decide whether to use the repo’s formal requirements sheet vs the currently installed venv libr...
3 years ago
0 Votes
30 Answers
964 Views
0 Votes 30 Answers 964 Views
Is it possible to give the agent access to install private pip packages (needs to be installed from the repo)? ERROR: Could not find a version that satisfies...
3 years ago
0 Votes
9 Answers
945 Views
0 Votes 9 Answers 945 Views
There is some specificity with the way we setup our environment at my company that prevents me from using the full features of clearml-agent and forces me to...
3 years ago
0 Votes
1 Answers
948 Views
0 Votes 1 Answers 948 Views
Is there an example of how to use standalone mode? As in, if the packages, venv and git repo will be provided by the user, will they still get tracked in the...
3 years ago
0 Votes
1 Answers
938 Views
0 Votes 1 Answers 938 Views
Also, since this Slack workspace only allows searching up to 10,000 messages, useful information will be lost overtime. It’s been very useful for me personal...
3 years ago
0 Votes
13 Answers
950 Views
0 Votes 13 Answers 950 Views
Another issue is the agent uses Python 2 for some reason even though locally I’m using python 3 and the agent is supposed to use a python 3 venv. $ /home/smj...
3 years ago
0 Votes
3 Answers
933 Views
0 Votes 3 Answers 933 Views
Is it possible to interact with the job queues directly from the python SDK?
3 years ago
0 Votes
2 Answers
929 Views
0 Votes 2 Answers 929 Views
There’s a typo in this repo name: https://github.com/allegroai/nvidia-cleamrl-integration
3 years ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
If we’re using the same git repo over and over for almost all jobs, is it possible to have the agents keep a local version and only download the diff of the ...
3 years ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
I’m running the clearml agent in standalone mode but it still installs the virtual env, is that the expected behavior? clearml-agent daemon --queue venv_queu...
3 years ago
0 Votes
17 Answers
1K Views
0 Votes 17 Answers 1K Views
I’m getting these errors when using agent in docker mode -bash: /etc/apt/apt.conf.d/docker-clean: Permission denied chown: cannot access '/root/.cache/pip': ...
3 years ago
0 Votes
4 Answers
927 Views
0 Votes 4 Answers 927 Views
I see that in the default setup, this command is part of the docker bash setup script: chown -R root /root/.cache/pip Does the agent assume it will be runnin...
3 years ago
0 Votes
7 Answers
943 Views
0 Votes 7 Answers 943 Views
Hey all! Great job on ClearML by the way 🙂 I’m currently exploring whether it could be a fit for me and my team and I have a few questions: If I want to sen...
3 years ago
0 Votes
2 Answers
915 Views
0 Votes 2 Answers 915 Views
Do you have some documentation on what https://app.community.clear.ml/applications are useful for and how to use them? Are they going to be available for sel...
3 years ago
0 Votes
17 Answers
998 Views
0 Votes 17 Answers 998 Views
I’m trying to use task.execute_remotely but the repo I’m trying to use is not being identified correctly. I have it setup to git pull from a master repo and ...
3 years ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
Related to my above thread, I think there is some more customization that needs to be supported to use docker mode properly for different use-cases. It seems...
3 years ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
Can someone please explain the difference between clearml-agent-services (that comes with the official docker compose) and clearml-agent deamon?
3 years ago
0 Hey All! Great Job On Clearml By The Way

You’re saying there’s a built-in scheduler? SuccessfulKoala55
If so where can I find it?

3 years ago
0 There Is Some Specificity With The Way We Setup Our Environment At My Company That Prevents Me From Using The Full Features Of

For your second question, those are generated using custom tooling, it relies on the build system to be setup which is guaranteed by the docker image used. So I don’t think this is a case of supporting a specific env setup or build tool but just allowing custom script for env setup step / building code.
WDYT?

3 years ago
0 Hey All! Great Job On Clearml By The Way

I don’t mean a serving endpoint, just the equivalent of “cloning an experiment” and running it on a different (larger) dataset.

3 years ago
0 Another Issue Is The Agent Uses Python 2 For Some Reason Even Though Locally I’M Using Python 3 And The Agent Is Supposed To Use A Python 3 Venv.

$ python --version Python 3.6.8 $ python repo/toy_workflow.py --logtostderr --logtoclearml --clearml_queue=ada_manual_jobs 2021-08-07 04:04:16,844 - clearml - WARNING - Switching to remote execution, output log page https://...
On the webpage logs I see this:
2021-08-07 04:04:12 ClearML Task: created new task id=f1092bcbe30249639122a49a9b3f9145 ClearML results page: `
2021-08-07 04:04:14
ClearML Monitor: GPU monitoring failed getting GPU reading, switching off GPU monitoring
2021-08...

3 years ago
0 Another Issue Is The Agent Uses Python 2 For Some Reason Even Though Locally I’M Using Python 3 And The Agent Is Supposed To Use A Python 3 Venv.

Issue seems fixed now, thanks! Is the fact that clearml-agent needs to be installed from system python mentioned anywhere in the docs, if not I suggest it gets added.

Thank you so much for helping.

3 years ago
0 Running The Docker Agent With Own Image The Right Way?

EagerOtter28 I’m running into a similar situation as you.

I think you could use --standalone-mode and do the cloning yourself in the docker bash script that you can configure in the agent config.

3 years ago
0 There Is Some Specificity With The Way We Setup Our Environment At My Company That Prevents Me From Using The Full Features Of

That won’t work 😕
The docker shell script runs too early in the process.
I want to inject a bash command after the repo has been clone (and maybe even after the venv has been installed).

3 years ago
0 There Is Some Specificity With The Way We Setup Our Environment At My Company That Prevents Me From Using The Full Features Of

So when the repo is cloned and venv is created and activated I want to executed this from the repo: tools/setup_dependencies.sh

3 years ago
0 I’M Trying To Use

I know this is not the default behavior so I’d be happy with having the option to override the repo when I call execute_remotely

3 years ago
0 I’M Trying To Use

This is exactly what I was looking for. I thought once you call execute_remotely the task is sent and it’s too late to change anything.

3 years ago
0 I’M Trying To Use

Fixed it by adding this code block. Makes sense.
if clone: task = Task.clone(self) else: task = self # check if the server supports enqueueing aborted/stopped Tasks if Session.check_min_api_server_version('2.13'): self.mark_stopped(force=True) else: self.reset()

3 years ago
0 I’M Trying To Use

AgitatedDove14 wouldn’t the above command task.execute_remotely(queue_name=None, clone=False, exit_process=False) fail because
clone==False and exit_process==False is not supported. Task enqueuing itself must exit the process afterwards.I thought it worked earlier 😮

3 years ago
0 I See That In The Default Setup, This Command Is Part Of The Docker Bash Setup Script:

I do expect it to pip install though which doesn’t root access I think

3 years ago
0 I See That In The Default Setup, This Command Is Part Of The Docker Bash Setup Script:

My docker image will have all required apt packages, so no need.

3 years ago
0 I’M Trying To Use

I already have that set to true and want that behavior. The issue is on the “committed” change set. When I push code to github I push to my fork and pull from the main/master repo (all changes go through PRs from fork to main).

Now when I use execute_remotely , whatever code does the git discovery, considers whatever repo I pull from the repo to use. But these changes haven’t necessarily been merged into main. The correct behavior would be to use the forked repo.

3 years ago
0 Is It Possible To Interact With The Job Queues Directly From The Python Sdk?

Being able to create and remove queues as well as list their contents.

3 years ago
0 Is It Possible To Give The Agent Access To Install Private Pip Packages (Needs To Be Installed From The Repo)?

Is there a way to make it use ssh+git instead of git+git ? Maybe add a force_ssh_pip_install to the agent config?

3 years ago
0 Is It Possible To Give The Agent Access To Install Private Pip Packages (Needs To Be Installed From The Repo)?

It doesn’t install it automatically, I think I need to specify it somewhere, see the above error. Or am I misunderstanding?

3 years ago
0 Is It Possible To Give The Agent Access To Install Private Pip Packages (Needs To Be Installed From The Repo)?

The private_package can be installed by doing pip install git+ssh://git@github.com/user/private_package.git but the agent is trying to do pip install private_package which won’t work.

3 years ago
0 Is It Possible To Give The Agent Access To Install Private Pip Packages (Needs To Be Installed From The Repo)?

If venv works inside containers that’s even better. We actually have custom containers that build on master merges. I wonder if using our own containers which should have most the deps will work better than a simpler container.

3 years ago
0 Is It Possible To Give The Agent Access To Install Private Pip Packages (Needs To Be Installed From The Repo)?

... more-itertools==8.6.0 -e git+git@github.com:user/private_package.git@57f382f51d124299788544b3e7afa11c4cba2d1f#egg=private_package msgpack==1.0.2 msgpack-numpy==0.4.7.1 ...

3 years ago
Show more results compactanswers