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
PricklyRaven28
Moderator
18 Questions, 109 Answers
  Active since 10 January 2023
  Last activity 4 months ago

Reputation

0

Badges 1

107 × Eureka!
0 Votes
2 Answers
440 Views
0 Votes 2 Answers 440 Views
Hi
Hi πŸ™‚ I have a git folder that i'm running with a local agent in services mode (for slack alerts), but i don't want the agent to clone the repo (for security...
7 months ago
0 Votes
12 Answers
1K Views
0 Votes 12 Answers 1K Views
Hey, Is there a way to temporarily turn off clearml logging? I’m using pipeline and when developing i don’t wand them to be added to the UI and spam it. in w...
2 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
(using a local clearml server)
2 years ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
Also it’s weird to me that when running pipelines in debugging_pipeline that it will even show in the UI
2 years ago
0 Votes
30 Answers
1K Views
0 Votes 30 Answers 1K Views
If possible, i would like all together prevent the fileserver and write everything to S3 (without needing every user to change their config)
2 years ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
i think there is some bug with clearml==1.7.1. I’m working with pipelines and after updating to 1.7.1 all the kwargs are passed as None to the steps, when do...
2 years ago
0 Votes
4 Answers
388 Views
0 Votes 4 Answers 388 Views
Hi
Hi πŸ™‚ I'm working on slack alerts based on the open source example, we added slack mentions like this def get_username_tag(self, task:Task): res = Task._get_...
7 months ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Hi
Hi πŸ™‚ I'm trying to figure out if i have a way to report pipeline-step artifact paths in the main pipeline task. (So i don't need to dig into steps to find t...
2 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Hey
Hey πŸ™‚ I'm using pipelines with decorators and trying to set a custom docker image to the pipeline itself which doesn't seem to accept a "docker=" argument l...
one year ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
There is a problem starting from clearml 1.7.0 with python-fire from clearml import Task import fire def check(first): print(first) if __name__ == '__main__'...
2 years ago
0 Votes
18 Answers
1K Views
0 Votes 18 Answers 1K Views
https://clearml.slack.com/archives/CTK20V944/p1713357955958089 Any idea about this?
one year ago
0 Votes
6 Answers
1K Views
0 Votes 6 Answers 1K Views
Hey
Hey πŸ™‚ Working with ClearML pipelines, is there a way to change default directory artifacts to archive with tar instead of zip ? Speaking of the default retu...
2 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
Hey πŸ™‚ I’m also using the AWS autoscaler with pipelines, and i can’t seem to make the intermediate steps output their results to S3 instead of the fileserver...
2 years ago
0 Votes
1 Answers
808 Views
0 Votes 1 Answers 808 Views
Hi
Hi πŸ™‚ How can i disable requirements install when an agent is starting a task? we use docker, so everything should already be installed
one year ago
0 Votes
62 Answers
105K Views
0 Votes 62 Answers 105K Views
Hey, We are using clearml 1.9.0 with transformers 4.25.1… and we started getting errors that do not reproduce in earlier versions (only works in 1.7.2 all 1....
2 years ago
0 Votes
4 Answers
425 Views
0 Votes 4 Answers 425 Views
Hi
Hi πŸ™‚ I have an AWS autoscaler (from script) running with EC2 instances, is there a way to configure a queue for a multi-gpu instance where each task gets 1 ...
7 months ago
0 Votes
0 Answers
995 Views
0 Votes 0 Answers 995 Views
Hi πŸ™‚ we have a clearml pipeline that has a step that runs a multi gpu training (with hugginface), we need to invoke it with accelerate launch so we use subp...
one year ago
0 Votes
30 Answers
1K Views
0 Votes 30 Answers 1K Views
Hey everyone πŸ™‚ I’m trying to use a ClearML on prem for experiment visualization only, having some issues with multi GPU. It seems that clearml is creating a...
3 years ago
0 Hey, We Are Using Clearml 1.9.0 With Transformers 4.25.1… And We Started Getting Errors That Do Not Reproduce In Earlier Versions (Only Works In 1.7.2 All 1.8.X Don’T Work):

I'm getting really weird behavior now, the task seems to report correctly with the patch... but the step doesn't say "uploading" when finished... there is a "return" artifact but it doesn't exist on S3 (our file server configuration)

2 years ago
0 Hey Everyone

i’ll check if it’s already initialized

3 years ago
0 Https://Clearml.Slack.Com/Archives/Ctk20V944/P1713357955958089

If nothing specific comes to mind i can try to create some reproducible demo code (after holiday vacation)

one year ago
0 Https://Clearml.Slack.Com/Archives/Ctk20V944/P1713357955958089

It's with decorators.

Interesting, i wasn't aware of this python module for executing accelerate. I'll try to use that.

We used subprocess for it, but for some reason only when invoked in the pipeline the process freezes and doesn't close the main accelerate process. Works fine outside of clearml, any Idea?

one year ago
0 Https://Clearml.Slack.Com/Archives/Ctk20V944/P1713357955958089

We tried both subprocess.run and popen

one year ago
0 Hey Everyone

unrelated, i’m getting a crash, but seems related to fastai and not clearml

3 years ago
0 Https://Clearml.Slack.Com/Archives/Ctk20V944/P1713357955958089

How does this work in the context of a pipeline? One of the steps is a multi gpu training that requires accelerate.

one year ago
0 Hey, We Are Using Clearml 1.9.0 With Transformers 4.25.1… And We Started Getting Errors That Do Not Reproduce In Earlier Versions (Only Works In 1.7.2 All 1.8.X Don’T Work):

I tried to work on a reproducible script but then i get errors that my clearml task is already initialized (also doesn’t happen on 1.7.2)

2 years ago
0 Hey Everyone

and use that instead of the -m fastai.launch part ofcourse

3 years ago
0 Hi

I Mean that for example a machine with 4 gpus, I would want each task to get 1 gpu

7 months ago
0 Hi

ok i'll check it out πŸ™‚

7 months ago
0 Hey, We Are Using Clearml 1.9.0 With Transformers 4.25.1… And We Started Getting Errors That Do Not Reproduce In Earlier Versions (Only Works In 1.7.2 All 1.8.X Don’T Work):

Nothing that i think is relevant, I'm using latest from master. It might be a new bug on their side, wasn't sure.

2 years ago
0 Hi

@<1523701070390366208:profile|CostlyOstrich36>

Sorry for the (very) late response.

We use the open source version which isn't part of the ClearML setup.

Anyway, we are using a standalone script but we have it source controlled in git... clearml picks this up and tries to clone the entire repo in the agent. i want to prevent this an just use the script.

4 months ago
0 Https://Clearml.Slack.Com/Archives/Ctk20V944/P1713357955958089

@<1523701205467926528:profile|AgitatedDove14>
Only got some time to work on it now, i created a small reproducible example.
I also tried to use your suggestion with import accelerate, it also had issues.

overall, when using debug_pipeline it works ok, but both methods don't work without it, i think it has something to do with wrapping accelerate.

Problem with launching through python module (your suggestion), the argparse breaks.
Problem with launching using a new process - rank0 proce...

11 months ago
0 Https://Clearml.Slack.Com/Archives/Ctk20V944/P1713357955958089

to make it very reproducible, i created a docker file for it, so make sure to run build_docker.sh and then run.sh

11 months ago
0 Https://Clearml.Slack.Com/Archives/Ctk20V944/P1713357955958089

Glad to hear you were able to reproduce it! Waiting for your reply πŸ™

11 months ago
0 Https://Clearml.Slack.Com/Archives/Ctk20V944/P1713357955958089

@<1523701435869433856:profile|SmugDolphin23> @<1523701205467926528:profile|AgitatedDove14>
Any updates? πŸ™‚

11 months ago
Show more results compactanswers