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

Reputation

0

Badges 1

29 × Eureka!
0 Votes
3 Answers
993 Views
0 Votes 3 Answers 993 Views
Hey everyone, is it possible to use the task_filter argument of Task.query_tasks to filter based on the value of a particular parameter?
one year ago
0 Votes
2 Answers
941 Views
0 Votes 2 Answers 941 Views
Hey everyone, please could I have a volunteer to help me with this https://github.com/allegroai/clearml-server/pull/114 ? We need someone on an Intel MacOS t...
2 years ago
0 Votes
3 Answers
995 Views
0 Votes 3 Answers 995 Views
Hi! I have a few tasks that are not transitioning from Running to Completed , despite that python process terminating. Are there any known reasons for this?
one year ago
0 Votes
4 Answers
973 Views
0 Votes 4 Answers 973 Views
Does Task.init() just return the current task when run on a task that has been launched remotely by Task.execute_remotely ? It looks like that is the behavio...
2 years ago
0 Votes
12 Answers
944 Views
0 Votes 12 Answers 944 Views
Is it possible to change the files_server URL displayed when generating new credentials in the GUI? For example, to a GCP bucket address.
2 years ago
0 Votes
9 Answers
949 Views
0 Votes 9 Answers 949 Views
Hi again, are there any examples of one script being used to execute multiple remote tasks? If I could use Task.execute_remotely with clone=False and exit_pr...
one year ago
0 Votes
4 Answers
993 Views
0 Votes 4 Answers 993 Views
one year ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Hey everyone, got a quick questions about backing up a ClearML server. Should the server be stopped with docker-compose down before archiving /opt/clearml/da...
2 years ago
0 Votes
12 Answers
1K Views
0 Votes 12 Answers 1K Views
Hi, I've got a quick question about Task.connect . I'm trying to connect a dictionary which contains a few thousand hashes and it works fine locally but take...
2 years ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
Hey everyone, should a self-hosted ClearML server be stopped before backing up? Are there any risks to backing up (i.e. tar ring /opt/clearml/data ) when the...
one year ago
0 Hi, I'Ve Got A Quick Question About

Yeah it's strange isn't it!

2 years ago
0 Hey Everyone, Is It Possible To Use The

Amazing, task.__dict__ is just what I was looking for!

