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
The

the Dataset method create seems to expect the parameter parent_datasets in the form of a list indicating the parent dataset task IDs, instead of the name. This is not very clear from the documentation

  
  
Posted 3 years ago
Votes Newest

Answers 5


Do you think this is better ? (the API documentation is coming directly from the python doc-string, so the code will always have the latest documentation)
https://github.com/allegroai/clearml/blob/c58e8a4c6a1294f8acec6ed9cba81c3b91aa2abd/clearml/datasets/dataset.py#L633

  
  
Posted 3 years ago

well, what are the types of input expected? is parent_datasets a list of names or IDs?

  
  
Posted 3 years ago

Optional[Sequence[Union[str, Dataset]]]None, list of string or list of Datasets objects
(each one is a parent (supporting multiple parents)

  
  
Posted 3 years ago

This is not very clear from the documentation

ElegantCoyote26 which documentation are you referring to ?

  
  
Posted 3 years ago