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
Hi, Working With Clearml 1.6.4 What Is The Correct Way To List All The

Hi,
working with clearml 1.6.4
what is the correct way to list all the dataset s within a specific project ?

  
  
Posted one year ago
Votes Newest

Answers 4


Hi OutrageousSheep60 . The list_datasets function is currently broken and will be fixed next release

  
  
Posted one year ago

Dataset.list_datasets(dataset_project='XXXX')

Always returns an empty list

  
  
Posted one year ago

I think this is what you're looking for 🙂
https://clear.ml/docs/latest/docs/references/sdk/dataset#datasetlist_datasets

  
  
Posted one year ago

This is my current solution
[ds for ds in dataset.list_datasets() if ds['project'].split('/')[0]==<PROJEFCT_NAME>]

  
  
Posted one year ago