Hi MotionlessSeagull29 , you can get it with the following:
from clearml import Dataset
ds = Dataset.get(dataset_id="<SOME_ID>")
print(ds.project)
You can always use
dir(<PYTHON_OBJECT>)
to see it's different attributes/methods
Hey everyone,
Given a Query object, I see that I can access many things such as dataset_name, id etc.
Howeve,r I want to retrieve not only the dataset_name but the dataset_project its saved under.
How can I access this information?
Hi MotionlessSeagull29 , you can get it with the following:
from clearml import Dataset
ds = Dataset.get(dataset_id="<SOME_ID>")
print(ds.project)
You can always use
dir(<PYTHON_OBJECT>)
to see it's different attributes/methods