Unanswered
Is There A Way To Tag A Task/Dataset "Folder" With The Sdk? In The Ui There Is An Option To Add A Tag To A Certain Project Folder, But In Python It Seems That It Can Be Done Only On Single Task Runs.
Hi @<1570220858075516928:profile|SlipperySheep79> , you can use the APIClient
to do that, like this:
from clearml.backend_api.session.client import APIClient
client = APIClient()
# update tags for a dataset folder
client.projects.update(project="id", tags=["foo"])
165 Views
0
Answers
one year ago
one year ago