till-onethousand commited on
Commit
068c941
·
1 Parent(s): 440ed7f
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ def predict_image(img, conf_threshold, iou_threshold, model_name):
12
  """Predicts objects in an image using a YOLOv8 model with adjustable confidence and IOU thresholds."""
13
  os.chdir('/home/user/app/model')
14
  os.system('ls -l')
15
- os.system(f'/home/user/app/model/darknet detect /home/user/app/model/cfg/yolov2.cfg /home/user/app/model/yolov2.weights /home/user/app/model/data/dog.jpg')
16
 
17
  return '/home/user/app/model/predictions.jpg'
18
 
 
12
  """Predicts objects in an image using a YOLOv8 model with adjustable confidence and IOU thresholds."""
13
  os.chdir('/home/user/app/model')
14
  os.system('ls -l')
15
+ # os.system(f'/home/user/app/model/darknet detect /home/user/app/model/cfg/yolov2.cfg /home/user/app/model/yolov2.weights /home/user/app/model/data/dog.jpg')
16
 
17
  return '/home/user/app/model/predictions.jpg'
18