shun-ren commited on
Commit
0c3468c
·
1 Parent(s): 7b4fa17

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('/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
  # -------------------------