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
VirtuousFish83
Moderator
14 Questions, 56 Answers
  Active since 10 January 2023
  Last activity 5 months ago

Reputation

0

Badges 1

56 × Eureka!
0 Votes
6 Answers
606 Views
0 Votes 6 Answers 606 Views
Hi, plotting a debug sample with a " in the title fails. I think the encoding of the quote is different between the backend and the file server plt.title('th...
3 years ago
0 Votes
18 Answers
593 Views
0 Votes 18 Answers 593 Views
Hello, I'm a bit lost in the docs for the MLOps, I have script which already integrate clearml logging, should I use clearml-task to launch it on an agent ? ...
3 years ago
0 Votes
3 Answers
688 Views
0 Votes 3 Answers 688 Views
hello, is it possible to edit scalars/plots from an experiment (rename or delete them) with the python client or with the server api?
one year ago
0 Votes
1 Answers
661 Views
0 Votes 1 Answers 661 Views
3 years ago
0 Votes
6 Answers
540 Views
0 Votes 6 Answers 540 Views
10 months ago
0 Votes
4 Answers
776 Views
0 Votes 4 Answers 776 Views
Hello, I’m trying to update our ClearML server running on kubernetes (1.6.0-213) but I get this error: > helm upgrade clearml allegroai/clearml --namespace c...
one year ago
0 Votes
21 Answers
727 Views
0 Votes 21 Answers 727 Views
Hello, we recently moved our clearml self-hosted server (on GCE) to be behind a load balancer with certs etc. at the address {app,files,api}.dev.companyname....
2 years ago
0 Votes
8 Answers
619 Views
0 Votes 8 Answers 619 Views
Hello, I want to report a confusion matrix with the values fig = plotly.express.imshow( matrix, labels={'x': "Predicted", 'y': "True"}, x=['0', '1'], y=['0',...
2 years ago
0 Votes
3 Answers
597 Views
0 Votes 3 Answers 597 Views
2 years ago
0 Votes
2 Answers
280 Views
0 Votes 2 Answers 280 Views
hello, clearml-server appears to fail escaping html in stdout/stderr reporting (the console view), is this a known bug ? is this fixed on 1.13.0 maybe ? I’m ...
5 months ago
0 Votes
15 Answers
681 Views
0 Votes 15 Answers 681 Views
Sorry I have again another problem, does clearml have its own package resolution system and doesn't use pip ? I use a lib named pyfunctional ( https://pyfunc...
3 years ago
0 Votes
10 Answers
641 Views
0 Votes 10 Answers 641 Views
3 years ago
0 Votes
5 Answers
649 Views
0 Votes 5 Answers 649 Views
hello, I'm using Task._query_tasks(project_name=...) to iterate on tasks, but I'm getting only the first 500 tasks of my project and I don't know how to get ...
one year ago
0 Votes
5 Answers
685 Views
0 Votes 5 Answers 685 Views
hi, is it possible to change the url of artifacts in clearml tasks ? (following a migration, the file has been migrated but the artifact has the old url/host...
one year ago
0 Hello, I'M Using

thanks, is there a way to do it with the SDK ? maybe override the page size ?

one year ago
0 Hello, I'M Using

thanks that works ! perfect

one year ago
0 Hello, I'M Using

managed a workaround thanks to the API doc, if someone encouters the same bug:
tasks = [] page = 0 while True: page_tasks = Task._query_tasks(project_name=project, system_tags=[] if archived else ['-archived'], page=page, page_size=500) tasks += page_tasks page += 1 if len(page_tasks) < 500: break

one year ago
3 years ago
0 Hello, I Want To Report A Confusion Matrix With The Values

WebApp: 1.2.0-153 • Server: 1.2.0-153 • API: 2.16

2 years ago
0 Hello, I Want To Report A Confusion Matrix With The Values

Version: 1.1.1-135 • 1.1.1 • 2.14

2 years ago
2 years ago
0 Hello, We Recently Moved Our Clearml Self-Hosted Server (On Gce) To Be Behind A Load Balancer With Certs Etc. At The Address

Oh ok I thought it would be relative to the server, how do i run this migration ?

2 years ago
0 Hello, We Recently Moved Our Clearml Self-Hosted Server (On Gce) To Be Behind A Load Balancer With Certs Etc. At The Address

Also it would be awesome if the front-end integrated a small reverse-proxy to have everything on 1 address, I don't know if this is somewhere on the roadmap ? Or what are advantages of having 3 separate addresses ?

2 years ago
0 Hello, We Recently Moved Our Clearml Self-Hosted Server (On Gce) To Be Behind A Load Balancer With Certs Etc. At The Address

oookay so we found that for kubernetes, if we allow only tls v1.3 on the ingress controller, clearml-inits breaks with 2022-03-04 10:32:02,814 - clearml.session - WARNING - SSLError Retrying HTTPSConnectionPool(host=' http://api.clear-ml.dev.monk.ai ', port=443): Max retries exceeded with url: /auth.login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:1129)'))) or sometimes just could not verify credentials

2 years ago
0 Hello, We Recently Moved Our Clearml Self-Hosted Server (On Gce) To Be Behind A Load Balancer With Certs Etc. At The Address

We tried with a docker-compose on a GCE VM + load balancers, and then in kube, we get the same error: clearml-init returns Error: could not verify credentials: key=241... secret=NhC...

2 years ago
0 Hello, We Recently Moved Our Clearml Self-Hosted Server (On Gce) To Be Behind A Load Balancer With Certs Etc. At The Address

Is there a way to store relative urls in clearml ? We can't connect to our server with a public address, it only works with the internal dns from GCE

2 years ago
0 Hello, We Recently Moved Our Clearml Self-Hosted Server (On Gce) To Be Behind A Load Balancer With Certs Etc. At The Address

we still don't what was happening with the VM + docker compose + load balancers

2 years ago
0 Hello, We Recently Moved Our Clearml Self-Hosted Server (On Gce) To Be Behind A Load Balancer With Certs Etc. At The Address

so if anybody needs this someday (migrating your hostname which is saved inside your experiments (debug images and plots with images)) you need this https://github.com/allegroai/clearml-server/issues/83
but it's slow , you can restrict the query to the items that are actually updated, with:
` # on index events-training_debug_image-yourid

OLDHOST/ should be something like or

NEWHOST/ same

"script": {
"source": "ctx._source.url = ctx._source.url.replace('OLDHOST/', 'NEWHO...

2 years ago
0 Hello, We Recently Moved Our Clearml Self-Hosted Server (On Gce) To Be Behind A Load Balancer With Certs Etc. At The Address

I welcome the day clearml saves relative urls by default ^^ it is supported by browsers (i.e. fetching /someurl is relative to the current hostname) so maybe only the clearml client would need to be updated right ? to push images with a relative url instead of the clearml server url.

2 years ago
Show more results compactanswers