arnavam commited on
Commit
45e0d59
·
1 Parent(s): 5bba11c

Force rebuild - add comment

Browse files
Files changed (1) hide show
  1. services/multi_tracker.py +3 -3
services/multi_tracker.py CHANGED
@@ -13,11 +13,11 @@ class MultiTracker:
13
 
14
  # Determine paths
15
 
16
- # Get the directory containing the current script (server.py)
17
  base_dir = Path(__file__).parent.parent
18
 
19
- # Go up one level (to afs/), then into Model/
20
- detector_model_path = base_dir.parent / "Model" / "yolov8n-face.pt"
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: