Update app.py
Browse files
app.py
CHANGED
|
@@ -38,7 +38,7 @@ options = st.sidebar.radio(
|
|
| 38 |
|
| 39 |
# YOLOv8 Model
|
| 40 |
if model_type == 'YOLOv8':
|
| 41 |
-
path_model_file = '
|
| 42 |
from ultralytics import YOLO
|
| 43 |
model = YOLO(path_model_file)
|
| 44 |
|
|
|
|
| 38 |
|
| 39 |
# YOLOv8 Model
|
| 40 |
if model_type == 'YOLOv8':
|
| 41 |
+
path_model_file = 'yolov8m.pt'
|
| 42 |
from ultralytics import YOLO
|
| 43 |
model = YOLO(path_model_file)
|
| 44 |
|