Julian Bilcke
commited on
Commit
·
8ac0ae4
1
Parent(s):
d5d59a0
remove extra log
Browse files- vms/services/trainer.py +3 -1
vms/services/trainer.py
CHANGED
|
@@ -1253,7 +1253,9 @@ class TrainingService:
|
|
| 1253 |
if state == "Training started" or state == "initializing":
|
| 1254 |
gr.Info("Initializing model and dataset..")
|
| 1255 |
elif state == "training":
|
| 1256 |
-
gr.Info("Training started!")
|
|
|
|
|
|
|
| 1257 |
elif state == "completed":
|
| 1258 |
gr.Info("Training completed!")
|
| 1259 |
|
|
|
|
| 1253 |
if state == "Training started" or state == "initializing":
|
| 1254 |
gr.Info("Initializing model and dataset..")
|
| 1255 |
elif state == "training":
|
| 1256 |
+
#gr.Info("Training started!")
|
| 1257 |
+
# Training is in progress
|
| 1258 |
+
pass
|
| 1259 |
elif state == "completed":
|
| 1260 |
gr.Info("Training completed!")
|
| 1261 |
|