shun-ren commited on
Commit
7b4fa17
·
1 Parent(s): 75c21c4

Fix model path

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ import threading
10
  # -------------------------
11
  # Model + IP camera config
12
  # -------------------------
13
- model = YOLO('/Paper-detection-model/best.pt') # your trained weights
14
  ip_url = None # change to your IP webcam URL
15
 
16
  # -------------------------
 
10
  # -------------------------
11
  # Model + IP camera config
12
  # -------------------------
13
+ model = YOLO('/best.pt') # your trained weights
14
  ip_url = None # change to your IP webcam URL
15
 
16
  # -------------------------