Spaces:
Running
Running
Commit
·
9a2a7a2
1
Parent(s):
19faeb7
emergency fix
Browse files- vms/training_service.py +2 -1
vms/training_service.py
CHANGED
@@ -241,7 +241,8 @@ class TrainingService:
|
|
241 |
try:
|
242 |
# Get absolute paths
|
243 |
current_dir = Path(__file__).parent.absolute()
|
244 |
-
train_script = current_dir / "train.py"
|
|
|
245 |
|
246 |
if not train_script.exists():
|
247 |
error_msg = f"Training script not found at {train_script}"
|
|
|
241 |
try:
|
242 |
# Get absolute paths
|
243 |
current_dir = Path(__file__).parent.absolute()
|
244 |
+
train_script = current_dir.parent / "train.py"
|
245 |
+
|
246 |
|
247 |
if not train_script.exists():
|
248 |
error_msg = f"Training script not found at {train_script}"
|