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
ReassuredTiger98
Moderator
97 Questions, 644 Answers
  Active since 10 January 2023
  Last activity 7 months ago

Reputation

0

Badges 1

611 × Eureka!
0 Votes
10 Answers
2K Views
0 Votes 10 Answers 2K Views
Is there a reason clearml will use the demo server when there is no ~/clearml.conf ? In my opinion this really has to be changed to throw an error instead. I...
4 years ago
0 Votes
28 Answers
2K Views
0 Votes 28 Answers 2K Views
Hi everyone, I am having problems getting PyTorch Nightly (for torch 2.0 preview) to run on clearml-agent. Here is my log. Maybe someone sees what the issue ...
2 years ago
0 Votes
161 Answers
128K Views
0 Votes 161 Answers 128K Views
Hello! Since today I get AssertionError: Torch not compiled with CUDA enabled for PyTorch 1.8. Tasks that I submitted yesterday to the queue are also not wor...
4 years ago
0 Votes
26 Answers
3K Views
0 Votes 26 Answers 3K Views
Another quick question about fileservers and clearml-agent: clearml-agent seems to ignore the output destination set in the task config sdk.development.defau...
2 years ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
Hello! 🙂 I have my own minio setup and everything seems to work fine, however in clearml when I press to download an artifact with an url starting with s3:/...
3 years ago
0 Votes
31 Answers
128K Views
0 Votes 31 Answers 128K Views
I have a self-hosted clearm-server and and clearml-agent started with clearml-agent daemon --queue default --foreground I try to execute the following simple...
4 years ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
Hi everyone, could it be that ClearML does not track packages correctly, that use import names different from their package name? For example scikit-image is...
2 years ago
Show more results questions
0 Hello Clearml Community, Does Anyone Have An Idea How I Could Integrate/Manager Carla (

Another example on what I would expect:
` ### start_carla.py
def get_task():
task = Task.init(project_name="examples", task_name="start-carla", task_type="application")
# experiment is not run here. The experiment is only run when this is executed as standalone or on a clearml-agent.
return task

def run_experiment(task):
...

This task can also be run as standalone or run by a clearml-agent

if name == "main":
task = get_task()
run_experiment(task)

run_pi...

3 years ago
0 Did Someone Here Already Try The

Btw: I think Task.init is more confusing than Task.create and I would rather rename the former.

4 years ago
0 Did Someone Here Already Try The

Or alternatively I just saw that Task.create takes a requirements.txt as an argument. This would also be fine for me, however I am not sure whether I should use Task.create ?

4 years ago
0 Quick Question: Does Overriding A Task With Task.Init() Do A Proper Delete Of Debug Samples At An Fileserver Or S3 Host?

However, this seems like a pretty edge-case to me - why would you do that on a regular basis?

For me this is how I use ClearML as tensorboard replacement. To start some debug runs before adding it to a clearml-agent queue. For me this seems like the most common usage case or am I missunderstanding ClearML?

2 years ago
0 I Cannot Get Clearml-Agent With Docker Containers To Work. Clearml Uses

Maybe the problem is that I do not start my docker containers from the root user, so 1001 is a mapping inside the docker to my actual user. Could it be that on the host the owner if your .ssh files is called root ?

4 years ago
0 Hi Everyone, Is It Possible To Show The Upload Progress Of Artificats? E.G. I Use

It is only a single agent that is sending a single artifact. server-->agent is fast, but agent-->server is slow.

4 years ago
0 Quick Question: Is It Possible To See Who Aborted A Task?

What exactly do you mean by that?

3 years ago
0 Hi Everyone, Quick Question Regarding Minio And Logging:

Unfortunately, not. Quick question: Is there caching happening somewhere besides .clearml ? Does the boto3 driver create cache?

3 years ago
0 What Does

Ok, nice. Makes sense!

4 years ago
0 Hello! Since Today I Get

Or there should be an early error for trying to run conda based tasks on pip agents

4 years ago
0 Hi All. Is It Possible To Configure Agent Not To Install Requirements.Txt/Installed Packages And To Use Some Pre-Ready Environment (For Example, Virtualenv Clearml-Agent Runs On)?

Afaik, clearml-agent will use existing installed packages if they fit the requirements.txt. E.g. pytorch >= 1.7 will only install PyTorch if the environment does not already provide some version of PyTorch greater or equal to 1.7.

4 years ago
0 I Can'T Seem To Find Documentation On

Thanks! I am fascinated by what you guys offer with clearml 🙂

4 years ago
0 Hi Everyone, Quick Question Regarding Minio And Logging:

Not for the logger, I just tested it.

3 years ago
0 I Am Trying Pytorch Nightly Again With Python 3.10. Works Fine Locally, But Fails On Clearml-Agent In Docker Mode.

I installed as told on pytorch.org : pip3 install --pre torch torchvision torchaudio --index-url None

2 years ago
0 Did Someone Here Already Try The

But you can manually add them with Task.add_requirements, no?

In my opinion an ugly solution. I would have to keep track of which requirements are missing. Then I would rather just add all requirements manually.

4 years ago
0 Is There Something Like

Thank you. Seems like someone implemented a type check Error: Dataset id=8d7355655830427f9243671c8cf0a6b0 is not of type Dataset :)

3 years ago
0 Hello Clearml Community, Does Anyone Have An Idea How I Could Integrate/Manager Carla (

I am also wondering how I integrate my (preexisting) main task in the pipeline. I start my main task like this: python my_script.py --myarg "myargs" . How are the arguments captured? I am very confused, how one integrates this correctly...

3 years ago
0 I Have A Self-Hosted Clearm-Server And And Clearml-Agent Started With

Could you elaborate on that:
"So the agent failed to actually restore it from the git (files that are not added are not considered part of the git diff, this is usually git behavior)."

4 years ago
3 years ago
0 Did Someone Here Already Try The

I am still trying to solve the add_requirements + importlib combo. If I use detect_with_freeze I can not use add_requirements and if I use automatic code analysis it will not find all packages because of importlib .
For now I come to the conclusion, that keeping a requirements.txt and making clearml parse the requirements from there should be the most robust solution. Unfortunately, there seems to be no way to do this with Task.init .

4 years ago
0 It Seems Like Clearml Agent Does Not Support Arparse Subparsers, Right?

What I get for args when I print it locally is not the same as what ClearML extracts from args .

4 years ago
0 I Suddenly Get

It is server version 1.0 and everything that came with it.

4 years ago
Show more results compactanswers