Spaces:
Sleeping
Sleeping
Commit
·
57ceb45
1
Parent(s):
d7de222
Update app.py
Browse files
app.py
CHANGED
@@ -181,7 +181,7 @@ description = ("Cette démo Gradio permet d'anonymiser une voix grâce à une im
|
|
181 |
"environnement de production.")
|
182 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2210.15418' target='_blank'>Article FreeVC</a> | <a href='https://arxiv.org/abs/2110.13900' target='_blank'>Article WavLM</a> | <a href='http://www.openslr.org/94/' target='_blank'>Jeu de données MLS</a></p>"
|
183 |
|
184 |
-
|
185 |
|
186 |
-
|
187 |
-
gr.Interface(convert, inputs, outputs, title=title, description=description, article=article, enable_queue=True).launch()
|
|
|
181 |
"environnement de production.")
|
182 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2210.15418' target='_blank'>Article FreeVC</a> | <a href='https://arxiv.org/abs/2110.13900' target='_blank'>Article WavLM</a> | <a href='http://www.openslr.org/94/' target='_blank'>Jeu de données MLS</a></p>"
|
183 |
|
184 |
+
examples=[["FreeVC MLS",'SAMPLE_NADINE_MALICIEUX.wav','SAMPLE_NADINE_MALICIEUX.wav', 'aléatoire (homme)'], ["FreeVC MLS",'SAMPLE_HUGO_METEO.wav','SAMPLE_HUGO_METEO.wav', 'aléatoire (femme)'],["FreeVC MLS",'Julien30sec.wav','Julien30sec.wav', 'aléatoire (femme)'],]
|
185 |
|
186 |
+
gr.Interface(convert, inputs, outputs, title=title, description=description, article=article, examples=examples, enable_queue=True).launch()
|
187 |
+
#gr.Interface(convert, inputs, outputs, title=title, description=description, article=article, enable_queue=True).launch()
|