Spaces:
Running
Running
Commit
·
b7c0de1
1
Parent(s):
b1855df
fix
Browse files
vms/ui/monitoring/tabs/__init__.py
CHANGED
@@ -3,7 +3,9 @@ Tab components for the "monitor" view
|
|
3 |
"""
|
4 |
|
5 |
from .general_tab import GeneralTab
|
|
|
6 |
|
7 |
__all__ = [
|
8 |
-
'GeneralTab'
|
|
|
9 |
]
|
|
|
3 |
"""
|
4 |
|
5 |
from .general_tab import GeneralTab
|
6 |
+
from .gpu_tab import GPUTab
|
7 |
|
8 |
__all__ = [
|
9 |
+
'GeneralTab',
|
10 |
+
'GPUTab'
|
11 |
]
|
vms/ui/project/services/training.py
CHANGED
@@ -1150,7 +1150,7 @@ class TrainingService:
|
|
1150 |
"learning_rate": params.get('learning_rate', DEFAULT_LEARNING_RATE),
|
1151 |
"save_iterations": params.get('save_iterations', DEFAULT_SAVE_CHECKPOINT_EVERY_N_STEPS),
|
1152 |
"training_preset": params.get('preset_name', list(TRAINING_PRESETS.keys())[0]),
|
1153 |
-
"auto_resume_checkbox":
|
1154 |
})
|
1155 |
|
1156 |
# Check if we should auto-recover (immediate restart)
|
|
|
1150 |
"learning_rate": params.get('learning_rate', DEFAULT_LEARNING_RATE),
|
1151 |
"save_iterations": params.get('save_iterations', DEFAULT_SAVE_CHECKPOINT_EVERY_N_STEPS),
|
1152 |
"training_preset": params.get('preset_name', list(TRAINING_PRESETS.keys())[0]),
|
1153 |
+
"auto_resume_checkbox": params.get("auto_resume", DEFAULT_AUTO_RESUME)
|
1154 |
})
|
1155 |
|
1156 |
# Check if we should auto-recover (immediate restart)
|