Ahsen Khaliq
commited on
Commit
·
ab9a342
1
Parent(s):
4fdb9d2
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,12 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
title = "fastspeech2 hifigan"
|
4 |
+
description = "Gradio demo for fastspeech2 Hifi-GAN. To use it, simply upload your text, or click one of the examples to load them. Read more at the links below."
|
5 |
+
article = "<p style='text-align: center'><a href='https://huggingface.co/espnet/kan-bayashi_ljspeech_joint_finetune_conformer_fastspeech2_hifigan'>Huggingface Model</a></p>"
|
6 |
+
|
7 |
+
gr.Interface.load("huggingface/espnet/kan-bayashi_ljspeech_joint_finetune_conformer_fastspeech2_hifigan",title=title,
|
8 |
+
description=description,
|
9 |
+
article=article,
|
10 |
+
examples=[
|
11 |
+
["The Hobbit is a film series consisting of three high fantasy adventure films directed by Peter Jackson"]
|
12 |
+
]).launch()
|