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
DepressedChimpanzee34
Moderator
24 Questions, 215 Answers
  Active since 10 January 2023
  Last activity 2 years ago

Reputation

0

Badges 1

195 × Eureka!
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
Hi people, are there any other good options to view a csv table on the ClearML UI other then the artifacts preview?
4 years ago
0 Votes
10 Answers
2K Views
0 Votes 10 Answers 2K Views
UI suggestion: Pain point : When viewing a task configuration tab, given a "complex" configuration with many entries, it takes some effort to scroll through ...
3 years ago
0 Votes
17 Answers
1K Views
0 Votes 17 Answers 1K Views
I have another small technical question, I am trying to see the workers status programatically using the folowing: from clearml.backend_api.session.client im...
3 years ago
0 Votes
7 Answers
2K Views
0 Votes 7 Answers 2K Views
Hi all, I'm updating my code to use hydra, and facing an issue: when I try to init a task in offline mode I'me getting the following: ValueError: Multiple co...
4 years ago
0 Votes
13 Answers
2K Views
0 Votes 13 Answers 2K Views
4 years ago
0 Votes
3 Answers
2K Views
0 Votes 3 Answers 2K Views
4 years ago
0 Votes
5 Answers
2K Views
0 Votes 5 Answers 2K Views
Hi all, I'm looking for an easy clean way to check if the code is executed by a ClearML agent programatically, any suggestions?
4 years ago
0 Votes
15 Answers
1K Views
0 Votes 15 Answers 1K Views
Hi, is there a concept of an agent taking more then one job?
4 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Is there a way to compare experiments across projects?
4 years ago
0 Votes
30 Answers
2K Views
0 Votes 30 Answers 2K Views
Hi all, is there an easy way to ping the server programatically? I'm just trying to see what is the default server that is set, and is it responsive
3 years ago
0 Votes
15 Answers
2K Views
0 Votes 15 Answers 2K Views
Hi I came across some inconsistency in the iteration reporting in the ClearML with pytorch-lightning when calling trainer.fit multiple times, before I dive i...
4 years ago
0 Votes
28 Answers
2K Views
0 Votes 28 Answers 2K Views
I have a question regarding "imitating" an agent pulling some task for debugging purposes I am trying to do something like: Creating a task on the server tas...
3 years ago
0 Votes
28 Answers
2K Views
0 Votes 28 Answers 2K Views
3 years ago
0 Votes
24 Answers
2K Views
0 Votes 24 Answers 2K Views
3 years ago
0 Votes
14 Answers
2K Views
0 Votes 14 Answers 2K Views
3 years ago
0 Votes
30 Answers
2K Views
0 Votes 30 Answers 2K Views
Hi all, I have an issue with the way hyper parameters are logged under configuration, the values that are stored seem to add unnecessary escape characters to...
4 years ago
0 Votes
30 Answers
2K Views
0 Votes 30 Answers 2K Views
Hi All, I'm trying to use the relatively new jupyter preview feature but for some reason I have the notebook artifact under artifacts but the preview is unav...
4 years ago
0 Votes
12 Answers
2K Views
0 Votes 12 Answers 2K Views
Web server UI bug? when trying to extend the width of a column in the experiments table, if you try to extend it more then the width of the column to the rig...
3 years ago
0 Votes
9 Answers
2K Views
0 Votes 9 Answers 2K Views
4 years ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
Hi all, I'm getting this "ERROR - Action failed <500/100: events.add_batch/v1.0" in my task log, can any one help diagnose \ solve this issue? what does it a...
3 years ago
0 Votes
6 Answers
2K Views
0 Votes 6 Answers 2K Views
UI Suggestion #2: Pain point : Trying to select a subset of experiments which are relevant for some comparison \ analysis can be an iterative process. If you...
3 years ago
0 Votes
30 Answers
2K Views
0 Votes 30 Answers 2K Views
4 years ago
0 Votes
14 Answers
2K Views
0 Votes 14 Answers 2K Views
Hi clearml people, I am trying to figure out if plotly animations are supported? I can see that I can report an animation figure and get the Play/Stop button...
4 years ago
0 Votes
11 Answers
2K Views
0 Votes 11 Answers 2K Views
Hi all, is there documentation \ example describing how does ClearML works with hydra?
4 years ago
4 years ago
4 years ago
0 I Have A Question Regarding "Imitating" An Agent Pulling Some Task For Debugging Purposes I Am Trying To Do Something Like: Creating A Task On The Server

