Spaces:
Runtime error
Runtime error
datnth1709
commited on
Commit
·
15dadb3
1
Parent(s):
16a1150
update speech2text module
Browse files
app.py
CHANGED
@@ -89,7 +89,8 @@ def inference(audio):
|
|
89 |
"""Gradio demo"""
|
90 |
|
91 |
vi_example_text = ["Có phải bạn đang muốn tìm mua nhà ở ngoại ô thành phố Hồ Chí Minh không?",
|
92 |
-
"
|
|
|
93 |
|
94 |
vi_example_voice =[['vi_speech_01.wav'], ['vi_speech_02.wav'], ['vi_speech_03.wav']]
|
95 |
|
@@ -101,8 +102,8 @@ with gr.Blocks() as demo:
|
|
101 |
vietnamese = gr.Textbox(label="Vietnamese Text")
|
102 |
translate_to_english = gr.Button(value="Translate To English")
|
103 |
with gr.Column():
|
104 |
-
|
105 |
-
translate_to_english.click(lambda text: translate_vi2en(text), inputs=vietnamese, outputs=
|
106 |
gr.Examples(examples=vi_example_text,
|
107 |
inputs=[vietnamese])
|
108 |
with gr.TabItem("Speech2text and translation"):
|
@@ -111,9 +112,9 @@ with gr.Blocks() as demo:
|
|
111 |
audio = gr.Audio(source="microphone", label="Input Audio", type="filepath")
|
112 |
translate_button = gr.Button(value="Translate To English")
|
113 |
with gr.Column():
|
114 |
-
|
115 |
|
116 |
-
translate_button.click(lambda voice: inference(voice), inputs=audio, outputs=
|
117 |
gr.Examples(examples=vi_example_voice,
|
118 |
inputs=[audio])
|
119 |
|
|
|
89 |
"""Gradio demo"""
|
90 |
|
91 |
vi_example_text = ["Có phải bạn đang muốn tìm mua nhà ở ngoại ô thành phố Hồ Chí Minh không?",
|
92 |
+
"Ánh mắt ta chạm nhau. Chỉ muốn ngắm anh lâu thật lâu.",
|
93 |
+
"Nếu như một câu nói có thể khiến em vui."]
|
94 |
|
95 |
vi_example_voice =[['vi_speech_01.wav'], ['vi_speech_02.wav'], ['vi_speech_03.wav']]
|
96 |
|
|
|
102 |
vietnamese = gr.Textbox(label="Vietnamese Text")
|
103 |
translate_to_english = gr.Button(value="Translate To English")
|
104 |
with gr.Column():
|
105 |
+
english1 = gr.Textbox(label="English Text")
|
106 |
+
translate_to_english.click(lambda text: translate_vi2en(text), inputs=vietnamese, outputs=english1)
|
107 |
gr.Examples(examples=vi_example_text,
|
108 |
inputs=[vietnamese])
|
109 |
with gr.TabItem("Speech2text and translation"):
|
|
|
112 |
audio = gr.Audio(source="microphone", label="Input Audio", type="filepath")
|
113 |
translate_button = gr.Button(value="Translate To English")
|
114 |
with gr.Column():
|
115 |
+
english2 = gr.Textbox(label="English Text")
|
116 |
|
117 |
+
translate_button.click(lambda voice: inference(voice), inputs=audio, outputs=english2)
|
118 |
gr.Examples(examples=vi_example_voice,
|
119 |
inputs=[audio])
|
120 |
|