Spaces:
Build error
Build error
brentspell
commited on
Commit
•
c5ee48a
1
Parent(s):
d07be14
flesh out the gradio demo
Browse files- app.py +10 -0
- examples/example.wav +0 -0
app.py
CHANGED
@@ -20,6 +20,16 @@ def extend(audio):
|
|
20 |
|
21 |
gradio.Interface(
|
22 |
fn=extend,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
inputs="audio",
|
24 |
outputs="audio",
|
25 |
).launch()
|
|
|
20 |
|
21 |
gradio.Interface(
|
22 |
fn=extend,
|
23 |
+
examples=[["examples/example.wav"]],
|
24 |
+
title="HiFi-GAN+",
|
25 |
+
description="""
|
26 |
+
An audio bandwidth extension model from the paper
|
27 |
+
[Bandwidth Extension is All You Need](https://doi.org/10.1109/ICASSP39728.2021.9413575)
|
28 |
+
by Su, et al.
|
29 |
+
For more information, see this
|
30 |
+
[blog post](https://brentspell.com/2022/hifi-gan-bwe).
|
31 |
+
""",
|
32 |
+
thumbnail="https://brentspell.com/favicon-32x32.png",
|
33 |
inputs="audio",
|
34 |
outputs="audio",
|
35 |
).launch()
|
examples/example.wav
ADDED
Binary file (493 kB). View file
|
|