jbilcke-hf HF Staff commited on
Commit
e020146
·
1 Parent(s): 91fb4ef
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -1208,11 +1208,14 @@ class VideoTrainerUI:
1208
  timer = gr.Timer(value=1)
1209
  timer.tick(
1210
  fn=lambda: (
1211
- self.refresh_training_status_and_logs()
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