Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -36,5 +36,5 @@ demo = gr.Interface(fn=predict, inputs=[
|
|
36 |
gr.Slider(0.0, 1.0, value=1.0, step=0.1, label="conditioning scale"),
|
37 |
gr.Slider(0, 50, value=20, step=0.1, label="inference steps"),
|
38 |
gr.Checkbox(label="guess mode")
|
39 |
-
], outputs="audio", examples=[["S00.mid", "piano", "", 10, 1.0, 20, False]], cache_examples=True)
|
40 |
demo.launch()
|
|
|
36 |
gr.Slider(0.0, 1.0, value=1.0, step=0.1, label="conditioning scale"),
|
37 |
gr.Slider(0, 50, value=20, step=0.1, label="inference steps"),
|
38 |
gr.Checkbox(label="guess mode")
|
39 |
+
], outputs="audio", examples=[["S00.mid", "piano", "", 10, 1.0, 20, False]], cache_examples=True, title="MIDI-AudioLDM", description="MIDI-AudioLDM is a MIDI-conditioned text-to-audio model based on the open-source project AudioLDM. The model has been conditioned using the ControlNet architecture and has been developed within Hugging Face’s Diffusers framework. Once trained, MIDI-AudioLDM accepts a MIDI file and a text prompt as input and returns an audio file, which is an interpretation of the MIDI based on the given text description. This enables detailed control over different musical aspects such as notes, mood and timbre.")
|
40 |
demo.launch()
|