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 4 months ago

Reputation

0

Badges 1

56 × Eureka!
0 Votes
3 Answers
554 Views
0 Votes 3 Answers 554 Views
2 years ago
0 Votes
2 Answers
238 Views
0 Votes 2 Answers 238 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 ...
4 months ago
0 Votes
4 Answers
715 Views
0 Votes 4 Answers 715 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
6 Answers
562 Views
0 Votes 6 Answers 562 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
10 Answers
594 Views
0 Votes 10 Answers 594 Views
3 years ago
0 Votes
5 Answers
626 Views
0 Votes 5 Answers 626 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 Votes
3 Answers
636 Views
0 Votes 3 Answers 636 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
8 Answers
568 Views
0 Votes 8 Answers 568 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
18 Answers
550 Views
0 Votes 18 Answers 550 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 ? ...
2 years ago
0 Votes
6 Answers
493 Views
0 Votes 6 Answers 493 Views
9 months ago
0 Votes
15 Answers
629 Views
0 Votes 15 Answers 629 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...
2 years ago
0 Votes
1 Answers
608 Views
0 Votes 1 Answers 608 Views
3 years ago
0 Votes
21 Answers
672 Views
0 Votes 21 Answers 672 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
5 Answers
600 Views
0 Votes 5 Answers 600 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 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 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 (

Hmm it's both better and worse, it does detect pyfunctional now (in INSTALLED PACKAGES and I can see it installed in the console logs) but it fails on
import torch ModuleNotFoundError: No module named 'torch'In the logs:
` Found PyTorch version torch==1.7.1 matching CUDA version 110
2021-04-21 15:15:11
Found PyTorch version torchvision==0.8.2 matching CUDA version 110
Collecting torch==1.7.1+cu110
File was already downloaded /home/ubuntu/.clearml/pip-download-cache/cu110/torch-1.7.1+cu110...

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

4 months 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?

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

3 years ago
2 years ago
0 Hello, We Use Clearml With A Torch.Distributed (Ddp, On Only 1 Machine But With Multiple Process) Training, And We Found That Clearml Intercepts And Changes The Exit Code Of Our Process (I.E. Exit(1) Does Not Exit 1 Anymore), And Torch.Multiprocessing.Spa

I'm not using clearml-agent here, I use clearml.Task.init.
The exit(1) (or raised exception) is from a subprocess.
clearml==1.1.3
torch==1.9.0+cu111, torchvision==0.10, lightning not installed
python3.8
debian 10
I will try reproducing with a smaller code, it was a training with detectron2 which uses torch.,multiprocessing.spawn and torch.distributed.init_process_group
https://github.com/facebookresearch/detectron2/blob/c47167e4ac236a36895c294735a908b75f659f96/tools/train_net.py#L163
https...

2 years ago
0 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 ? (I Already Have A Clearml-Server And A Clearml-Agent Running).

The task is registered and is started by the agent, the env seems to be installed well, but then it fails on /home/ubuntu/.clearml/venvs-builds/3.8/bin/python: can't open file 'fastai_classifier.py': [Errno 2] No such file or directory Do you have an idea of what could be wrong ? The agent launch the script in the wrong working dir ? The repo is not copied ? (This script is inside a private git repo, that clearml detects correctly).

I also tried launching the script from the root of th...

2 years ago
3 years ago
0 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 ? (I Already Have A Clearml-Server And A Clearml-Agent Running).

Hmm apparently if I launch the script from the root of the repo (CWD: myrepo python train/classif-custom/train.py ) it works, but from its dir it doesn't work (CWD: myrepo/train/classif-custom python train.py )

2 years ago
Show more results compactanswers