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

Reputation

0

Badges 1

56 × Eureka!
0 Votes
6 Answers
2K Views
0 Votes 6 Answers 2K Views
2 years ago
0 Votes
4 Answers
3K Views
0 Votes 4 Answers 3K 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...
2 years ago
0 Votes
10 Answers
2K Views
0 Votes 10 Answers 2K Views
5 years ago
0 Votes
8 Answers
2K Views
0 Votes 8 Answers 2K 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',...
3 years ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
4 years ago
0 Votes
15 Answers
2K Views
0 Votes 15 Answers 2K 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...
4 years ago
0 Votes
18 Answers
2K Views
0 Votes 18 Answers 2K 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 ? ...
4 years ago
0 Votes
5 Answers
2K Views
0 Votes 5 Answers 2K 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...
3 years ago
0 Votes
6 Answers
2K Views
0 Votes 6 Answers 2K 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...
4 years ago
0 Votes
5 Answers
2K Views
0 Votes 5 Answers 2K 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 ...
3 years ago
0 Votes
21 Answers
2K Views
0 Votes 21 Answers 2K 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....
3 years ago
0 Votes
3 Answers
2K Views
0 Votes 3 Answers 2K 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?
2 years ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K 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 ...
one year ago
0 Votes
3 Answers
2K Views
0 Votes 3 Answers 2K Views
4 years ago
0 Hello, I'M Using

thanks that works ! perfect

3 years ago
0 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 On Webapp: 1.12.0-393 • Server: 1.12.0-393 • Api: 2.26 I Print Things Like This

ok so I reproduced it with this, it happens when I have colors (I got the error first with an exception printed with stackprinter None )

Task.init(project_name="test", task_name="test", reuse_last_task_id=False)
print("this is a test <hello world> rest of the text")
print("this is a test <hello world> rest of the text", file=sys.stderr)
print(colorama.Fore.RED + "this is a test <hello world> rest of the text" + colorama.Style.RESET_ALL)

![i...

one year ago
0 Hi, Plotting A Debug Sample With A

Hello AgitatedDove14 it does not throw an exception, but in the ui the link is broken so the image does not show

4 years ago
0 Hello, Is It Possible To Edit Scalars/Plots From An Experiment (Rename Or Delete Them) With The Python Client Or With The Server Api?

hello, yes it’s like typos, I want to compare some experiments that were created by different versions of a script for instance, and the metrics names changed so I can’t compare it on clearml UI

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

3 years ago
0 Hello, Is It Possible To Disable Lazy Loading ? It’S Quite Horrible To Use In Console Logs For Instance, Where Search Is Useless As It Doesn’T Request Anything But Only Filter Currently Loaded Logs, And From My Browser Info The Ui Loads Previous Logs By 7

made a PR to help a bit loading console logs None
logs can be huge but are loaded 7kB at a time currently

100+ parameters is quite a lot indeed but very quickly achieved when using frameworks like detectron2, where you configure the model in the configuration (+dataloader, datasets, evaluators, augmentation, optimizer, lr_scheduling). anyway the search is broken as soon as one line you search is not currently visible, so already with 20+ ...

2 years ago
0 Hi, I'M Trying The Experiment Tracking (Metrics/Plots) And When Comparing Plots Between Two Experiments, Only Matplotlib Plots (Autologged, Confusion Matrix Using Sklearn) Are Displayed But Task.Logger.Report_Scatter2D Plots Disappear, Is That Expected? (

And an example of the missing comparison:
the two experiments 2. plot on the first one 3. plot on the second 4. comparison plot only shows other plots (only the confusion matrices)

5 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

3 years ago
0 Hello, Is It Possible To Disable Lazy Loading ? It’S Quite Horrible To Use In Console Logs For Instance, Where Search Is Useless As It Doesn’T Request Anything But Only Filter Currently Loaded Logs, And From My Browser Info The Ui Loads Previous Logs By 7

We have the same issue for hyperparameters even with only ~100 keys, where the UI likes to lazy load and remove scrolled elements so it breaks browser search, and integrated search works like 15% of the time…

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...

3 years ago
0 Hello, I'M Using

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

3 years ago
0 Hello, I’M Trying To Update Our Clearml Server Running On Kubernetes (1.6.0-213) But I Get This Error:

we managed to upgrade it but the volume claim thing changed somehow, it created new disks, i will backup from the old disks and upload to the new ones to migrate but the backup procedure is not detailed for kubernetes, do you have info for this?
should i only do mongodb?

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

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

Version: 1.1.1-135 • 1.1.1 • 2.14

3 years ago
Show more results compactanswers