SeyedAli's picture
Create app.py
03fc43e
raw
history blame
No virus
453 Bytes
import gradio as gr
from transformers import VitsModel, AutoTokenizer
import torch
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)
text = "من با ژاله جلسه داشتم."
iface = gr.Interface(fn=TTS, inputs=text, outputs=pipe(text))
iface.launch()