parameters = { 'float': 2.2, 'string': 'my string', }for example.. can be anything really, some dictionary

3 years ago
0 Hi, Is There A Concept Of An Agent Taking More Then One Job?

is there a fundamental reason why is this only enabled in --docker mode?

4 years ago
0 Hi All, Is There An Easy Way To Ping The Server Programatically? I'M Just Trying To See What Is The Default Server That Is Set, And Is It Responsive

I am not familiar with this.. thats why I'm struggling.. this is what I tried:
import requests import os r = requests.post(url+ '/v2.14/debug/ping') r.json()response:
` {'meta': {'id': 'ebd6bdeaa95c4c3397009c71d9444040',
'trx': 'ebd6bdeaa95c4c3397009c71d9444040',
'endpoint': {'name': '', 'requested_version': 1.0, 'actual_version': None},
'result_code': 400,
'result_subcode': 0,
'result_msg': 'Invalid request path /v2.14/debug/ping',
'error_stack': None,
'error_data': {}},
'...

3 years ago
0 Hi Clearml People, I Am Trying To Figure Out If Plotly Animations Are Supported? I Can See That I Can Report An Animation Figure And Get The Play/Stop Buttons But It Seem To Be Static

SuccessfulKoala55
` import plotly.express as px
df = px.data.gapminder()
fig = px.scatter(df, x="gdpPercap", y="lifeExp", animation_frame="year", animation_group="country",
size="pop", color="continent", hover_name="country",
log_x=True, size_max=55, range_x=[100, 100000], range_y=[25, 90])

task.get_logger().report_plotly(title="TEST", series="sepal", iteration=0, figure=fig) `Thanks

4 years ago
0 Is There A Way To Compare Experiments Across Projects?

That's good enough for me, I forgot about the all projects option

4 years ago
0 Web Server Ui Bug? When Trying To Extend The Width Of A Column In The Experiments Table, If You Try To Extend It More Then The Width Of The Column To The Right, It Doesn'T Do Anything..

Hi AgitatedDove14 ,
clearml Server 1.1.1
|column1|column2|column3|
trying to extend column1 by dragging the right edge of column1 over column2 (column3 for example) will result with no extension

3 years ago
0 I Have Another Small Technical Question, I Am Trying To See The Workers Status Programatically Using The Folowing:

it works.. but I am actually trying to access the status not the stats, is that an option?

3 years ago
0 Hi, Guys! I’M Trying To Connect Clearml To My Task And Getting Strange Error: After

Hi AgitatedDove14 , I am using the pre release of hydra together with the latest clearml, and previous clearml server version (I didn't have time yet to update)..
I'm getting similar error to the mentioned in the post:
` 2021-05-06 15:48:07,359 - root - WARNING -
2021-05-06 15:48:07,359 - root - WARNING - File "/home/user/.local/lib/python3.8/site-packages/clearml/backend_api/services/v2_9/tasks.py", line 1067, in description
self.assert_isinstance(value, "description", six.string_typ...

4 years ago
0 Hi All, I Have An Issue With The Way Hyper Parameters Are Logged Under Configuration, The Values That Are Stored Seem To Add Unnecessary Escape Characters To The Original Values.. Is It A Known Issue? Is There A Way To Change It? Thanks

AgitatedDove14 , in my use case, the strings are regular expressions. If the reported regular expression string changes when reported, it messes up my run.
I can't define the "legal regular expression space", off the top of my head. The expected behavior is reported_string == original_string..

4 years ago
0 Hi All, I'M Updating My Code To Use Hydra, And Facing An Issue: When I Try To Init A Task In Offline Mode I'Me Getting The Following:

Hi AgitatedDove14 , that's what I'm doing exactly.. from the error I am thinking it has more to do with the combination of offline with a hierarchical config or maybe just multiple configs registered in the hydra config store? I don't know..

4 years ago
0 I Have Another Small Technical Question, I Am Trying To See The Workers Status Programatically Using The Folowing:

AgitatedDove14 I believe that worker status doesn't is not considered a metric?

3 years ago
0 Ui Suggestion #2:

FrothyDog40 :man-facepalming: yea that seem to do the job, however it still feels like a bug that the out-of-view experiments are not deselected when clicking the top box (select all \deselect all)
less critical though.. thanks!

3 years ago
Show more results compactanswers