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
CluelessFlamingo93
Moderator
16 Questions, 45 Answers
  Active since 10 January 2023
  Last activity 4 months ago

Reputation

0

Badges 1

45 × Eureka!
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
one year ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
one year ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
Hi, When running a agent during the pip installation of packages i get the following error: The user requested PyYAML==6.0 clearml 1.8.3 depends on PyYAML>=3...
one year ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Hi, When creating a pipeline from tasks how can I set each step configuration from the web UI? for example in the training step i want to choose if i use a c...
one year ago
0 Votes
2 Answers
359 Views
0 Votes 2 Answers 359 Views
Hi, I have a yolox project that when I run locally its working but when I try to run it with an agent (on the same server and same user) it fails. with the f...
4 months ago
0 Votes
10 Answers
1K Views
0 Votes 10 Answers 1K Views
Hi, When trying to to run an experiment with pytorch, pip keeps failing on installing the pytorch packages, did somebody else solve this problem? Here are my...
one year ago
0 Votes
9 Answers
1K Views
0 Votes 9 Answers 1K Views
one year ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
Hi, When migrating from the ClearML server to a self hosted server is there a way to transfer all the data/training tasks between them?
one year ago
0 Votes
12 Answers
1K Views
0 Votes 12 Answers 1K Views
one year ago
0 Votes
8 Answers
430 Views
0 Votes 8 Answers 430 Views
4 months ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
one year ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
one year ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
Hi, When using a pipeline decorator how do i add a local module? i keep on getting this error message: Traceback (most recent call last): File "/tmp/tmpjwvz_...
one year ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
Hi, In my code i have some functions i call from a different folder from my original project but is in the same repository, when i run the following code loc...
one year ago
0 Votes
4 Answers
864 Views
0 Votes 4 Answers 864 Views
Hi, I'm trying to reduce my team and my api calls when training models, we all ready added the following flags in our config file on each training agent work...
one year ago
0 Votes
9 Answers
1K Views
0 Votes 9 Answers 1K Views
Hi, I've been getting the following error when running training code through an agent, RuntimeError: CUDA error: no kernel image is available for execution o...
one year ago
0 Hi, When Running A Task To Training On The Clearml Agent It Installs Packages Not With The Correct Version That My Requirments.Txt Has, I'Ve Installed A Environment Manually For The Requirements.Txt And It Installs The Correct Versions However On The Agen

Thanks @<1523701070390366208:profile|CostlyOstrich36> , but doesn’t the agent create/caches an environment from the requirements.txt when running? I’m reproducing an old project that used to work like that, and also my ClearML.conf set to work that way

one year ago
0 Hi, I Have An Artifact Which Is A Path To The Outputs Of The Model That Was Trained And Its Used In Another Task Later On But As A String, But When I Use Upload Artifact It Uploads The Whole Folder And Not Just As A String, Is There Are Way To Just Upload

Also looked at it but its only supported registered artifact object type is a pandas.DataFrame and not strings.
I think I'll keep it with ':' in the start of the string and that way it won't upload the folder

one year ago
one year ago
0 Hi, When Trying To To Run An Experiment With Pytorch, Pip Keeps Failing On Installing The Pytorch Packages, Did Somebody Else Solve This Problem? Here Are My Log Files.

yes sometimes I suffer from small network issues, is there a way to make clearml have a bigger timeout when installing packages?
and if not is there a way to point it to a local package for installation or a local virtual enviroment?

one year ago
0 Hi, When Using A Pipeline Decorator How Do I Add A Local Module? I Keep On Getting This Error Message:

@<1523701087100473344:profile|SuccessfulKoala55> and @<1523701070390366208:profile|CostlyOstrich36> , in the end I've found the problem, it was due to me running the pipeline locally and when running the pipeline locally it, doesn't copy all the dir but only the script that is running None

one year ago
0 Hi, In My Code I Have Some Functions I Call From A Different Folder From My Original Project But Is In The Same Repository, When I Run The Following Code Locally:

Hi @<1523701070390366208:profile|CostlyOstrich36> , Here is a better explanation of my situation, in my IDE the working directory is where my code starts and I'm importing from common_utils my custom augmentations and locally the code is working with the import I've added in my previous message, however when i run from ClearML agent the import from point a to point b isn't working however they are both in the same git repo and i don't want to copy the files into project_1 as to not have unne...

one year ago
0 Hi, When Trying To To Run An Experiment With Pytorch, Pip Keeps Failing On Installing The Pytorch Packages, Did Somebody Else Solve This Problem? Here Are My Log Files.

Thanks I'll look into that, but in the end we decided to add a private repo with the pytorch libraries that we need.
I've added the extra_index_url to point to our https and we changed to requirements.txt to look for that https however I'm getting this that warning I've attached and its still trying to download the packages not from my path.
how do i enable clearml-agent to look for private repos?

one year ago
0 Hi, When Using A Pipeline Decorator How Do I Add A Local Module? I Keep On Getting This Error Message:

@<1523701070390366208:profile|CostlyOstrich36> my repo is like this and both the files are located at the same dir so its weird that they cannot find train:

