Unanswered
Hi, In The Clearml Web Ui, Is It Possible To Edit The Description Of A Project For Which The Description Was Initially Empty? When There Is A Description There Is An "Edit" Button On The Overview Tab. When There Is No Description There Is No "Edit" Button
GreasyPenguin14 That's an annoying bug indeed - Thanks for spotting it. If you need to circumvent it before a fix comes out in one of the near releases, you can programatically use the https://clear.ml/docs/latest/docs/references/api/endpoints#post-projectsupdate e.g.from clearml.backend_api.session.client import APIClient client = APIClient() client.projects.update(project='<project ID>', description='My new description')
Note you can get your project's ID either from the webapp URL, or using the projects.get_all
API.
152 Views
0
Answers
3 years ago
one year ago