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
SweetBadger76
Moderator
1 Question, 239 Answers
  Active since 10 January 2023
  Last activity 2 years ago

Reputation

0

Badges 1

4 × Eureka!
0 Votes
8 Answers
2K Views
0 Votes 8 Answers 2K Views
hello TartSeagull57 This is a bug introduced with version 1.4.1, for which we are working on a patch. The fix is actually in test, and should be released ver...
3 years ago
0 Hi Everybody, I’M Getting Errors With Automatic Model Logging On Pytorch (Running On A Dockered Agent).

can you provide some mode details please ? Do you intend to store your artefacts locally or remotely ?
Does the manual reporting also fails ?

If you could also give your clearml packages versions it could help 🙂

3 years ago
0 Hello! I'M Running A Task For Which I Want To Log Several Checkpoints Of A Model. I Have A Reason To Save The Checkpoints In Different Folders Locally But Them Having The Same File Name. I Use

Hi SillySealion58
you can discriminate between your output models when you instantiate them. There are like parameters name, tags or comment that all belong to the constructor OutputModel .
It would thus be a way of using the same filename for all the checkpoints, and have them differentiated in the task. Does it make sense ?

3 years ago
0 Need

those are the credentials you got from your self hosted server ?
what about the logs before the error ? i think it relevant to have them all. i try to isolate the error, and to understand if it comes from the cred, the servers addresses, a file error or a network error

3 years ago
3 years ago
0 Hey Guys! Has Anyone Ever Seen An Error Like This? I'M Using My Code In A

Hi SmugSnake6
I might have found you a solution 🎉 I answered on the GH thread https://github.com/allegroai/clearml-agent/issues/111

3 years ago
0 Clearml-Data Sync Not Working

Hey GentleSwallow91
The bug has been corrected in the new version. Please update your clearml 🙂

3 years ago
0 Hi We Are Getting The Following Error When We Are Trying To Run A Task On Our On Premis

i am not sure i get you here.
when pip installing clearml-agent, it doesnt fire any agent. the procedure is that after having installed the package, if there isnt any config file, you do clearml-agent init and you enter the credentials, which are stored in clearml.conf. If there is a conf file, you simply edit it and manually enter the credentials. so i dont understand what you mean by "remove it"

3 years ago
0 Need

can you share some code ? about how you build the pipeline

3 years ago
0 Can'T Remove/Erase Data Set. Can'T Remove/Erase Projects. Pleas Help

Hey Yossi
Do you want to erase from the ui ?
You first have to erase the dataset/project content : you select and archive. Archive is almost the recycle bin ! Then you can easily erase the empty dataset/project

3 years ago
0 Hello I Was Trying To Download The Task Log Using Api In Python I'M Using

If the AWS machine has an ssh key installed, it should work - I assume it's possible to either use a custom AMI for that, or you can use the autoscaler instance startup bash script

3 years ago
0 When I Send A Request Of Creating A User To Clearml-Apiserver, It Logs An Error Likes This:

hey @<1523704089874010112:profile|FloppyDeer99>
did you manage to get rid of your issue ?
thanks

3 years ago
0 Hey,

TenderCoyote78 i pm you to avoid overfilling the thread here

3 years ago
0 Hi We Are Getting The Following Error When We Are Trying To Run A Task On Our On Premis

hi OutrageousSheep60
sounds like the agent is in reality ... dead. It sounds logical, because you cannot see it using ps
however, it would worth to check if you still can see it in the UI

3 years ago
0 Hey, So I'M Trying To Upload An Artefact To Clearml’S Fileserver(I Have A Self Hosted Clearml Server Running), I'Ve Uploaded The File Using Storagemanager.Upload_File(Path, Url) And Giving The Url As “

From a pipeline, you can use PipelineController.upload_model( name , path ) and specify in path the path you used to save your model from your script.

3 years ago
0 Since V1.4.0, Our

if i got you, clearml is a bucket, my_folder_of_interest is a sub bucket, inside clearml right ?

3 years ago
0 Hi, Having Issue With Clearml Agent Not Installing Package Installed Directly From Github Using “Git+

Hello Ofir,

in general matter, the agent parses the script and finds all the imports, through an intelligent analysis (it installs the ones you use/need).
It then build an env where it will install them and run (docker, venv/pip.etc).
You can also force a package/ package version

For the pipelines (and the different ways to implement them), it is a bit different

In order to answer you precisely, we would need to have a bit more detais about what you need to achieve :
Is it a pipeline that ...

3 years ago
0 Upload_Artifact Not Working With Minio

Hello Sergios,
We are working on reproducing your issue. We will update you asap

3 years ago
0 Hey, So I'M Trying To Upload An Artefact To Clearml’S Fileserver(I Have A Self Hosted Clearml Server Running), I'Ve Uploaded The File Using Storagemanager.Upload_File(Path, Url) And Giving The Url As “

Do you mean from within a pipeline ? Do you manually report the model ? It might point to a local file, especially if it has been auto logged. That is what happens when you are saving your model (thus to the local file system) from your script.

3 years ago
3 years ago
0 Upload_Artifact Not Working With Minio

ok. Let's first be sure that your conf file is correct.

aws {
s3 {
key: "david"
secret: "supersecret"
use_credentials_chain: false

        credentials: [
            {
                 # This will apply to all buckets in this host (unless key/value is specifically provided for a given bucket)
                 host: "localhost:9000"
                 key: "david"
                 secret: "supersecret"
                 mul...
3 years ago
0 Hi All! Is There A Function/Command That Returns Number Of Tasks In A Queue?

One agent is assigned to one queue ; so he will execute one task at the time, sequentially, according to their rank in the queue. But you can create as many queues as you want, and assign an agent for each one. You simply fire each agent from a terminal, with a command like :
clearml-agent daemon --queue my_queue_i
if you have more than one gpu, you can also choose for each agent which gpu(s) to allocate

3 years ago
0 Hey,

i managed to import a custom package using the same way you did : i have added the current dir path to my system
i have a 2 steps pipeline :

  1. Run a function from a custom package. This function returns a Dataloader (built from torchvision.MNIST) 2) This step receives the dataloader built in the first step as a parameter ; it shows random samples from itthere has been no error to return the dataloader at the end of step1 and to import it at step2. Here is my code :

` from clearml import Pi...

3 years ago
0 Hi, Having Issue With Clearml Agent Not Installing Package Installed Directly From Github Using “Git+

Ok. We'll try to reproduce this. If you can send a snippet/example that could help. Anyway we'll keep you updated

3 years ago
0 Hey,

hey
you can allocate ressources to worker by adding the --gpus parameter to the command line, when you fire the agent. The gpus are designed by a number.

Example: spin two agents, one per gpu on the same machine
clearml-agent daemon --detached --gpus 0 --queue default clearml-agent daemon --detached --gpus 1 --queue default

3 years ago
Show more results compactanswers