Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
4 |
-
pipe = pipeline(task="
|
5 |
-
model="
|
6 |
gr.Interface.from_pipeline(pipe,
|
7 |
-
title="
|
8 |
-
description="Using pipeline with
|
9 |
).launch(inbrowser=True)
|
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
4 |
+
pipe = pipeline(task="text-to-apeech",
|
5 |
+
model="espnet/kan-bayashi_ljspeech_vits")
|
6 |
gr.Interface.from_pipeline(pipe,
|
7 |
+
title="TTS",
|
8 |
+
description="Using pipeline with VITS TTS",
|
9 |
).launch(inbrowser=True)
|