Spaces:
Runtime error
Runtime error
Julian Bilcke
commited on
Commit
·
e020146
1
Parent(s):
91fb4ef
small fix
Browse files
app.py
CHANGED
|
@@ -1208,11 +1208,14 @@ class VideoTrainerUI:
|
|
| 1208 |
timer = gr.Timer(value=1)
|
| 1209 |
timer.tick(
|
| 1210 |
fn=lambda: (
|
| 1211 |
-
self.
|
| 1212 |
),
|
| 1213 |
outputs=[
|
| 1214 |
status_box,
|
| 1215 |
-
log_box
|
|
|
|
|
|
|
|
|
|
| 1216 |
]
|
| 1217 |
)
|
| 1218 |
|
|
|
|
| 1208 |
timer = gr.Timer(value=1)
|
| 1209 |
timer.tick(
|
| 1210 |
fn=lambda: (
|
| 1211 |
+
self.refresh_training_status()
|
| 1212 |
),
|
| 1213 |
outputs=[
|
| 1214 |
status_box,
|
| 1215 |
+
log_box,
|
| 1216 |
+
start_btn,
|
| 1217 |
+
stop_btn,
|
| 1218 |
+
pause_resume_btn
|
| 1219 |
]
|
| 1220 |
)
|
| 1221 |
|