yuragoithf commited on
Commit
28f91bd
·
1 Parent(s): b170e19

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -25,9 +25,9 @@ def process_class_list(classes_string: str):
25
  return classes_list
26
 
27
 
28
- def model_inference(img, model_name = "yolos-small-dwr", prob_threshold: int, classes_to_show=str):
29
- feature_extractor = AutoFeatureExtractor.from_pretrained(f"hustvl/{model_name}")
30
- model = YolosForObjectDetection.from_pretrained(f"hustvl/{model_name}")
31
 
32
  img = Image.fromarray(img)
33
 
 
25
  return classes_list
26
 
27
 
28
+ def model_inference(img, prob_threshold, classes_to_show):
29
+ feature_extractor = AutoFeatureExtractor.from_pretrained(f"hustvl/yolos-small-dwr")
30
+ model = YolosForObjectDetection.from_pretrained(f"hustvl/yolos-small-dwr")
31
 
32
  img = Image.fromarray(img)
33