merve HF staff commited on
Commit
eb9c0c4
1 Parent(s): 0170535

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -58,7 +58,7 @@ def query_image(img, text_queries, owl_threshold, dino_threshold):
58
  text_queries = text_queries
59
  text_queries = text_queries.split(",")
60
  owl_output = infer(img, text_queries, owl_threshold, "owl")
61
- dino_output = infer(img, text_queries, owl_threshold, "dino")
62
 
63
 
64
  return (img, owl_output), (img, dino_output)
 
58
  text_queries = text_queries
59
  text_queries = text_queries.split(",")
60
  owl_output = infer(img, text_queries, owl_threshold, "owl")
61
+ dino_output = infer(img, text_queries, dino_threshold, "dino")
62
 
63
 
64
  return (img, owl_output), (img, dino_output)