Unanswered
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 @<1797075640948625408:profile|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
106 Views
0
Answers
7 months ago
7 months ago