Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -23,10 +23,11 @@ title = "Music Spectrogram Diffusion: Multi-instrument Music Synthesis with Spec
|
|
23 |
|
24 |
description = """
|
25 |
In this work, the authors focus on a middle ground of neural synthesizers that can generate audio from MIDI sequences with arbitrary combinations of instruments in realtime.
|
26 |
-
This enables training on a wide range of
|
27 |
|
28 |
They use a simple two-stage process: MIDI to spectrograms with an encoder-decoder Transformer, then spectrograms to audio with a generative adversarial network (GAN) spectrogram inverter.
|
29 |
"""
|
|
|
30 |
|
31 |
|
32 |
gr.Interface(
|
@@ -39,4 +40,5 @@ gr.Interface(
|
|
39 |
],
|
40 |
title=title,
|
41 |
description=description,
|
|
|
42 |
).launch(debug=True)
|
|
|
23 |
|
24 |
description = """
|
25 |
In this work, the authors focus on a middle ground of neural synthesizers that can generate audio from MIDI sequences with arbitrary combinations of instruments in realtime.
|
26 |
+
This enables training on a wide range of transcription datasets with a single model, which in turn offers note-level control of composition and instrumentation across a wide range of instruments.
|
27 |
|
28 |
They use a simple two-stage process: MIDI to spectrograms with an encoder-decoder Transformer, then spectrograms to audio with a generative adversarial network (GAN) spectrogram inverter.
|
29 |
"""
|
30 |
+
examples = []
|
31 |
|
32 |
|
33 |
gr.Interface(
|
|
|
40 |
],
|
41 |
title=title,
|
42 |
description=description,
|
43 |
+
theme='gstaff/xkcd',
|
44 |
).launch(debug=True)
|