Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -2,12 +2,11 @@ import gradio as gr
|
|
2 |
from transformers import VitsModel, AutoTokenizer,pipeline
|
3 |
import torch
|
4 |
|
5 |
-
text = "من با ژاله جلسه داشتم."
|
6 |
|
7 |
def TTS(text):
|
8 |
model = VitsModel.from_pretrained("SeyedAli/Persian-Speech-synthesis")
|
9 |
tokenizer = AutoTokenizer.from_pretrained("SeyedAli/Persian-Speech-synthesis")
|
10 |
pipe = pipeline("text-to-speech", model=model,tokenizer=tokenizer)
|
11 |
return pipe(text)
|
12 |
-
iface = gr.Interface(fn=TTS, inputs=
|
13 |
iface.launch()
|
|
|
2 |
from transformers import VitsModel, AutoTokenizer,pipeline
|
3 |
import torch
|
4 |
|
|
|
5 |
|
6 |
def TTS(text):
|
7 |
model = VitsModel.from_pretrained("SeyedAli/Persian-Speech-synthesis")
|
8 |
tokenizer = AutoTokenizer.from_pretrained("SeyedAli/Persian-Speech-synthesis")
|
9 |
pipe = pipeline("text-to-speech", model=model,tokenizer=tokenizer)
|
10 |
return pipe(text)
|
11 |
+
iface = gr.Interface(fn=TTS, inputs="من با ژاله جلسه داشتم.", outputs="من با ژاله جلسه داشتم.")
|
12 |
iface.launch()
|