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
CostlyOstrich36
Moderator
0 Questions, 4172 Answers
  Active since 10 January 2023
  Last activity 2 years ago

Reputation

0
0 Please Explain The Forward Steps To Continue

Hi @<1557174909573009408:profile|LargeOctopus32> , I suggest you through the introduction videos on ClearML's youtube channel
None

2 years ago
0 Hi! Is There A Way To Connect Multiple S3 Storages To Clearml? As Far As I Understand, I Can Only Specify One Set Of S3 Credentials In Clearml.Conf

Hi @<1523707653782507520:profile|MelancholyElk85> , in a section right under the default S3 credentials in clearml.conf you have a section to specify per bucket 🙂

2 years ago
0 Hi! I Would Like To Make A Report On All Experiments In My Clearml Project, The Report Should Include Plots Based On Experiments Data Grouped By Labels. Can I Do This Using Clearml Web Ui? If Not, How Can I Download Project Data To Build It Using Other In

Hi EnviousPanda91 , I'm not quite sure what you want to extract but you can extract everything from the UI using the API. The docs can be found here: https://clear.ml/docs/latest/docs/references/api/events
And for the best reference - You can open developer tools in the UI and see how the requests are handled there 🙂

3 years ago
0 Hey Everyone, I'M Trying To Change My

How are you saving the plots?

2 years ago
0 Hi, I Have A Question Regarding Storing Datasets And Models In A S3 Bucket. Is There Any Specific Way To Upload Metadata And Models To S3 Bucket From Clearml?

Hi GrittyHawk31 , can you elaborate on what you mean by metadata? Regarding models you can achieve this by defining the following in Task.init(output_uri="<S3_BUCKET>")

3 years ago
0 Why Is Async_Delete Not Working?

@<1590514584836378624:profile|AmiableSeaturtle81> , please see the section regarding minio in the documentation - None

one year ago
0 Hi Everyone ! I Got A Problem With Pipelinecontroller : With A Colleague, When We Execute A Pipeline, He Get The Pipeline As Aborted, When I Get It As Completed. In Both Cases, The Tasks Are Completed. I Wonder If You Could Get Status From All The Tasks O

Hi @<1546303293918023680:profile|MiniatureRobin9> , do you have some stand alone script that reproduces this behaviour for you? Are you both running the same pipeline? How are you starting the pipeline

9 months ago
one year ago
0 Hello ! I Am Having Some Issues While Running A Pipeline Remotely (Same Device But Queue + Agent) . Hitting The Following Issue On My First Step:

Hi @<1660817806016385024:profile|FantasticMole87> , you'll either have to re-run it or change something in the DB. I suggest the first option.

one year ago
0 Hi! Which Method Is Used To Delete Outputmodel From The Storage?

If I'm not mistaken, models reflect the file names. So if you recycle the file names you recycle the models. So if you save torch.save(" http://top1.pt ") then later torch.save(" http://top2.pt ") and even later do torch.save(" http://top1.pt ") again, you will only have 2 OutputModels, not three. This way you can keep recycling the best models 🙂

3 years ago
0 Hello Everyone, If I Use This Code, Where Is The File Downloaded To My Machine?

@<1681111528419364864:profile|SmoothGoldfish52> , it will be saved to a cache folder. Take a look at what @<1576381444509405184:profile|ManiacalLizard2> wrote. I think tar files might work already. Give it a test

one year ago
0 Hi, I Am Successfully Starting Multiple Tasks Automatically, But They Dont Train To Completion They Start Training And Then At Some Point They Give Me This Error:

Hi CloudySwallow27 , regarding - Process terminated by user - Are you running Hyperparam Optimization?
Regarding CUDA - yes, you need CUDA installed (or run it from a docker with CUDA) - ClearML doesn't handle the CUDA installation since this is on a driver level.

3 years ago
0 Hey All

@<1715538373919117312:profile|FoolishToad2> , I think you're missing something. ClearML backend only holds references (links) to artifacts. Actual interaction with storage is done directly via the SDK, aka on the machine running the code

one year ago
0 Hello, I’Ve Enabled The Web Authentication For My Clearml Server And I’M Wondering Whether There’S A Way To Avoid Restarting All The Clearml Services Every Time A New User Is Added. For Example If Some Experiments Are Ongoing A New User Can’T Be Added Wit

I'm not sure it's not possible in the open version. I think this is because the users are loaded into the server when the server loads all the config files. This usually happens on server startup.

However, even if you simply restart the apiserver, any running experiments should continue running and resume communication with the backend once the apiserver is back up.

There is also the option of manually creating documents directly on mongodb - but it is unadvisable.

3 years ago
0 Hello Guys, I Have Trouble Logging Certain Pandas Dataframes (

Hey 🙂
What data do you have for the dataframe? Couldn't reproduce it with:
df = pd.DataFrame( { "num_legs": [2, 4, 8, 0], "num_wings": [2, 0, 0, 0], "num_specimen_seen": [10, 2, 1, 8], }, index=["falcon", "dog", "spider", "fish"], )

3 years ago
0 Hi, Folks! Cannot See Plots In Clearml. Do You Know Why This Can Happen?

Hi @<1523701553372860416:profile|DrabOwl94> , is this a self hosted server? Do you see any console errors in developer tools?

9 months ago
0 I Have The User/Pass Set Up On The

The agent prints its configuration before the execution step, I don't see agent.git_pass set anywhere in the log. Are you sure you set it up on the correct machine? This needs to be set up on the machine running the agent.

9 months ago
0 Hello Everyone! Do You Know How To Run Several Agents Simultaneously On The Same Pc? I Launched The First One And If I Try To Run The Second One I Get:

ExcitedSeaurchin87 , I think you can differentiate them by using different worker names. Try using the following environment variable when running the command: CLEARML_WORKER_NAME

I wonder, why do you want to run multiple workers on the same GPU?

3 years ago
0 How Do I Check My User Role On Clearml? Can We Restrict To Create User On Invite Only? Clearml Webpage Just Allow Anyone Who Can Open Web Dashboard To Create A New User. Is There Any Config That Allows Only User Creation On Invite Only Basis? Because Of

Hi DrabCockroach54 , in the open source version there are no roles. You can set up users & passwords using this:
https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server_config/#web-login-authentication

I am not sure there is a simple way to delete users - I think you would need to edit MongoDB manually, which I would not recommend

2 years ago
0 Hello Guys, I Understand We Can Add Some Scripts For Clearml-Agent To Execute Prior To The Task. Is It Possible To Add Scripts To Run After The Task?

Hi OddShrimp85 , you mean bash script? I don't think there is something built in to run a script afterwards but I'm sure you could incorporate it in your python script.

I'm curious, what is the use case?

2 years ago
0 Hi, Is There A Way To Remove Clearml Examples From The Clearml Server (Not Just Hiding Them)?

Then you can disable the pre-population in docker compose - None

However it will work only on a new server on startup. Otherwise I think you would need to delete them from mongo + elastic, which I would advise against if it's a running server

2 years ago
0 Hello, We Had To Move Our Logging Server To A New Ip Address, While All The Runs Are Properly Showing Up, Artefacts And And Debug Samples Seem To Still Reference The Old Ip, Is There A Way To Change The Ip For Everything?

Hi @<1582904448076746752:profile|TightGorilla98> , you would need to edit these addresses in mongodb/elastic for the new address. A migration script would do the job

2 years ago
Show more results compactanswers