SeyedAli commited on
Commit
c48c2af
·
1 Parent(s): 55b66e4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
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=text, outputs=TTS(text))
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()