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 one year ago

Reputation

0

Badges 1

195 × Eureka!
0 Votes
30 Answers
970 Views
0 Votes 30 Answers 970 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...
3 years ago
0 Votes
11 Answers
1K Views
0 Votes 11 Answers 1K Views
Hi all, is there documentation \ example describing how does ClearML works with hydra?
3 years ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K 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...
3 years ago
0 Votes
30 Answers
1K Views
0 Votes 30 Answers 1K 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...
3 years ago
0 Votes
15 Answers
919 Views
0 Votes 15 Answers 919 Views
Hi, is there a concept of an agent taking more then one job?
3 years ago
0 Votes
13 Answers
1K Views
0 Votes 13 Answers 1K Views
3 years ago
0 Votes
15 Answers
982 Views
0 Votes 15 Answers 982 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...
3 years ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K 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?
3 years ago
0 Votes
14 Answers
1K Views
0 Votes 14 Answers 1K Views
3 years ago
0 Votes
6 Answers
1K Views
0 Votes 6 Answers 1K 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
959 Views
0 Votes 30 Answers 959 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
9 Answers
1K Views
0 Votes 9 Answers 1K Views
3 years ago
0 Votes
28 Answers
1K Views
0 Votes 28 Answers 1K Views
3 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K 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
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?
3 years ago
0 Votes
12 Answers
1K Views
0 Votes 12 Answers 1K 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
30 Answers
978 Views
0 Votes 30 Answers 978 Views
3 years ago
0 Votes
2 Answers
953 Views
0 Votes 2 Answers 953 Views
Is there a way to compare experiments across projects?
3 years ago
0 Votes
17 Answers
972 Views
0 Votes 17 Answers 972 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
10 Answers
1K Views
0 Votes 10 Answers 1K 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
24 Answers
1K Views
0 Votes 24 Answers 1K Views
3 years ago
0 Votes
14 Answers
1K Views
0 Votes 14 Answers 1K 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...
3 years ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
3 years ago
0 Votes
28 Answers
1K Views
0 Votes 28 Answers 1K 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 Hi All, I Am Trying To Execute Somewhat Custom Hpo Scheme With Clearml. I Would Want That A Single Running Python Script Will Be Able To Sample The Optimizer, Init A Task And Report The Result Multiple Times. I Didn'T Find Anything Similar In The Docs Or

Another option is to pull Tasks from a dedicated queue and use the LocalClearMLJob to spwan themThis sounds like it can work. we are talking about something like:
` #<Machine 1>
#Init Optimizer with some dedicated queue
<Machine 2>
heavy one time Common Initialization
while True:
# sample queue
# enqueue with LocalClearMLJob
# Execute Something
# report results
<Machine i>
heavy one time Common Initialization
while True:
# sample same queue
# enqueue wi...

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 All, I Am Trying To Execute Somewhat Custom Hpo Scheme With Clearml. I Would Want That A Single Running Python Script Will Be Able To Sample The Optimizer, Init A Task And Report The Result Multiple Times. I Didn'T Find Anything Similar In The Docs Or

But it does make me think, if instead of changing the optimizer I launch a few workers that "pull" enqueued tasks, and then report values for them in such a way that the optimizer is triggered to collect the results? would it be possible?

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

I am getting the following error when I try the above:
` /opt/conda/envs/torch_38/lib/python3.8/site-packages/clearml/backend_api/session/client/client.py in new_func(self, *args, **kwargs)
374 @wrap
375 def new_func(self, *args, **kwargs):
--> 376 return Response(self.session.send(request_cls(*args, **kwargs)))
377
378 new_func.name = new_func.qualname = action

TypeError: init() missing 1 required positional argument: 'items' `

3 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

I am trying to mimic an agent pulling a task, and while running it syncing some custom configuration dict I have according to the task configuration (overriding the defaults)

3 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

SuccessfulKoala55 , thanks I was looking for a way to do it programatically.. solved now, thanks
request = url+ '/v2.14/debug.ping' r = requests.post(request) serverIsResponsive = r.json()['meta']['result_code'] == 200

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?

3 years ago
3 years ago
0 I Have A Question Regarding Reducing Execution Time Of Pulling Results From The Server With The Python Api. As Part Of Some Pipeline, After Running Hpo I Am Pulling All The Results From My Optimizer Task And Also Pulling All The Scalars Associated With Th

AgitatedDove14 , what I meant by manually filtering, at the moment, to combine the information of metric values + HP point, I pull all the parameters, and then manually filter on the HP keys (manually=I have to plug them in, they are not part of optimizer object)

3 years ago
0 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 Unavailable.. Am I Missing Some Needed Steps? Thanks!

The "notebook preview" link doesn't pop-up the s3 credentials, however the "notebook" artifact when clicking on the download button does show this pop up
they actually seem to be different in the way that the UI server is showing them.. one is a link (the html) and has no pop up, the other one (.ipynb) is a text with a download button in the end of the string which does show the mentioned pop up

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

It would be very very useful for my use case, and I believe a relatively popular use case in general for example when using regular expression configurations

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

is there an available reference for how I can use the API calls with the python API? it is not clear to me from what you shared

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

3 years ago
0 Hi All, I Am Trying To Execute Somewhat Custom Hpo Scheme With Clearml. I Would Want That A Single Running Python Script Will Be Able To Sample The Optimizer, Init A Task And Report The Result Multiple Times. I Didn'T Find Anything Similar In The Docs Or

Lets say I inherit from the Optimizer (you mean HyperParameterOptimizer class? or SearchStrategy?), implement a custom logic for experiment creation logic,
what does it actually exposes? creating an experiment means defining a task, enqueue it and then? I am trying to think what you meant I can put in the logic such that I get the desired effect

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

from the example I shared above
config_files/cfg.py
` from hydra.core.config_store import ConfigStore
from dataclasses import dataclass

@dataclass
class MasterConfig:
test: str = 'test'

cs = ConfigStore.instance()
cs.store(name="config", node=MasterConfig) `

3 years ago
Show more results compactanswers