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
GloriousGoldfish63
Moderator
11 Questions, 11 Answers
  Active since 02 December 2024
  Last activity 4 months ago

Reputation

0

Badges 1

8 × Eureka!
0 Votes
3 Answers
188 Views
0 Votes 3 Answers 188 Views
How to create a new project from Python Code in the Remote worker?
2 months ago
0 Votes
1 Answers
586 Views
0 Votes 1 Answers 586 Views
Hi, I have a self-hosted ClearML server. How do I change the default path /opt/clearml/data/fileserver to a different path like a mounted disk?
6 months ago
0 Votes
3 Answers
833 Views
0 Votes 3 Answers 833 Views
Hi, I Installed local clearml server and when launching the GUI is lacking the metric values table button. Is this a known issue or am I missing something? (...
9 months ago
0 Votes
1 Answers
327 Views
0 Votes 1 Answers 327 Views
Hi, I'm having trouble with clearml-serving auto-update. Is it required to first manually add model or should it work also alone?
3 months ago
0 Votes
2 Answers
609 Views
0 Votes 2 Answers 609 Views
When running a data processing task with joblib.Parallel, the print statements don't appear in the ClearML Console. Also the Logger.current_logger().report_t...
8 months ago
0 Votes
4 Answers
635 Views
0 Votes 4 Answers 635 Views
Is it possible to create a Task using Task CLI using a python entrypoint (either script or module) and then have the task_name become overridden by the value...
6 months ago
0 Votes
1 Answers
677 Views
0 Votes 1 Answers 677 Views
In a self hosted server I am getting a similar issue to this: None The agent-services keeps restarting repetitively. In the docker logs I am getting this err...
8 months ago
0 Votes
4 Answers
491 Views
0 Votes 4 Answers 491 Views
I got a clearml-serving instance running with inferences served correctly, however the model-endpoints dashboard screen is remaining empty with the splash sc...
4 months ago
0 Votes
1 Answers
697 Views
0 Votes 1 Answers 697 Views
Has anybody had success serving a ClearML Server with Traefik HTTPS tunneling?
8 months ago
0 Votes
1 Answers
270 Views
0 Votes 1 Answers 270 Views
Hi, what is the meaning of the circle that appears on tasks in the webserver GUI?
2 months ago
0 Votes
4 Answers
803 Views
0 Votes 4 Answers 803 Views
Hello, Any idea how to log tables with hyperlinks? When logging dataframes using report_table I get tables in the plots section. I would like the cell conten...
8 months ago
0 Hi, I Installed Local Clearml Server And When Launching The Gui Is Lacking The Metric Values Table Button. Is This A Known Issue Or Am I Missing Something? (First Image - Local Server) (Second Image - Hosted Server)

Hi @<1523701070390366208:profile|CostlyOstrich36> , I deployed using the latest allegroai/clearml image. When I execute /usr/bin/env in the container I get:
CLEARML_SERVER_VERSION=1.16.2
CLEARML_SERVER_BUILD=502

9 months ago
0 Hello! I Am Running Self-Hosted Clearml. Does Deleting Dataset From The Ui Also Remove It From Disk? I'Ve Just Deleted One (Send To Archive Then Delete) And Can Still See It On The Desk (

Hi @<1523701070390366208:profile|CostlyOstrich36> I have the same issue. I archived then deleted an experiment and the debug samples do not get deleted from the self-hosted fileserver. also no logs that I can find indicate an error.

8 months ago
0 Is It Possible To Create A Task Using Task Cli Using A Python Entrypoint (Either Script Or Module) And Then Have The Task_Name Become Overridden By The Values Of Task.Init(Task_Name="Real_Task_Name") Inside The Python Script?

Hi @<1523701070390366208:profile|CostlyOstrich36>
For example if I want to push a task to a remote queue and have the task's name automatically be inferred from one of the configuration files. My use case is in cross validation training, the task name should include the model_name and the split_id

6 months ago
0 When Running A Data Processing Task With Joblib.Parallel, The Print Statements Don'T Appear In The Clearml Console. Also The

It was probably just a network issue on my end. Works with a larger delay than I expected.

8 months ago
0 Hi From What I Can Tell Trying To Follow This Documentation

When using clearml-agent daemon --stop will it interrupt the running tasks or wait for the running task to finish and then stop the daemon?

8 months ago
0 Hello, Any Idea How To Log Tables With Hyperlinks? When Logging Dataframes Using

Hi @<1523701070390366208:profile|CostlyOstrich36> how do I utilize the ‘presentation’:‘markdown’ solution you mentioned in conjunction with logger.report_table? Is it possible?

7 months ago
0 Hello, Any Idea How To Log Tables With Hyperlinks? When Logging Dataframes Using

Hi @<1523701070390366208:profile|CostlyOstrich36>
I did something like this:

data = {"index": ["<a href=
>12345</a>"], y:[1],...}
df = pd.DataFrame(data)
clearml_logger.report_table(title, series, iteration, df)
8 months ago