Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -37,6 +37,7 @@ def localOutlineBox(image, selected_model="yolo_accurate"):
|
|
| 37 |
model_path = "./vt_dataset_yolov12_v7_weights.pt"
|
| 38 |
if os.path.exists(model_path):
|
| 39 |
print("model exists")
|
|
|
|
| 40 |
else:
|
| 41 |
print("model is not available")
|
| 42 |
model = YOLO(model_path)
|
|
|
|
| 37 |
model_path = "./vt_dataset_yolov12_v7_weights.pt"
|
| 38 |
if os.path.exists(model_path):
|
| 39 |
print("model exists")
|
| 40 |
+
print(f'current model path is: {model_path}')
|
| 41 |
else:
|
| 42 |
print("model is not available")
|
| 43 |
model = YOLO(model_path)
|