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
SuperficialDolphin93
Moderator
9 Questions, 14 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

14 × Eureka!
0 Votes
5 Answers
529 Views
0 Votes 5 Answers 529 Views
Hi, the RESTful API POST /task.get_all seems to be limited to 500 tasks but I have 2k tasks (because each task is trained very quickly on a single data sampl...
2 years ago
0 Votes
3 Answers
570 Views
0 Votes 3 Answers 570 Views
I think this is a bug in ClearML web GUI The issue is the Total count in All Experiments is incomplete until clicking Load More . Steps to reproduce: Run man...
2 years ago
0 Votes
5 Answers
521 Views
0 Votes 5 Answers 521 Views
for proj in inference_projs: print("getting tasks") tasks = Task.get_tasks(project_name=proj['name'])does the clearML server support multithreading this code...
2 years ago
0 Votes
6 Answers
475 Views
0 Votes 6 Answers 475 Views
When using the clearml.backend_api to get tasks, is there a way to know a-priori how many pages I will need for all results? Right now I keep requesting unti...
2 years ago
0 Votes
1 Answers
502 Views
0 Votes 1 Answers 502 Views
Is it possible to have Task.get_tasks() with allow_archived=False ?
2 years ago
0 Votes
8 Answers
572 Views
0 Votes 8 Answers 572 Views
Hi! Using PytorchLightning. How do I define the names of the plots in the legend?
2 years ago
0 Votes
5 Answers
548 Views
0 Votes 5 Answers 548 Views
How do I create sub projects with the new version 1.0?
2 years ago
0 Votes
1 Answers
503 Views
0 Votes 1 Answers 503 Views
what is user properties for and how can I add parameters to it via code? thx!
2 years ago
0 Votes
1 Answers
26 Views
0 Votes 1 Answers 26 Views
@<1574207105437536256:profile|HungryCat90> somebody in the team should add ClearMl to this list None
2 years ago
0 How Do I Create Sub Projects With The New Version 1.0?

does this work for multiple levels?

2 years ago
0 How Do I Create Sub Projects With The New Version 1.0?

Thanks! Surprisingly, I didn't see this documented anywhere

2 years ago
0 For Proj In Inference_Projs: Print("Getting Tasks") Tasks = Task.Get_Tasks(Project_Name=Proj['Name'])

CostlyOstrich36 Thanks, I tried that, but I get
"authenticated": False when using POST/login.supported_modes and this leads to a "Unauthorized (missing credentials)" response when using POST/login.tasks.get_all

Any clues how to authenticate myself?

2 years ago
0 For Proj In Inference_Projs: Print("Getting Tasks") Tasks = Task.Get_Tasks(Project_Name=Proj['Name'])

I would like to get all tasks where the project name contains "inference/".
The way I did it is to first filter "get_projects()" then get the task.

For sure there is a way to do this in one get_tasks call?

Thanks 🙂

2 years ago
0 Hi, The Restful Api

I'm doing:
` from clearml.backend_api import Session
from clearml.backend_api.services import tasks, events, projects

... # get project_ids

session = Session()
res = session.send(tasks.GetAllRequest(project=project_ids)) this response object res is limited to 500 tasks, and no scroll_id ` is provided.

When I do tasks.get_all (which is not the RESTful API I don't have the option to filter by project name

2 years ago
0 Hi, The Restful Api

SuccessfulKoala55
Thank you, but I still don't know how to authenticate my REST API session

2 years ago
0 Hi! Using Pytorchlightning. How Do I Define The Names Of The Plots In The Legend?

Some tasks have so many models, it gets really messy without proper names 😅

2 years ago
0 Hi! Using Pytorchlightning. How Do I Define The Names Of The Plots In The Legend?

Every experiment includes fitting a model 7 times (once per subject). For a given metric (say train_acc) I would like to group the series into one plot (which is the default setting - good). What I want is to manually provide a name to each series equal to the subject name (Subject 1, Subject 2, etc.)

2 years ago
0 Hi! Using Pytorchlightning. How Do I Define The Names Of The Plots In The Legend?

Yes, thanks for your help! Now I need to find how to change the PL naming

2 years ago