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
95 Questions, 639 Answers
  Active since 10 January 2023
  Last activity 8 months ago

Reputation

0

Badges 1

606 × Eureka!
0 Votes
10 Answers
1K Views
0 Votes 10 Answers 1K Views
Hello everyone, where does the clearml-services agent come from? Are experiments executed directly on the server? Or did I start it somehow and forgot it? If...
3 years ago
0 Votes
30 Answers
1K Views
0 Votes 30 Answers 1K Views
I suddenly get Error 100 : General data error (TransportError(503, 'search_phase_execution_exception')) when trying to access Results --> Scalars. Any idea w...
3 years ago
0 Votes
24 Answers
2K Views
0 Votes 24 Answers 2K Views
Hi everyone, is it possible to not create a copy of a dataset when adding to clearml? My data is already in a directory on the clearml-server machine and I d...
2 years ago
0 Votes
161 Answers
22K Views
0 Votes 161 Answers 22K 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...
3 years ago
0 Votes
31 Answers
21K Views
0 Votes 31 Answers 21K 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...
3 years ago
Show more results questions
0 What Does

I created an issue on using conda as package manager: https://github.com/allegroai/clearml-agent/issues/44

3 years ago
0 Another Question: How Can I Make Clearml-Agent Use Pre-Installed Version From The Nvidia/Pytorch (

Unfortunately, I do not know that. Must be before October 2021 at least. I know I asked here how to use the preinstalled version and AgitatedDove14 helped me to get it work. But I cannot find the old thread 😕

2 years ago
0 Hi Everyone, I Have A Quick Question: When I Use

These are the errors I get if I use file_servers without a bucket ( s3://my_minio_instance:9000 )

2022-11-16 17:13:28,852 - clearml.storage - ERROR - Failed creating storage object Reason: Missing key and secret for S3 storage access ( ) 2022-11-16 17:13:28,853 - clearml.metrics - WARNING - Failed uploading to ('NoneType' object has no attribute 'upload_from_stream') 2022-11-16 17:13:28,854 - clearml.storage - ERROR - Failed creating storage object ` Reason: Missing key...

2 years ago
0 Hi Everyone, I Have A Quick Question: When I Use

Yes. What do you mean by unconnected?

2 years ago
0 Hello! Since Today I Get

btw: I also tested the clearml-agent running on a different machine and with python 3.8 and I get the same problems.

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

Can you tell me how I create tasks correctly? The PipelineController.add_step takes the task-id/task-name, but I would rather just define a function that returns the task directly, since the base-task may not be already on the clearml-server.

3 years ago
0 Anyone Here With Any Idea Why My Service Tasks Get Aborted When Going To Sleep?

@<1523701435869433856:profile|SmugDolphin23> Good catch. I have a good but unsatisfying message for you guys: I restarted the whole machine (server and agent) and now it works fine ...

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

So with pipeline decorators can I implement this logic?

3 years ago
0 Did Someone Here Already Try The

AgitatedDove14 Yes, you understood correctly. But Task.create is used by Task.init something like this, right?
` def init(project_name, task_name):
if not Task.exists_already(project_name, task_name):
task = Task.create(...)
else:
task = load_existing_task()

return task `
3 years ago
0 Hey Guys

Thank you, I will look into it :)

one year ago
2 years ago
0 Another Question: How Can I Make Clearml-Agent Use Pre-Installed Version From The Nvidia/Pytorch (

I am going to try it again and send you the relevant part of the logs in a minute. Maybe I am interpreting something wrong.

2 years ago
0 Is There A Reason Why All Clearml.Task Methods Regarding Requirements (E.G. Pip Requirements) Are Class Methods? Are Requirements Not Stored In A Task?

Maybe related question: Will there be some documentation about clearml internals with the new documentation? ClearML seems to store stuff that's relevant to script execution outside of clearml.Task if I am not mistaken. I would like to learn a little bit about what the code structure / internal mechanism is.

3 years ago
0 Also Is There A Way To Just Run A Dockerfile? So For Example My Project Includes A

Could you guide me to the documentation for using the docker file? I am not able to find it. I only found task.set_base_docker which I am not sure what it does.

3 years ago
0 Did Someone Here Already Try The

Perfect, works! 🙂

3 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 ?

3 years ago
0 Currently, To Provide Ssh Access To The Docker Images For A Task,

Yes, but this seems pretty reasonable to assume imo.

3 years ago
0 Currently, To Provide Ssh Access To The Docker Images For A Task,

Perfect, thanks! Only issue that is left, is that it seems like .ssh is used even when I provideSSH_AUTH_SOCK. I created an issue here: https://github.com/allegroai/clearml-agent/issues/45

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?

2 years ago
0 Has Anyone Found A Workaround For The Bug?

I have a related question: I read here that 4GB is a http limitation and ClearML will not chunk single files. I take from that, that ClearML did not want/there was no need to implement an own solution so far. But what about models that are larger than 4GB?

2 years ago
0 Is There A Reason Why All Clearml.Task Methods Regarding Requirements (E.G. Pip Requirements) Are Class Methods? Are Requirements Not Stored In A Task?

Then I could also do this:
# My custom very special use case task = Task() task = task.load_statedict(await Task.load_or_create(task_name)) await task.synchronize() await run_code_analysis() task.add_requirement("myreq") await task.synchronize()

3 years ago
0 Hello! Since Today I Get

This is the file which installs the GPU version

3 years ago
0 Hi Everyone, Is There An Option To Not Mount Cache Into The Docker Of An Clearml-Agent? E.G. Datasets Are Downloaded Into The Docker And Gone When The Docker Container Is Removed By The Agent.

Yes, I do not want to rely on the clearml-agent. Afaik the clearml-sdk in the container does the downloading and since a host directory is mounted, it is mirrored there. If it was possible to not mount the host directory, everything would be contained 🙂

one year ago
Show more results compactanswers