Santipab commited on
Commit
c81538c
Β·
verified Β·
1 Parent(s): 25f0874

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -400,7 +400,7 @@ elif feature == "LA - Image Segmetation":
400
  # ─── PREDICTION ────────────────────────────────────
401
  if img0 is not None and run_la:
402
  img_np = np.array(img0)
403
- model = YOLO('./best_100.pt') # path to your weights
404
  with st.spinner("Running YOLO model…"):
405
  results = model(img_np, imgsz=640)
406
 
 
400
  # ─── PREDICTION ────────────────────────────────────
401
  if img0 is not None and run_la:
402
  img_np = np.array(img0)
403
+ model = YOLO('best_100.pt') # path to your weights
404
  with st.spinner("Running YOLO model…"):
405
  results = model(img_np, imgsz=640)
406