Spaces:
Running
on
Zero
Running
on
Zero
File size: 348 Bytes
a66ecf5 7c7fa4d a66ecf5 |
1 2 3 4 5 6 7 8 9 10 |
import gradio as gr
from musiclib import musicgen
def gen(piano_only):
return musicgen(piano_only=piano_only)
with gr.Blocks() as demo:
piano_only = gr.Checkbox(label="Piano Only")
synth = gr.Button("Synthesize")
fileout = gr.File(interactive=False)
synth.click(gen, inputs=[piano_only], outputs=[fileout])
demo.queue().launch() |