Kuautli commited on
Commit
2efa24e
·
verified ·
1 Parent(s): d98429b

Update app.py

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