.
├── pytorch
├── tensorflow
│   ├── Project A
│   │   └── src
│   ├── Project B
│   │   ├── data
│   │   ├── model
│   │   ├── reports
│   │   └── utils
│   ├── hand_validator_boxes
│   │   ├── src
│   │   ├── train.py (the module i need)
│   │   └── clearml_pipeline.py (where the pipeline is initilizied
└── utils
one year ago
4 months ago
0 Hi, I Have An Artifact Which Is A Path To The Outputs Of The Model That Was Trained And Its Used In Another Task Later On But As A String, But When I Use Upload Artifact It Uploads The Whole Folder And Not Just As A String, Is There Are Way To Just Upload

Btw in pipelines is there a way to get the pipelines main task id? for example <step_name>.id gets me the stages id but I need the main pipeline that's running all the tasks

one year ago
0 Hi, When Migrating From The Clearml Server To A Self Hosted Server Is There A Way To Transfer All The Data/Training Tasks Between Them?

Thank you @<1523701070390366208:profile|CostlyOstrich36> and @<1523701205467926528:profile|AgitatedDove14> , after that bit on information, can you tell me where I can find the differences between the community server and self hosted server?
Are there any additional downsides to migrating to a self hosted server?

one year ago
0 Hi All, Is There A Way To Create A Pipeline From Files Which Are Already Tasks In Clearml (With Task Init And Their Own Parameters Which Are Connected From The Task)? I'Ve Read About Pipeline_From_Task But As I Seen All The Tasks Must Be Already Tasks Whi

The flow is: Training.py (which creates and runs a training task) -> conversion_task.py (converts the outputs of the models into a format of our choosing) -> testing.py (testing the model after conversion).
I tried using the decorators and fucntions but they both threw me errors that i cannot do task init in side a running task.

one year ago
0 Hi All, Is There A Way To Create A Pipeline From Files Which Are Already Tasks In Clearml (With Task Init And Their Own Parameters Which Are Connected From The Task)? I'Ve Read About Pipeline_From_Task But As I Seen All The Tasks Must Be Already Tasks Whi

@<1523701087100473344:profile|SuccessfulKoala55> What I'm trying to do is connect 3 different tasks into 1 pipeline but still being able to run each task as an individual when needed but without changing the tasks code. for example i have a training.py file which runs task.init in the start and creates a task in the server for training a new model, but i want also to create a pipeline that will run that training.py and other tasks together, is that more clear now?

one year ago
0 Hi All, While Training Some Models I Noticed That My Api Calls Are Going Through The Roof, Is There A Way To Control The Amount Of Api Calls? Is There A Way To Update All The Plots And Console Print On The App.Clear.Ml For Every Some Epoch? Or Aggregating

Hi @<1523701070390366208:profile|CostlyOstrich36> , I am using the community server, what happens if i change to a self hosting server?
I'm using Tensorboard to report everything, nothing special besides that.

one year ago
0 Hi, When Using A Pipeline Decorator How Do I Add A Local Module? I Keep On Getting This Error Message:

Hi @<1523701070390366208:profile|CostlyOstrich36> , it is part of the repository, do pipelines run differently then normal tasks? what I mean is when i run a task it has a working directory do pipelines also have that or are their working directory the root of the repo?

one year ago
0 Hi All, While Training Some Models I Noticed That My Api Calls Are Going Through The Roof, Is There A Way To Control The Amount Of Api Calls? Is There A Way To Update All The Plots And Console Print On The App.Clear.Ml For Every Some Epoch? Or Aggregating

Wow, thanks a lot @<1523701070390366208:profile|CostlyOstrich36> for pointing me in the right direction. I also see that i can use sdk.development.worker.log_stdout if i really need to kill my api calls before I'll Host my own server.
BTW what does suppress_update_message do? I mean which kind of messages does it suppress?

one year ago
0 Hi, When Migrating From The Clearml Server To A Self Hosted Server Is There A Way To Transfer All The Data/Training Tasks Between Them?

No, until now we used the default server that is handled by Clearml and we want to transfer to a self hosted one

one year ago
0 Hi, When Trying To To Run An Experiment With Pytorch, Pip Keeps Failing On Installing The Pytorch Packages, Did Somebody Else Solve This Problem? Here Are My Log Files.

Thanks John, I read the one about the pip timeout, the problem is that I'm assume clearml runs the following command :
"pip install -r requirments.txt" and I want to know if I make clearml add the timeout flag.

one year ago
0 Hi, I'M Trying To Reduce My Team And My Api Calls When Training Models, We All Ready Added The Following Flags In Our Config File On Each Training Agent

@<1523701070390366208:profile|CostlyOstrich36> After discussing with my TL, we think the plan we are subscribed to might not be for us, can you point me to a person who we can have a meeting with and advice us the best plan for my team?

one year ago
0 Hi, When Running A Agent During The Pip Installation Of Packages I Get The Following Error:

Just upgraded to clearml-agent==1.5.1 and I still get this error.

one year ago
Show more results compactanswers