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 An Efficient Way To Query All Unique Models (Ie Excluding Versions) In A Project?

Is there an efficient way to query ALL unique models (ie excluding versions) in a project?

  
  
Posted 3 years ago
Votes Newest

Answers 9


What do you mean? every Model has a unique ID, what do you consider a version?

  
  
Posted 3 years ago

And anyway once a model is published can’t update it right?

Correct, and also the creating Task is published (i.e. locked)

  
  
Posted 3 years ago

Yes I have multiple lines

  
  
Posted 3 years ago

And anyway once a model is published can’t update it right? Which means there will be atleast multiple published models entries of same model over time?

  
  
Posted 3 years ago

each of it gets pushed as a separate Model entity right?

Correct

But there’s only one unique model with multiple different version of it

Do you see multiple lines in the Model repository ? (every line is an entity) basically if you store it under the same local file, it will override the model entry (i.e. reuse it and upgrade the file itself), otherwise you are creating a new model, "version" will be progress in time ?

  
  
Posted 3 years ago

If i publish a keras_mnist model and experiment on, each of it gets pushed as a separate Model entity right? But there’s only one unique model with multiple different version of it

  
  
Posted 3 years ago

Which means there will be atleast multiple published models entries of same model over time?

Only the specific one will be published (not all the Models the Task created)

  
  
Posted 3 years ago

Do people generally update the same model “entry”? That feels so wrong to me…how do you reproduce a older model version or do a rollback etc?

Correct, they do not 🙂 On the Task itself the output models will reflect the diff filenames you saved, usually ppl just add a running number.

  
  
Posted 3 years ago

Do people generally update the same model “entry”? That feels so wrong to me…how do you reproduce a older model version or do a rollback etc?

  
  
Posted 3 years ago
813 Views
9 Answers
3 years ago
one year ago
Tags