Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
What Is Expected Behaviour Of Clearml Dataset? When I Do

What is expected behaviour of ClearML dataset?
When I do
Dataset.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 calling
d = 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.

  
  
Posted one month ago
Votes Newest

Answers


Hi @<1732933002259861504:profile|ComfortableRobin65> , I believe that you would be pulling all 150 files. Why not test it out?

  
  
Posted one month ago