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
A Suggestion To Add

A suggestion to add task_name parameter to InputModel.__ init__ . As for now I can search by project name and model name, but what if I had 2 models within the same project in 2 different tasks, but having the same model name? This is exactly what I ran into btw

  
  
Posted 2 years ago
Votes Newest

Answers 9


In that case you can use the model ID. Please note that your suggestion wouldn't necessarily solve the problem since a task can have two models with the same name in the same task in the same project...

  
  
Posted 2 years ago

Searching by model ID is good idea, but how do I fetch it from the code? In principle, InputModels are rarely defined automatically, so I could look up for the ID manually...

  
  
Posted 2 years ago

hm, ok, and what model will be fetched in this case?

  
  
Posted 2 years ago

yeah, I mean I need to get the model to get its ID, but I need to get ID to get the model

  
  
Posted 2 years ago

How is the model saved?

  
  
Posted 2 years ago

Also how about this

  
  
Posted 2 years ago

CostlyOstrich36 nice! thank you

  
  
Posted 2 years ago
591 Views
9 Answers
2 years ago
one year ago
Tags