Hi WackyRabbit7 ,
You can find all the api docs https://clear.ml/docs/latest/docs/references/api/index , and for task.get_all
https://clear.ml/docs/latest/docs/references/api/tasks#post-tasksget_all 🙂
I did, but I only find task name, I'm looking to filter by the project
Hahahah thanks for the help SuccessfulKoala55 & CostlyOstrich36
I really do feel it would be a nice to have the ability to easily configure the Cleanup Service to cleanup only specific projects / tasks as its a common use case to have a project dedicated for debugging and alike
I meant the cleanup service is part of the examples 🙂 - you're welcome to add this option (like CostlyOstrich36 said earlier), and add it to the example code in a PR
Example code? I didn't see anywhere an example of filtering using project name
I only found Project ID, which I'm not sure what this refers to - I have the project name
WackyRabbit7 don't you know everything has an ID? 😆 even I do 😉
bottom line I want to edit the cleanup service code to only delete tasks under a specific project - how do I do that?
I know tasks have a name and an ID - but projects?
WackyRabbit7 , please skim over here 🙂
https://clear.ml/docs/latest/docs/references/api/tasks#post-tasksget_all
Well, since it's part of the example code, we would welcome any contributions/PRs 🙂
Very similar to a task, a project has also a unique identifier - the ID (Although I think project names are also unique)
You can get the project ID either from UI (If you go to a specific project, the project ID will be in the url) or from the api as documented in:
https://clear.ml/docs/latest/docs/references/api/projects#post-projectsget_all
or from the sdk as documented here:
https://clear.ml/docs/latest/docs/references/sdk/task#taskget_project_id
Plug that project ID into the filter of tasks.get_all and you'll get what you're looking for 🙂
I might just do that, it will be my second contribution to ClearML 🙂
I think you can get project name from here:
https://clear.ml/docs/latest/docs/references/api/projects#post-projectsget_by_id
thx TimelyPenguin76
skimming over this, I can't find how to filter by project name or something similar