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
Is There A Functionality To See The Dependency Structure Of Datasets? Or Has Anyone Written A Script For This?

Is there a functionality to see the dependency structure of datasets? Or has anyone written a script for this? 😄

  
  
Posted 2 years ago
Votes Newest

Answers 6


ah nice, thanks a lot 🙂

  
  
Posted 2 years ago

EnormousWorm79 you mean to get the DAG graph of the Dataset (like you see in the plots section)?

  
  
Posted 2 years ago

If this is the case:
dataset = Dataset.get(...) dataset.get_dependency_graph()https://clear.ml/docs/latest/docs/references/sdk/dataset#get_dependency_graph

  
  
Posted 2 years ago

EnormousWorm79 , Hi 🙂

What do you mean by dependency structure?

  
  
Posted 2 years ago

I think this is covered in the enterprise version

  
  
Posted 2 years ago

Like the relations between the datasets. If I have dataset A as a child of B and B is a child of C I would like to have some textual/visual output like

C<-B<-A

  
  
Posted 2 years ago
639 Views
6 Answers
2 years ago
one year ago
Tags