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 one year 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 one year 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 one year ago

CostlyOstrich36 nice! thank you

  
  
Posted one year ago

Also how about this

  
  
Posted one year ago

How is the model saved?

  
  
Posted one year 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 one year ago

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

  
  
Posted one year ago
100 Views
9 Answers
one year ago
4 months ago
Tags