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
WackyRabbit7
Moderator
73 Questions, 550 Answers
  Active since 10 January 2023
  Last activity 5 months ago

Reputation

0

Badges 1

533 × Eureka!
0 Votes
30 Answers
809 Views
0 Votes 30 Answers 809 Views
Using PipelineController I have task B that depends on task A, e.g. A -> B. Task B reads artifacts that were saved by task A. I did define the dependency bet...
2 years ago
0 Votes
5 Answers
883 Views
0 Votes 5 Answers 883 Views
How do I get access to uploaded artifacts (not registered)? I see I can find their URL using Task.get_task(...).artifacts and then use StorageManager to down...
3 years ago
0 Votes
0 Answers
834 Views
0 Votes 0 Answers 834 Views
(no menu on top or side)
2 years ago
0 Votes
11 Answers
860 Views
0 Votes 11 Answers 860 Views
2 years ago
0 Votes
4 Answers
911 Views
0 Votes 4 Answers 911 Views
How should I go about making all the artifacts default saving location to a bucket? (destination for automatically saved artifacts, uploaded and registered) ...
3 years ago
0 Votes
21 Answers
857 Views
0 Votes 21 Answers 857 Views
3 years ago
0 Votes
4 Answers
815 Views
0 Votes 4 Answers 815 Views
4 years ago
0 Votes
30 Answers
888 Views
0 Votes 30 Answers 888 Views
Executed from within a PipelineController task, what possible reason does current_task() have to return None ? 2021-11-07T11:32:43.7366887Z clearml.Task.curr...
2 years ago
0 Votes
3 Answers
825 Views
0 Votes 3 Answers 825 Views
Sorry for the bombarding with errors.. but here comes another one 🙂 I have torch installed locally (through the transformers library) and when sending it to...
3 years ago
0 Votes
20 Answers
815 Views
0 Votes 20 Answers 815 Views
Question about the storage manager. Assuming I have an object that updates frequently and always saved at the same path (e.g. my_bucket/my_data.csv ) and I w...
3 years ago
0 Votes
30 Answers
853 Views
0 Votes 30 Answers 853 Views
I'm running clearml-task --script tasks/hp_optimization.py --name "YYYYY" --project "XXXXXXX" and get the following error - why is that? > Error: Standalone ...
2 years ago
0 Votes
5 Answers
847 Views
0 Votes 5 Answers 847 Views
When using PipelineControler is there a way to execute locally? Or must I use a queue?
3 years ago
0 Votes
30 Answers
891 Views
0 Votes 30 Answers 891 Views
How come PipelineController has changed in a very backwards-incompatible fashion but we are still on the same major version? O_O Also the documentation is no...
2 years ago
0 Votes
24 Answers
806 Views
0 Votes 24 Answers 806 Views
3 years ago
0 Votes
0 Answers
927 Views
0 Votes 0 Answers 927 Views
(without having to execute it first on Machine C)
4 years ago
0 Votes
22 Answers
899 Views
0 Votes 22 Answers 899 Views
Guess we're back to basics How do I report a single scalar with no iteration dimension - something I can put as one of the columns in the experiments table?
3 years ago
0 Votes
5 Answers
860 Views
0 Votes 5 Answers 860 Views
I'm running multiple trains-agents on one BFG-9000 machine. Is there a way to stop only one agent? trains-agent daemon --stop is my only option right now, bu...
3 years ago
0 Votes
10 Answers
979 Views
0 Votes 10 Answers 979 Views
3 years ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
Why would the Mongo4 migration scripts (for clearml-server 1.2) try to chown 1000:1000?
2 years ago
0 Votes
16 Answers
840 Views
0 Votes 16 Answers 840 Views
What is being stored exactly in tmp by the clearml agent? I have a process that cleans the /tmp each day, and I now get messages like clearml_agent: ERROR: C...
2 years ago
0 Votes
23 Answers
1K Views
0 Votes 23 Answers 1K Views
Trying to enqueue a task through the UI, getting this error - what could it be? (Running on AWS, on the official trains AMI) Error 100 : General data error: ...
3 years ago
0 Votes
8 Answers
815 Views
0 Votes 8 Answers 815 Views
I have a data scientist constantly having the same problem. If she did not push his latest changes to git, she gets the following error Using cached reposito...
3 years ago
0 Votes
5 Answers
783 Views
0 Votes 5 Answers 783 Views
4 years ago
0 Votes
6 Answers
814 Views
0 Votes 6 Answers 814 Views
Is it possible to ask an agent to use a specified existing python environment instead of building one from scratch?
2 years ago
0 Votes
16 Answers
819 Views
0 Votes 16 Answers 819 Views
How should I edit the Cleanup Service so I can filter deleted tasks on project / task name? https://github.com/allegroai/clearml/blob/master/examples/service...
2 years ago
0 Votes
6 Answers
871 Views
0 Votes 6 Answers 871 Views
Is there an auto scaling solution for GCP users?
3 years ago
0 Votes
30 Answers
803 Views
0 Votes 30 Answers 803 Views
Following the instructions for local trains deployment on Linux ( https://allegro.ai/docs/deploying_trains/trains_server_linux_mac/ ) seems to download versi...
3 years ago
0 Votes
8 Answers
859 Views
0 Votes 8 Answers 859 Views
I have a task which I reported a table to - how do I access this table through code? The clearml Task object attribute "artifacts" is empty
2 years ago
0 Votes
2 Answers
810 Views
0 Votes 2 Answers 810 Views
Assuming I call Task.enqueue() on a task, is there a way for me to get a link to the task execution? I want to write a message to slack, containing the URL s...
2 years ago
0 Votes
11 Answers
829 Views
0 Votes 11 Answers 829 Views
Is there a way to programatically access the tasks a PipelineController launched? I have the clearml.Task object in hand and I wonder how to access all the t...
2 years ago
Show more results questions
3 years ago
0 Following The Instructions For Local Trains Deployment On Linux (

Why would I have 0.15.1 if I followed the instructions of the docs?

3 years ago
3 years ago
0 How Do I Restart Trains-Agents? How Do I Stop Them?

Also being able to separate their configurations files would be good (maybe there is and I don't know?)

4 years ago
0 Executed From Within A Pipelinecontroller Task, What Possible Reason Does

after you create the pipeline object itself , can you get Task.current_task() ?

AgitatedDove14 no I can't... Just checked this. This is a huge problem for us, it used to work before and it just stopped working and I can't figure out why.

It's a problem for us because we made it a methodology of running some tasks under a pipeline task and saving summary iunfo to the pipeline task - but now since Task.current_task() doesn't work on the pipeline object we have a serious problem

2 years ago
0 Using

CostlyOstrich36

2 years ago
0 Is There A Way To Programatically Access The Tasks A

Yes, I have the controller task in hand

2 years ago
0 Executed From Within A Pipelinecontroller Task, What Possible Reason Does

I suspect that it has something to do with remote execution / local execution of pipelines, because we play with this , so sometimes the pipeline task itself executes on the client, and sometimes on the host (where the agent is also)

2 years ago
0 Assuming I Have A

The scenario I'm going for is never to run on the dev machine, so all I'll need to do once the server + agents are up is to add task.execute_remotely... after the Task.init line and after the execution of the script is called on the dev machine, it won't actually run but rather enqueue itself for the agent to run it?

4 years ago
0 In Order To Use The Aws Autoscaling, With Spot And Without Spot Instances - Should We Create A Custom Policy With The Associated Iam Or Will One Of The Two Aws Managed Policies (Or Both) Will Suffice?

I have a single IAM, my question is what kind of permissions I should associate with the IAM so that the autoscaler task will work

3 years ago
0 I Have To Say I'M Totally Confused By The Pipeline I Want To Execute The Pipeline On My Local Computer. I Followed

it seems that only the packages that are on the script are getting installed

3 years ago
0 Question About The Auto Scaling Service Under

Now I remind you that using the same credentials exactly, the auto scaler task could launch instances before

3 years ago
0 Where Can I Find A More Extensive Documentation Of Serving? I'M Looking For

actually i was thinking about model that werent trained uaing clearml, like pretrained models etc

2 years ago
2 years ago
0 How Do I Get Access To

I was refering to what is the returned object of Task.artifacts['...'] - when I call .get I understand what I get, I'm asking because I want to see how the object I'm calling .get on behaves

3 years ago
0 Is There A Way To Run A Pipeline (

But does it disable the agent? or will the tasks still wait for the agent to dequeue?

3 years ago
0 Guess We'Re Back To Basics How Do I Report A Single Scalar With No Iteration Dimension - Something I Can Put As One Of The Columns In The Experiments Table?

AgitatedDove14 all I did was to cerate this metric as "last" and then turned on the "max" and "min" and then turned them off

I can't reproduce it now but:
I restarted the services and it didn't help I deleted the columns, and created them again after a while and it helped

3 years ago
Show more results compactanswers