anderbogia commited on
Commit
32a72a1
·
verified ·
1 Parent(s): a3ab68c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -65,10 +65,10 @@ with gr.Blocks(theme = gr.themes.Soft()) as demo:
65
 
66
 
67
  def tts_run(input):
68
- tokenizer_tts(input, return_tensors="pt")
69
 
70
  with torch.no_grad():
71
- output = model_tts(**inputs).waveform
72
 
73
  gradio_tuple = [16000, output]
74
 
@@ -85,7 +85,7 @@ with gr.Blocks(theme = gr.themes.Soft()) as demo:
85
  """)
86
  with gr.Column(scale = 4):
87
  with gr.Tab("Rolou kumaa ginarit"):
88
- input_audio = gr.Audio(sources = "microphone", type = "filepath", label = "Gakamai rolou nu")
89
  output_text = gr.components.Textbox(label = "Dalinsuat")
90
  button1 = gr.Button("Dalinsuato' | Transcribe")
91
  button1.click(transcribe, inputs = input_audio, outputs = output_text)
 
65
 
66
 
67
  def tts_run(input):
68
+ tokenized_input = tokenizer_tts(input, return_tensors="pt")
69
 
70
  with torch.no_grad():
71
+ output = model_tts(**tokenized_input).waveform
72
 
73
  gradio_tuple = [16000, output]
74
 
 
85
  """)
86
  with gr.Column(scale = 4):
87
  with gr.Tab("Rolou kumaa ginarit"):
88
+ input_audio = gr.Audio(sources = ["microphone"], type = "filepath", label = "Gakamai rolou nu")
89
  output_text = gr.components.Textbox(label = "Dalinsuat")
90
  button1 = gr.Button("Dalinsuato' | Transcribe")
91
  button1.click(transcribe, inputs = input_audio, outputs = output_text)