one year ago
0 Hi Everyone, I Tried To Implement Ssl Support With Nginx And Everything Seems To Work So Far, But I Get "The Following Artifacts Could Not Be Deleted". How Can I Debug This? I Do Not See Any Error In The Logs. I Can Safe Artifacts And Retrieve Them (Howev

Ah apologies for getting the wrong end of the stick a bit!

Not sure if it helps you or not, but when the link to an artifact didn't work for me it was because the URL being used was internal to the server (I had an agent that had access to internal endpoints). In my case setting the agent fileserver url to the public domain solved my issue.

2 years ago
0 Hi Again, Are There Any Examples Of One Script Being Used To Execute Multiple Remote Tasks? If I Could Use

Will do! What’s the process for adding task.reset to the public API, just adding it to the docs?

one year ago
0 Hi Everyone, I Tried To Implement Ssl Support With Nginx And Everything Seems To Work So Far, But I Get "The Following Artifacts Could Not Be Deleted". How Can I Debug This? I Do Not See Any Error In The Logs. I Can Safe Artifacts And Retrieve Them (Howev

From my limited understanding of it, I think it's the client that does the saving and communicating to the fileserver not the server, whereas deletion is done by the GUI/server which I guess could have different permissions somehow?

2 years ago
0 Hi! I Have A Few Tasks That Are Not Transitioning From

Tasks are running locally and recording to our self deployed server, no output in my task log that indicates an issue. This is all of the console output:

2023-01-09 12:53:22 ClearML Task: created new task id=7f94e231d8a04a8c9592026dea89463a ClearML results page: 2023-01-09 12:53:24 ClearML Monitor: GPU monitoring failed getting GPU reading, switching off GPU monitoringAre there any logs in the server I can check? The server is running v1.3.1 and the issue I’m see is with version 1....

one year ago
0 Hi! I Have A Few Tasks That Are Not Transitioning From

Updating the server has solved the issue πŸ‘

one year ago
0 Hi Again

I think a note about the fileserver should be added to the https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server_security page!

2 years ago
one year ago
0 Does

Thanks for confirming, I can make a PR if that would be helpful?

2 years ago
0 Hi Again

Yep can do πŸ‘

2 years ago
0 Hi, I'Ve Got A Quick Question About

That said, maybe the connect dict is not the best solution for thousand key dictionary

Seems like it isn't haha!
What is the difference with connect_configuration ? The nice thing about it not being an artifact is that we can use the gui to see which hashes have changed (which admittedly when there are a few thousand is tricky anyway)

2 years ago
0 Hi, I'Ve Got A Quick Question About

I realise I made a mistake and hadn't actually used connect_configuration !

I think the issue is the bandwidth yeah, for example when I doubled the number of CPUs (which doubles the allowed egress) the time taken to upload halved. It is puzzling because as you say it's not that much to upload.

For now I've whittled down the number of entries to a more select but useful few and that has solved the issue. If it crops up again I will try connect_configuration properly.

Thanks for ...

2 years ago
0 Is It Possible To Change The

And regarding the first question - Edit your

~/clearml.conf

That would change what file server is used by me locally or an agent yes, but I want to change what is shown by the GUI so that would need to be a setting on the server itself?

2 years ago
0 Is It Possible To Change The

When you generate new credentials in the GUI, it comes up with a section to copy and paste into either clearml-init or ~/clearml.conf . I want the files server displayed here to be a GCP address

2 years ago
0 Hey Everyone, Please Could I Have A Volunteer To Help Me With This

Yes please that would be great πŸ‘

2 years ago
0 Hi! I Am Running A Code From Repository, Which Is Cloned By The Following Command:

I ran into something similar, for me I'd actually cloned the repository using the address without the git@ (something made it work). ClearML read it from the remote repository URL and used it. When I updated the URL of the remote repository in my git client it then worked.

2 years ago
0 Hi, I'Ve Got A Quick Question About

Maybe it was the load on the server? meaning dealing with multiple requests at the same time delayed the requests?!

Possibly but I think the server was fine as I could run the same task locally and it took a few seconds (rather than 75) to upload. The egress limit on the agent was 32 Gbps which seems much larger than what I though I was sending but I don't have a good idea of what that limit actually means in practice!

2 years ago
0 Is It Possible To Change The

And what is the difference in behaviour between
Task.init(..., output_uri=True) and Task.init(..., output_uri=None) ?

2 years ago
0 Is It Possible To Change The

CostlyOstrich36 thanks for getting back to me!

yes!

That's great! Please can you let me know how to do it/how to set the default files server?

However it would be advisable to also add the following argument to your code :

That's useful thanks, I didn't know about this kwarg

2 years ago
0 Hi! I Am Running A Code From Repository, Which Is Cloned By The Following Command:

I've tracked down our messages when this occurred and I think we had a different error to you, sorry.

In case it helps our problem was when the below command was run in the repository:
$ git remote -vReturned the https address rather than the ssh address.
Then clearml tried to convert this to the ssh address, which looked like
<org>/<repo>/rather than
:<org>/<repo>.git(Which is possible a separate bug?)

2 years ago
0 Hi Again, Are There Any Examples Of One Script Being Used To Execute Multiple Remote Tasks? If I Could Use

Another option would be to do
task.close() task.reset()And then execute an agent to pick up that task, but I don’t think reset is part of the public API. Is this risky?

one year ago
0 Hi Again, Are There Any Examples Of One Script Being Used To Execute Multiple Remote Tasks? If I Could Use

Hi CostlyOstrich36 , thanks for getting back to me!

I want to launch multiple tasks from one python process to be run by multiple agents simultaneously.

My current process for launching one task remotely is to use task.execute_remotely , and then I separately spin up a VM and execute a ClearML agent on that VM with the task ID.

Ideally, I would like to create multiple tasks in this way - so do Task.init(…) , set up some configuration, and then task.execute_remotely in a l...

one year ago
0 Hi Again, Are There Any Examples Of One Script Being Used To Execute Multiple Remote Tasks? If I Could Use

I guess two more straightforward questions:

Could it be made possible for task.execute_remotely(clone=False, exit_process=False) to not raise an exception? Im happy work on a PR if this would be possible Is there any issue to having task.reset() in the public API/is there any potential issues with using?

one year ago
0 Hi

That's great, thank you very much. Will give it a whirl today or tomorrow

2 years ago
Show more results compactanswers