Spaces:
Sleeping
Sleeping
Force rebuild - add comment
Browse files
services/multi_tracker.py
CHANGED
|
@@ -13,11 +13,11 @@ class MultiTracker:
|
|
| 13 |
|
| 14 |
# Determine paths
|
| 15 |
|
| 16 |
-
# Get the directory containing the current script (
|
| 17 |
base_dir = Path(__file__).parent.parent
|
| 18 |
|
| 19 |
-
#
|
| 20 |
-
detector_model_path = base_dir
|
| 21 |
print(detector_model_path,"de")
|
| 22 |
|
| 23 |
try:
|
|
|
|
| 13 |
|
| 14 |
# Determine paths
|
| 15 |
|
| 16 |
+
# Get the directory containing the current script (multi_tracker.py)
|
| 17 |
base_dir = Path(__file__).parent.parent
|
| 18 |
|
| 19 |
+
# Model folder is now inside backend/
|
| 20 |
+
detector_model_path = base_dir / "Model" / "yolov8n-face.pt"
|
| 21 |
print(detector_model_path,"de")
|
| 22 |
|
| 23 |
try:
|