Hi @<1732933002259861504:profile|ComfortableRobin65> , I believe that you would be pulling all 150 files. Why not test it out?
What is expected behaviour of ClearML dataset?
When I doDataset.create(dataset_name='A', dataset_project='P')
above dataset Implicitly becomes v1.0.0 and then I added 100 files, uploaded and finialize it.
then I get this dataset by callingd = Dataset.get(dataset_name='A', dataset_project='P')
e = Dataset.create(dataset_name='A', dataset_project='P', parent_datasets=[d])
this new dataset becomes v2.0.0 Implicitly, and added 50 more files to v2.0.0, then uploaded and finialize it.
then in some other place I list my all datasets, and I use the latest "A" dataset, which latest version now is v2.0.0.
So when I call get_mutable_local_copy()
in v2.0.0,
is 150 files will be clone to 'target_folder' or just the 50?
it is not mention in documentation how behaviour will be.
so plz someone help me here.