Alexxggs commited on
Commit
0c31136
·
1 Parent(s): c971455

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -159,7 +159,7 @@ def ui_full(launch_kwargs):
159
  topp = gr.Number(label="Top-p", value=0, interactive=True)
160
  temperature = gr.Number(label="Temperature", value=1.0, interactive=True)
161
  cfg_coef = gr.Number(label="Classifier Free Guidance", value=3.0, interactive=True)
162
- with gr.Row():
163
  output = gr.Video(label="Generated Music")
164
  submit.click(predict_full, inputs=[model, text, melody, duration, topk, topp, temperature, cfg_coef], outputs=[output])
165
 
 
159
  topp = gr.Number(label="Top-p", value=0, interactive=True)
160
  temperature = gr.Number(label="Temperature", value=1.0, interactive=True)
161
  cfg_coef = gr.Number(label="Classifier Free Guidance", value=3.0, interactive=True)
162
+ with gr.Column():
163
  output = gr.Video(label="Generated Music")
164
  submit.click(predict_full, inputs=[model, text, melody, duration, topk, topp, temperature, cfg_coef], outputs=[output])
165