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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -25,7 +25,7 @@ def process_class_list(classes_string: str):
25
  return classes_list
26
 
27
 
28
- def model_inference(img, model_name: str = "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
 
 
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