Delete example tasks, projects, and models from ClearML server
See original GitHub issueTrying to remove the example tasks, projects, and models from ClearML server (Docker image), but it cannot be done from the UI, so I tried to do it using the API:
from clearml.backend_api.session.client import APIClient
client = APIClient()
print(client.tasks.get_all())
# Select one of the shown task IDs
client.tasks.delete("e8e09741583b4a0499baf588eb3f8bdb", force=True)
But I get this error:
APIError: APIError: code 403/21: Forbidden (modification not allowed) (cannot modify public task(s), ids=('e8e09741583b4a0499baf588eb3f8bdb',))
Is there something else I need to do for removing all those examples?
Issue Analytics
- State:
- Created a year ago
- Comments:9 (3 by maintainers)
Top Results From Across the Web
Cleanup Service - ClearML
APIClient class to implement a service that deletes old archived tasks and their associated files: model checkpoints, other artifacts, and debug samples. Modify ......
Read more >Deleting project/experiment #84 - allegroai/clearml - GitHub
Hi, My team uses trains systematically even when prototyping. Thus we have a lot of non-relevant data (images, models) that we would like...
Read more >MLOps: From Zero to Hero in Two Lines of Code with ClearML
ClearML (formerly Allegro Trains) is the open-source platform that automates and simplifies developing and managing machine learning ...
Read more >clearml Changelog - pyup.io
Return stub object from `Task.init()` if no `clearml.conf` file is found - Improve manual model uploading example - Remove deprecated demo server. Bug...
Read more >Track Your Experiments With ClearML | by Wasilios Goutas
The ClearML-server is been connected when running your Python script ... you will find an additional project call 'ClearML Examples' which ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks for chiming in @maria8899.
I think we’ll add a “hide examples” control to the UI Settings page in one of the coming versions - Does that makes sense? @fjean ?
Yes! Thank you!