Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -46,11 +46,11 @@ def speech_to_speech_translation(audio):
|
|
46 |
return 16000, synthesised_speech[0]
|
47 |
|
48 |
|
49 |
-
title = "Cascaded STST. Russian language version"
|
50 |
description = """
|
51 |
-
* В начале происходит распознавание речи с помощью модели openai/whisper-small
|
52 |
-
* Затем полученный текст переводится сначала на английский с помощью Helsinki-NLP/opus-mt-mul-en
|
53 |
-
* На последнем шаге полученный текст озвучивается с помощью модели
|
54 |
|
55 |
Demo for cascaded speech-to-speech translation (STST), mapping from source speech in any language to target speech in Russian.
|
56 |
Demo uses `openai/whisper-small` for speech-to-text and `facebook/mms-tts-rus model` for text-to-speech:
|
|
|
46 |
return 16000, synthesised_speech[0]
|
47 |
|
48 |
|
49 |
+
title = "Cascaded STST. **Russian** language version"
|
50 |
description = """
|
51 |
+
* В начале происходит распознавание речи с помощью модели `openai/whisper-small`.
|
52 |
+
* Затем полученный текст переводится сначала на английский с помощью `Helsinki-NLP/opus-mt-mul-en`, а потом на русский с помощью `Helsinki-NLP/opus-mt-en-ru`.
|
53 |
+
* На последнем шаге полученный текст озвучивается с помощью модели `facebook/mms-tts-rus model`.
|
54 |
|
55 |
Demo for cascaded speech-to-speech translation (STST), mapping from source speech in any language to target speech in Russian.
|
56 |
Demo uses `openai/whisper-small` for speech-to-text and `facebook/mms-tts-rus model` for text-to-speech:
|