Spaces:
Runtime error
Runtime error
Upload app.py
Browse files
app.py
CHANGED
@@ -73,6 +73,8 @@ description = """
|
|
73 |
* Сначала модель распознает речь с помощью voidful/wav2vec2-xlsr-multilingual-56 и возвращает текст на любом из 56 языков.
|
74 |
* Далее происходит перевод текста с любого на английский с помощью Helsinki-NLP/opus-mt-mul-en, а затем с английского на русский также с помощью Helsinki-NLP/opus-mt-en-ru
|
75 |
* В конце осуществляется воспроизведение русского текста моделью facebook/mms-tts-rus
|
|
|
|
|
76 |
Demo for cascaded speech-to-speech translation (STST), mapping from source speech in any language to target speech in Russian. Demo uses facebook/mms-tts-rus model for text-to-speech:
|
77 |
![Cascaded STST](https://huggingface.co/datasets/huggingface-course/audio-course-images/resolve/main/s2st_cascaded.png "Diagram of cascaded speech to speech translation")
|
78 |
"""
|
@@ -98,5 +100,5 @@ file_translate = gr.Interface(
|
|
98 |
with demo:
|
99 |
gr.TabbedInterface([mic_translate, file_translate], ["Microphone", "File"])
|
100 |
|
101 |
-
demo.launch(
|
102 |
|
|
|
73 |
* Сначала модель распознает речь с помощью voidful/wav2vec2-xlsr-multilingual-56 и возвращает текст на любом из 56 языков.
|
74 |
* Далее происходит перевод текста с любого на английский с помощью Helsinki-NLP/opus-mt-mul-en, а затем с английского на русский также с помощью Helsinki-NLP/opus-mt-en-ru
|
75 |
* В конце осуществляется воспроизведение русского текста моделью facebook/mms-tts-rus
|
76 |
+
|
77 |
+
|
78 |
Demo for cascaded speech-to-speech translation (STST), mapping from source speech in any language to target speech in Russian. Demo uses facebook/mms-tts-rus model for text-to-speech:
|
79 |
![Cascaded STST](https://huggingface.co/datasets/huggingface-course/audio-course-images/resolve/main/s2st_cascaded.png "Diagram of cascaded speech to speech translation")
|
80 |
"""
|
|
|
100 |
with demo:
|
101 |
gr.TabbedInterface([mic_translate, file_translate], ["Microphone", "File"])
|
102 |
|
103 |
+
demo.launch()
|
104 |
|