Jass0117 commited on
Commit
4a15ca7
·
verified ·
1 Parent(s): 2d0125c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ from ultralytics import YOLO
6
 
7
  def predict(path:str):
8
  model = YOLO("yolov8s.yaml")
9
- model = YOLO("best-underwater.pt")
10
  imagen = cv2.imread(path)
11
  results = model.predict(source=path)
12
 
 
6
 
7
  def predict(path:str):
8
  model = YOLO("yolov8s.yaml")
9
+ model = YOLO("best_dxrayv0.pt")
10
  imagen = cv2.imread(path)
11
  results = model.predict(source=path)
12