SeyedAli's picture
Update app.py
73316e5
raw
history blame
452 Bytes
import gradio as gr
from transformers import VitsModel, AutoTokenizer
import torch
text = "من با ژاله جلسه داشتم."
def TTS(text):
model = VitsModel.from_pretrained("SeyedAli/Persian-Speech-synthesis")
tokenizer = AutoTokenizer.from_pretrained("SeyedAli/Persian-Speech-synthesis")
pipe = pipeline("text-to-speech", model=model,tokenizer=tokenizer)
iface = gr.Interface(fn=TTS, inputs=text, outputs=pipe(text))
iface.launch()