Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -53,11 +53,11 @@ with gr.Blocks(title="🎹 MIDI-AudioLDM", theme=gr.themes.Base(text_size=gr.the
|
|
53 |
with gr.Column(variant='panel'):
|
54 |
audio = gr.Audio(label="audio")
|
55 |
with gr.Accordion("Advanced Settings", open=False):
|
56 |
-
neg_prompt = gr.Textbox(label="negative prompt", info="
|
57 |
-
duration = gr.Slider(0, 30, value=5, step=5, label="duration (seconds)", info="
|
58 |
seed = gr.Number(value=42, label="seed", info="Change the random seed for a different generation result.")
|
59 |
cond = gr.Slider(0.0, 1.0, value=1.0, step=0.1, label="conditioning scale", info="Enter a value between 0 and 1. The larger the more it will take the conditioning into account.")
|
60 |
-
inf = gr.Slider(0, 50, value=20, step=0.1, label="inference steps", info="Edit the number of denoising steps. More inference steps usually
|
61 |
guess = gr.Checkbox(label="guess mode", info="If true, the model will try to recognize the content of the conditioning without the need of a text prompt.")
|
62 |
btn = gr.Button("Generate")
|
63 |
btn.click(predict, inputs=[midi, prompt, neg_prompt, duration, seed, cond, inf, guess], outputs=[audio])
|
|
|
53 |
with gr.Column(variant='panel'):
|
54 |
audio = gr.Audio(label="audio")
|
55 |
with gr.Accordion("Advanced Settings", open=False):
|
56 |
+
neg_prompt = gr.Textbox(label="negative prompt", info="Enter a negative prompt not to guide the audio generation.")
|
57 |
+
duration = gr.Slider(0, 30, value=5, step=5, label="duration (seconds)", info="Modify the duration of the output audio file.")
|
58 |
seed = gr.Number(value=42, label="seed", info="Change the random seed for a different generation result.")
|
59 |
cond = gr.Slider(0.0, 1.0, value=1.0, step=0.1, label="conditioning scale", info="Enter a value between 0 and 1. The larger the more it will take the conditioning into account.")
|
60 |
+
inf = gr.Slider(0, 50, value=20, step=0.1, label="inference steps", info="Edit the number of denoising steps. More inference steps usually leads to better but slower results.")
|
61 |
guess = gr.Checkbox(label="guess mode", info="If true, the model will try to recognize the content of the conditioning without the need of a text prompt.")
|
62 |
btn = gr.Button("Generate")
|
63 |
btn.click(predict, inputs=[midi, prompt, neg_prompt, duration, seed, cond, inf, guess], outputs=[audio])
|