Ahsen Khaliq commited on
Commit
c133ada
1 Parent(s): df01263

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -12,10 +12,10 @@ inputs = gr.inputs.Audio(type="file", label="Input Audio")
12
  outputs = gr.outputs.Audio(type="file",label="Output Audio")
13
 
14
 
15
- title = "VITS"
16
- description = "demo for VITS: Conditional Variational Autoencoder with Adversarial Learning for End-to-End Text-to-Speech. To use it, simply add your text, or click one of the examples to load them. Read more at the links below."
17
- article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2106.06103'>Conditional Variational Autoencoder with Adversarial Learning for End-to-End Text-to-Speech</a> | <a href='https://github.com/jaywalnut310/vits'>Github Repo</a></p>"
18
 
 
19
 
20
-
21
- gr.Interface(inference, inputs, outputs, title=title, description=description, article=article).launch()
12
  outputs = gr.outputs.Audio(type="file",label="Output Audio")
13
 
14
 
15
+ title = "Voice Fixer"
16
+ description = "Gradio demo for VoiceFixer: Toward General Speech Restoration With Neural Vocoder. To use it, simply add your audio, or click one of the examples to load them. Read more at the links below."
17
+ article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2109.13731' target='_blank'>VoiceFixer: Toward General Speech Restoration With Neural Vocoder</a> | <a href='https://github.com/haoheliu/voicefixer_main' target='_blank'>Github Repo</a></p>"
18
 
19
+ examples=[['bruce.wav']]
20
 
21
+ gr.Interface(inference, inputs, outputs, title=title, description=description, article=article, examples=examples).launch()