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 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
29 Views
0
Answers
one month ago
one month ago