kadirnar commited on
Commit
7d4a56a
1 Parent(s): e18b82d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -98,19 +98,19 @@ def main():
98
  )
99
 
100
  with gr.Row():
101
- with gr.Column(scale=1):
102
  model_dropdown = gr.Dropdown(
103
  choices=[
104
  "OpenSora-v1-16x256x256.pth",
105
  "OpenSora-v1-HQ-16x256x256.pth",
106
  "OpenSora-v1-HQ-16x512x512.pth"
107
  ],
108
- label=""
109
  )
110
- prompt_text = gr.Textbox(value="", placeholder="Enter prompt text here", lines=4)
111
  submit_button = gr.Button("Run Inference")
112
 
113
- with gr.Column(scale=1.5):
114
  output_video = gr.Video()
115
 
116
  submit_button.click(
 
98
  )
99
 
100
  with gr.Row():
101
+ with gr.Column():
102
  model_dropdown = gr.Dropdown(
103
  choices=[
104
  "OpenSora-v1-16x256x256.pth",
105
  "OpenSora-v1-HQ-16x256x256.pth",
106
  "OpenSora-v1-HQ-16x512x512.pth"
107
  ],
108
+ value="OpenSora-v1-16x256x256.pth"
109
  )
110
+ prompt_text = gr.Textbox(show_label=False, placeholder="Enter prompt text here", lines=4)
111
  submit_button = gr.Button("Run Inference")
112
 
113
+ with gr.Column():
114
  output_video = gr.Video()
115
 
116
  submit_button.click(