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
2 Answers
830 Views
0 Votes 2 Answers 830 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...
2 years ago
0 Votes
13 Answers
753 Views
0 Votes 13 Answers 753 Views
3 years ago
0 Votes
30 Answers
771 Views
0 Votes 30 Answers 771 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
30 Answers
647 Views
0 Votes 30 Answers 647 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
2 years ago
0 Votes
30 Answers
631 Views
0 Votes 30 Answers 631 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
10 Answers
698 Views
0 Votes 10 Answers 698 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 ...
2 years ago
0 Votes
15 Answers
614 Views
0 Votes 15 Answers 614 Views
Hi, is there a concept of an agent taking more then one job?
3 years ago
0 Votes
30 Answers
666 Views
0 Votes 30 Answers 666 Views
3 years ago
0 Votes
9 Answers
690 Views
0 Votes 9 Answers 690 Views
3 years ago
0 Votes
3 Answers
703 Views
0 Votes 3 Answers 703 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
15 Answers
682 Views
0 Votes 15 Answers 682 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
14 Answers
748 Views
0 Votes 14 Answers 748 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
2 Answers
650 Views
0 Votes 2 Answers 650 Views
Is there a way to compare experiments across projects?
3 years ago
0 Votes
5 Answers
734 Views
0 Votes 5 Answers 734 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
6 Answers
682 Views
0 Votes 6 Answers 682 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...
2 years ago
0 Votes
14 Answers
713 Views
0 Votes 14 Answers 713 Views
2 years ago
0 Votes
24 Answers
672 Views
0 Votes 24 Answers 672 Views
2 years ago
0 Votes
12 Answers
759 Views
0 Votes 12 Answers 759 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...
2 years ago
0 Votes
28 Answers
737 Views
0 Votes 28 Answers 737 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...
2 years ago
0 Votes
3 Answers
747 Views
0 Votes 3 Answers 747 Views
3 years ago
0 Votes
7 Answers
833 Views
0 Votes 7 Answers 833 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
28 Answers
775 Views
0 Votes 28 Answers 775 Views
2 years ago
0 Votes
17 Answers
663 Views
0 Votes 17 Answers 663 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...
2 years ago
0 Votes
11 Answers
721 Views
0 Votes 11 Answers 721 Views
Hi all, is there documentation \ example describing how does ClearML works with hydra?
3 years ago
0 Ui Suggestion:

I have some custom configuration that describes the experiment I am running..
Some dictionary.. nothing to do with frameworks

2 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

client has the following attributes:
['auth', 'events', 'models', 'projects', 'queues', 'session', 'tasks', 'workers']

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

I get it with the simplest config if I define it as a dataclass, using the example you share as a basis:
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) and for the main I had to make some small changes to connect my local server (I'm sharing them just in case): hydra_example.py: # ClearML - Hydra Example

im...

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

I found a super weird fix for this error.. no idea why it works but maybe it can help with debugging it..
try: task = Task.init(project_name="examples", task_name="hydra configuration", reuse_last_task_id=False) except: task = Task.init(project_name="examples", task_name="hydra configuration", reuse_last_task_id=True)

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

its the module where the cfg is defined, like in the example you shared config_files/cfg.py

3 years ago
3 years ago
0 Ui Suggestion:

the above represent my case

2 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

CostlyOstrich36 thanks, is there an example for using the post\get in a pythonic way to access the mentioned debug.ping ?

2 years ago
0 Ui Suggestion:

CostlyOstrich36 , thanks!

2 years ago
0 Ui Suggestion:

CostlyOstrich36 , I am not sure what you mean, but if you refer to the name of the category in the configuration, it doesn't matter.. the names are arbitrary for this example..

2 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

AgitatedDove14 ,yes my own server
is there an available reference to such a post request? I was trying some variations and it didn't work for me

2 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

response:
{"meta":{"id":"33e9e80e94ee4384b45962acafcd2af5","trx":"33e9e80e94ee4384b45962acafcd2af5","endpoint":{"name":"","requested_version":1.0,"actual_version":null},"result_code":400,"result_subcode":0,"result_msg":"Invalid request path /v2.14/debug/ping","error_stack":null,"error_data":{}},"data":{}}

2 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

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

is there a chance you help me with the specific POST call for debug? I was trying to implement it using requests package but I got errors.. didn't work for me.. I believe it something trivial

2 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': {}},
'...

2 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

something like in the example I shared
<Machine 1> #Init Optimizer <Machine 2> **heavy one time Common Initialization** while True: #sample Optimizer # init task # Execute Something # report results <Machine i> **heavy one time Common Initialization** while True: #sample **same** Optimizer # init task # Execute Something # report results

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
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' `

2 years ago
Show more results compactanswers