DawnC commited on
Commit
676b381
·
1 Parent(s): 9fa10e6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -150,7 +150,7 @@ async def predict_single_dog(image):
150
  return top1_prob, topk_breeds, relative_probs
151
 
152
 
153
- async def detect_multiple_dogs(image, conf_threshold=0.35, iou_threshold=0.45):
154
  results = model_yolo(image, conf=conf_threshold, iou=iou_threshold)[0]
155
  dogs = []
156
  boxes = []
 
150
  return top1_prob, topk_breeds, relative_probs
151
 
152
 
153
+ async def detect_multiple_dogs(image, conf_threshold=0.35, iou_threshold=0.4):
154
  results = model_yolo(image, conf=conf_threshold, iou=iou_threshold)[0]
155
  dogs = []
156
  boxes = []