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
Good Morning! I Have A Quick Question Regarding Clearml Dataset. When Creating A New Dataset, You Have The Option To Create A Description With

good morning!
I have a quick question regarding ClearML Dataset. When creating a new dataset, you have the option to create a description with .set_description but how do i get that description back in a script without using the UI? is there a something equivalent to .get_description ?

  
  
Posted 11 months ago
Votes Newest

Answers


Hi @<1547028031053238272:profile|MassiveGoldfish6> , I think you can access the description by fetching the dataset and searching inside the different attributes. You can use dir() in python to see what's attached. I think you can look for Dataset.data after you fetch it

  
  
Posted 11 months ago