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
PleasantOwl46
Moderator
10 Questions, 46 Answers
  Active since 10 January 2023
  Last activity 10 days ago

Reputation

0

Badges 1

42 × Eureka!
0 Votes
18 Answers
660 Views
0 Votes 18 Answers 660 Views
Hey everyone, not sure exactly when it started to happen but I get unexpected behavior with task.init jobs with same project/tasks name are not overwritten -...
one year ago
0 Votes
6 Answers
246 Views
0 Votes 6 Answers 246 Views
we have an nginx container in front of ClearML, functions use sort of " SSL reverse proxy" we are seeing this errors with jobs that are trying to upload some...
4 months ago
0 Votes
3 Answers
524 Views
0 Votes 3 Answers 524 Views
Hey ClearML experts is there a way to copy entire exp. including results/scalars/plots? right click > clone creates a duplicate of the exp. , only with it's ...
9 months ago
0 Votes
10 Answers
501 Views
0 Votes 10 Answers 501 Views
does anyone had experience with running ClearML in secure machine with iptables configured? I had allowed traffic in the ports ClearML is using but still the...
8 months ago
0 Votes
3 Answers
611 Views
0 Votes 3 Answers 611 Views
Hi there ClearML experts I've been trying to delete heavy project (with ~4K experiments) using the API and getting the following error: curl \ --header "Cont...
2 years ago
0 Votes
15 Answers
172 Views
0 Votes 15 Answers 172 Views
Hi all we have set nginx in front of ClearML and signed with our own self-signed certs I'm trying to modify the cleanup_service to fit some of our needs (run...
2 months ago
0 Votes
4 Answers
245 Views
0 Votes 4 Answers 245 Views
Hey all I see this error repeating constantly, and my metrics are not updated, what does it mean? 2024-01-07 03:41:09,676 - clearml.Metrics - ERROR - Action ...
4 months ago
0 Votes
2 Answers
67 Views
0 Votes 2 Answers 67 Views
using fixed users and hashed password I'd like to change the username and name fields (without changing the password) how painful is this process? how will e...
10 days ago
0 Votes
1 Answers
92 Views
0 Votes 1 Answers 92 Views
is there a way to get list of users from the API?
one month ago
0 Votes
9 Answers
430 Views
0 Votes 9 Answers 430 Views
out of a sudden without any trigger, our ClearML server ( version 1.13.0-373 ) showing only tasks/projects that belongs to logged-in user e.g if a user don't...
7 months ago
0 Hey Everyone, Not Sure Exactly When It Started To Happen But I Get Unexpected Behavior With

from clearml import Task task = Task.init(project_name="Inbar2022/LanguageFactoryDanish/lions_test", task_name="lions3")
python main.py --cuda --epoch 1

one year ago
0 Hey Everyone, Not Sure Exactly When It Started To Happen But I Get Unexpected Behavior With

got it, I don't really understand why it happens, quite certain I didn't see this in the past

one year ago
0 Hey Everyone, Not Sure Exactly When It Started To Happen But I Get Unexpected Behavior With

same basic job not gets overwritten, but created new one every time

one year ago
0 Hey Everyone, Not Sure Exactly When It Started To Happen But I Get Unexpected Behavior With

okie so this works only if jobs run in parallel
first job create new task id
second job (initiated immediately after first job) do the reuse properly

if I wait for first job to finish - then run again new second job with same name, it will not do reuse

is this expected?

one year ago
0 Hey Everyone, Not Sure Exactly When It Started To Happen But I Get Unexpected Behavior With

didn't do that test
I usually wait for first job to finish before I start new one

one year ago
2 months ago
0 Using Fixed Users And Hashed Password I'D Like To Change The

tried with my user and edited existing user record in apiserver.conf
it looks ClearML treated this as new user - I did not saw any of the jobs belongs to my user before the change

10 days ago
0 Hi All We Have Set Nginx In Front Of Clearml And Signed With Our Own Self-Signed Certs I'M Trying To Modify The

I have tried some small task only uploads single file

logger = task.get_logger()
img = Image.open(f"./1_model.png").convert("RGB")
logger.report_image(title=f"cfg_0", series="Model", iteration=1, image=img)

ended with:

Retrying (Retry(total=0, connect=5, read=5, redirect=5, status=None)) after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1006)'))': /
202...
2 months ago
0 Hi All We Have Set Nginx In Front Of Clearml And Signed With Our Own Self-Signed Certs I'M Trying To Modify The

@<1523701087100473344:profile|SuccessfulKoala55> looks OK (?)

>>> StorageHelper.get(Task._get_default_session().get_files_server_host())._container.session.verify
InsecureRequestWarning: Certificate verification is disabled! Adding certificate verification is strongly advised. See: 

True
2 months ago
0 Hi All We Have Set Nginx In Front Of Clearml And Signed With Our Own Self-Signed Certs I'M Trying To Modify The

in case this will help someone else, I did not had root access to the training machine to add the cert to store
you can point your python to your own CA using:

export CURL_CA_BUNDLE=/path/to/CA.pem
one month ago
0 Hi All We Have Set Nginx In Front Of Clearml And Signed With Our Own Self-Signed Certs I'M Trying To Modify The

so I think I'm in the right direction
adding verify= and pointing to my CA.pem looks like the right approach

now, how do I use it with ClearML API?

cleanup_service

for task in tasks:
    try:
      deleted_task = Task.get_task(task_id=task.id)
      print (deleted_task.name)
      deleted_task.delete(
               delete_artifacts_and_models=True,
               skip_models_used_by_other_tasks=True,
               raise_on_error=False
      )

it throw down the SSL error,...

2 months ago
0 Hi All We Have Set Nginx In Front Of Clearml And Signed With Our Own Self-Signed Certs I'M Trying To Modify The

SDK version: 1.14.4
clearml-server version: Server: 1.14.0-431 • API: 2.28

2 months ago
0 Hi

finally! one less application to worry about 🙂
10x for heads up SuccessfulKoala55

2 years ago
0 Out Of A Sudden Without Any Trigger, Our Clearml Server (

I think there are some experiments that are messing up mongodb
this logs unusual in clearml-mongo logs:

{"t":{"$date":"2023-09-19T12:15:50.685+00:00"},"s":"I",  "c":"COMMAND",  "id":51803,   "ctx":"conn73","msg":"Slow query","attr":{"type":"command","ns":"backend.model","command":{"distinct":"model","key":"project","query":{"$and":[{"$or":[{"company":{"$in":["d1bd92a3b039400cbafc60a7a5b1e52b",null,""]}},{"company":{"$exists":false}}]},{"user":{"$in":["197aea8467d3f471fc0db98b57ed80fa"]...
7 months ago
Show more results compactanswers