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 Hi, I’M Getting This Error When I Try To Run Task On A Remote Agent With Docker Mode Web Ui:

Logs shows me that key is mounted to the docker container

How are you mounting the credentials?
What version of ClearML-Agent are you using?

3 years ago
0 Hi, I Have A Question About Media Reporting. After Successfully Reporting A Video File To The "Debug Samples" Section Of A Specific Task, How Can I Programmatically Obtain A Url For That Video (Knowing The Task Name And The Name The Video Was Reported Wit

Hi @<1558986867771183104:profile|ShakyKangaroo32> , you can extract that using the API with events.debug_images - None

I suggest navigating to the UI and seeing what the UI sends when looking at debug samples with dev tools (F12)

2 years ago
0 Hello All

Hi @<1718437476634202112:profile|SteepAnt48> , you certainly can! But you already have HPO capability built in:
None
None

one year ago
0 Hi, Forgive Me If This Was Asked Before In A Different Way, What’S The Recommended Way To Pass Different Git Credentials To An Agent Running On A Shared Machine (Meaning 2 People Are Queueing Different Jobs, Pulling From Different Git Remotes). Should I

Hi ExuberantParrot61 , if it's on the same machine you can use different configuration files. for example, when running the agent you can use --config-file <PATH_TO_USER_CONFIG_FILE>

3 years ago
0 Hello,

GrittyCormorant73 , K8s deployment will have easier time to spin up agent instances to run the tasks 🙂

3 years ago
0 Hi, And Thanks For The Great System. I'Ve Been Training Using

Is this all happening when you're running locally? How many gpu's do you have/try to run on? Also, can you provide an example code snippet to try and run something basic to get a similar failure. I think I have a machine with multiple gpus that I can try playing on 🙂

3 years 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?

Hi @<1523701295830011904:profile|CluelessFlamingo93> , I'm afraid there is no clear-cut way to migrate data from the community server to your own self hosted server since the databases aren't compatible.

One work around would be to pull all experiments information via API (The structure/logs/metrics) and then repopulate the new server using the API. I think it would be a bit cumbersome but it can be achieved.

2 years ago
0 Hey, Is There A Way To Hide Certain Configuration Paramters? We Want To Login To Db To Fetch Data, For Task Run. But We Don'T Want The Db Connection Details To Be Logged Into Clearml, Is There A Way To Hide It?

I'm not sure it's possible to hide via the Task object. But I think such configurations should be saved as env variables or in clearml.conf

Can you please be more specific on the use case?

2 years ago
2 years ago
0 Hi Everyone! I Created A Pipeline From One Block, Passed The Initial Parameters. Please Tell Me, Is It Possible To Make A New Launch Of The Pipeline, But With Different Parameters, Just Like In The Draft Mode Of Usual Experiments. Globally, I Want To Init

Hi @<1524560082761682944:profile|MammothParrot39> , I think you need to run the pipeline at least once (at least the first step should start) for it to "catch" the configs. I suggest you run once with pipe.start_locally(run_pipeline_steps_locally=True)

2 years ago
0 Hi Community

Hi @<1595225620323766272:profile|VivaciousElk3> , you can set it with env variables - None

The ones that you're looking for are:
CLEARML_AGENT_SKIP_PIP_VENV_INSTALL
CLEARML_AGENT_SKIP_PYTHON_ENV_INSTALL

2 years ago
0 Hey Clearml Experts Is There A Way To Copy Entire Exp. Including Results/Scalars/Plots? Right Click > Clone Creates A Duplicate Of The Exp. , Only With It'S Configuration, Without It'S Results

Hi @<1523701842515595264:profile|PleasantOwl46> , I'm afraid that such a capability doesn't really exist in ClearML. You could technically populate an experiment using the API.

I'm however curious - what is your use case for this?

2 years ago
0 Hey Clearml Experts Is There A Way To Copy Entire Exp. Including Results/Scalars/Plots? Right Click > Clone Creates A Duplicate Of The Exp. , Only With It'S Configuration, Without It'S Results

Sounds about right. You can also create reports from the best experiments and then reference the models via the report as well

2 years ago
0 Hello All, I'M Trying To Download A File Hosted In The Clearml Server And I Receive The Following Error :

Hi ShallowCormorant89 ,

When does 1. happen? Can you add the full log?

Regarding 2, can you please elaborate? What is your pipeline doing and what sort of configurations would you want to add? On the pipeline controller level or steps?

2 years ago
0 Any Idea What I'Ve Missed Here? Thanks

Hi BattyDove56 , it looks like your elasticsearch container is restarting. Is this the issue still? Can you check the container logs to see why it's restarting? I think this is what might be causing the issue with ClearML server not raising properly

3 years ago
0 In Your Docs For Dataset At

They do look identical, I think the same issue (If it's an issue) also affects https://clear.ml/docs/latest/docs/references/sdk/dataset/#list_added_files

3 years ago
0 Hi. When Using Sklearn'S

Hi DistressedGoat23 , can you please elaborate a bit on what you're like to do?

2 years ago
0 Hi. When Using Sklearn'S

DistressedGoat23 , how are you running this hyper parameter tuning? Ideally you need to have

` From clearml import Task

task = Task.init() `
In your running code, from that point onwards you should have tracking

2 years ago
0 Weird Error; My Local Execution Hung With

And when you run it again under exactly the same circumstances it works fine?

3 years ago
0 Weird Error; My Local Execution Hung With

Can you look in the UI if the execution parameters were logged?

3 years ago
0 Hey Guys, Hope You Missed Me

My guess other agents are sitting on different machines, did you verify that the credentials are the same between the different clearml.conf files? Maybe @<1523701087100473344:profile|SuccessfulKoala55> might have an idea

2 years ago
0 Hi May I Know Is There A Way To Get The Dataset_Id From The Dataset Object? I Cannot Find An Api For It

Hi @<1523701304709353472:profile|OddShrimp85> , you can do dir(object) to see what options you have. I think it would be something like <DS>.id

one year ago
0 I Was Trying To Use The Callback Option In

Hi @<1719162252994547712:profile|FloppyLeopard12> , not sure what you're trying to do, can you please elaborate?

one year ago
Show more results compactanswers