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, 3719 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0
0 Hi, It Appears That What Clearml Calls Histograms Are Actually Bar Graphs. Does Clearml Have Real Histograms?

Hi @<1574931891478335488:profile|DizzyButterfly4> , not sure what you mean. Can you elaborate on what you see vs what you expect to see?

16 days ago
0 I Guess One Experiment Is Running Backwards In Time

I have no idea, but considering that the version for http://app.clear.ml was updated recently (last week from what I noticed) I'd be guessing that the self hosted server should be right around the corner 😉

2 years ago
0 I Guess One Experiment Is Running Backwards In Time

JitteryCoyote63 , I was referring to http://app.clear.ml , when you look in profile page there you will see 3.8, I noticed it recently changed.

2 years ago
0 Hi,

How would you report this to a Task?

one year ago
0 Um, Is There A Way To Delete An Artifact From A Task That Is Running?

I think it depends on your implementation. How are you currently implementing top X checkpoints logic?

2 years ago
0 Hi, Question Regarding

Can I assume you're running the agent (in daemon mode) on the same machine that you're running the clearml-agent daemon --stop command?

2 years ago
3 years ago
0 Hi, I'M Setting A

I played a bit with it and got to the value. OutrageousSheep60 , please tell me if this helps you 🙂

` >>> task.set_user_properties(x=5)
True

y=task.get_user_properties()
y
{'x': {'section': 'properties', 'name': 'x', 'value': '5'}}
y["x"]["value"]
'5' `

2 years ago
0 Hey All, There Is A Way To Compare All The Experiments In A Project

Hi @<1523706700006166528:profile|DizzyHippopotamus13> , you can simply do it in the experiments dashboard in table view. You can rearrange columns, add custom columns according to metrics and hyper parameters. And of course you can sort the columns

one year ago
0 Hi, When Running A Training Script From Pycharm, It Seems That Clearml Logs Only Those Packages That Are Explicitly Imported By My .Py Files; It Seems To Not Take The Pacakges That Are In The Requirements.Txt My Training Uses Keras

RoughTiger69 Hi!

Regarding your questions:
You can use the following: Task.force_requirements_env_freeze(requirements_file='repo/some_folder/requirements.txt') before your task=Task.init(...) You can configure sdk.development.detect_with_pip_freeze=true in your ~/clearml.conf file for full env detection from the environment you're running from

3 years ago
0 Hi, Is There Any Document About Migration Clearml-Server. Currently, I Have Clearml-Server Running On Servera But I Want To Move All Data (Including Artifacts, Task, Dataset) From Servera To Serverb.

Looks like a permissions issue:
nested: IOException[failed to test writes in data directory [/usr/share/elasticsearch/data/nodes/0/indices/mQ-x_DoZQ-iZ7OfIWGZ72g/_state] write permission is required]; nested

2 years ago
0 Hi, I Was Wondering If Anyone Had A Similar Problem And How You Fixed It? My Code Fails On

DrabSwan66 Hi!

What version are you trying to install? If the machine in question has an issue installing opencv then the agent will most likely fail as well.

3 years ago
2 years ago
0 Hi, I Am Using Clearml On A Self-Hosted Server (With

Hi @<1594863230964994048:profile|DangerousBee35> , I'm afraid that the self hosted version and the PRO versions are entirely disconnected. There are many more advanced features in the Scale/Enterprise licenses where you can have a mix of all the features you might be looking for. You can see the different options here - None

one year ago
0 Hi, Is There A Way To Share Reports With Users That Are Not Part Of The Workspace?

No, but I think it would make sense to actually share reports outside of your workspace, similar to experiments. I'd suggest opening a GitHub feature request

11 months ago
0 Hi, Is There A Way To Share Reports With Users That Are Not Part Of The Workspace?

Hi @<1643060831954407424:profile|ScrawnyMole16> , you can export your report to PDF and share it with your colleagues 🙂

11 months ago
0 Hi, Am Working On A Project With Clearml Sdk. Does Anyone Know How To Link Clearml Datasets To An Experiment? I Cannot Find It In The Clearml Sdk Documentation. Thank You

Hi @<1747428509627715584:profile|CumbersomeDuck6> , you can basically expose it as an argument in the configuration section. For example using argparse would work very conveniently.

2 months ago
0 How Do You Get Clearml Gpu Compute To Show Up Under Applications Or Autoscalers?

@<1719524641879363584:profile|ThankfulClams64> , the Genesis autoscaler feature is currently disabled. You can still use the AWS and GCP autoscalers available though

one month ago
0 Hi, I Am Trying To Use

Hi DrabOwl94 , what version of ClearML are you using?

one year ago
0 Hi Everybody! I Want To Know Whether Clearml Can Work With Hadoop And How Difficult Is It To Integrate It? Anyone Can Help Me?

Hi @<1686547375457308672:profile|VastLobster56> , from my understanding Hadoop is a collection of different utilities. Do you have something specific in mind?

6 months ago
0 Hello! Are You Able To Help Be Debug This Message?

On prem is also K8s? Question is if you run the code unrelated to ClearML on EKS, do you still get the same issue?

2 months ago
0 Hello! Are You Able To Help Be Debug This Message?

I think you're right. But it looks like an infrastructure issue related to Yolo

2 months ago
0 Hi All! I Am Trying To Run The Notebook From The Remote Server Using Aws. It Seems Like I Successfully Installed Clearml Using !Pip Install Clearml Command, But When I Am Trying To Run !Clearml-Init I Got The Following Error: /Bin/Bash: Clearml-Init: Comm

Try setting the following environment envs:
%env CLEARML_WEB_HOST= %env CLEARML_API_HOST= %env CLEARML_FILES_HOST= %env CLEARML_API_ACCESS_KEY=... %env CLEARML_API_SECRET_KEY=...and try removing the clearml.conf file 🙂

2 years ago
0 I Noticed You Can Configure Aws In

Hi BoredBat47 , I'm not sure. However I doubt that any remote agents would be taking such a configuration

one year ago
0 Can You Please Tell Me How To Make The Agent Use The Docker Env By Default? Instead Of Creating Venv It Already Has All The Necessary Environment And Libraries Installed

Hi @<1523702932069945344:profile|CheerfulGorilla72> , I think you need to map out the relevant folders for the docker. You can add docker arguments to the task using Task.set_base_docker

one year ago
Show more results compactanswers