lunarring commited on
Commit
1dbac0b
·
1 Parent(s): 62118c2
Files changed (1) hide show
  1. gradio_ui.py +3 -3
gradio_ui.py CHANGED
@@ -368,8 +368,8 @@ if __name__ == "__main__":
368
  with gr.Row():
369
  duration_compute = gr.Slider(10, 25, bf.t_compute_max_allowed, step=1, label='waiting time', interactive=True)
370
  duration_video = gr.Slider(1, 100, bf.duration_video, step=0.1, label='video duration', interactive=True)
371
- height = gr.Slider(256, 2048, bf.height, step=128, label='height', interactive=True)
372
- width = gr.Slider(256, 2048, bf.width, step=128, label='width', interactive=True)
373
 
374
  with gr.Accordion("Advanced Settings (click to expand)", open=False):
375
 
@@ -425,7 +425,7 @@ if __name__ == "__main__":
425
  """
426
  # Parameters
427
  ## Main
428
- - compute budget: set your waiting time for the transition. high values = better quality
429
  - video duration: seconds per segment
430
  - height/width: in pixels
431
 
 
368
  with gr.Row():
369
  duration_compute = gr.Slider(10, 25, bf.t_compute_max_allowed, step=1, label='waiting time', interactive=True)
370
  duration_video = gr.Slider(1, 100, bf.duration_video, step=0.1, label='video duration', interactive=True)
371
+ height = gr.Slider(256, 1024, bf.height, step=128, label='height', interactive=True)
372
+ width = gr.Slider(256, 1024, bf.width, step=128, label='width', interactive=True)
373
 
374
  with gr.Accordion("Advanced Settings (click to expand)", open=False):
375
 
 
425
  """
426
  # Parameters
427
  ## Main
428
+ - waiting time: set your waiting time for the transition. high values = better quality
429
  - video duration: seconds per segment
430
  - height/width: in pixels
431