tsobolev commited on
Commit
1d273b4
1 Parent(s): f62425f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -60,9 +60,12 @@ def speech_to_speech_translation(audio):
60
 
61
  title = "Cascaded STST"
62
  description = """
63
- Demo for cascaded speech-to-speech translation (STST), mapping from source speech in any language to target speech in English. Demo uses OpenAI's [Whisper Base](https://huggingface.co/openai/whisper-base) model for speech translation, and Microsoft's
64
- [SpeechT5 TTS](https://huggingface.co/microsoft/speecht5_tts) model for text-to-speech:
65
-
 
 
 
66
  ![Cascaded STST](https://huggingface.co/datasets/huggingface-course/audio-course-images/resolve/main/s2st_cascaded.png "Diagram of cascaded speech to speech translation")
67
  """
68
 
 
60
 
61
  title = "Cascaded STST"
62
  description = """
63
+ Demo for cascaded speech-to-speech translation (STST), mapping from source speech in any language, supported by the whisper, to target speech in Finnish.
64
+ Demo uses:
65
+ * OpenAI's [Whisper Base](https://huggingface.co/openai/whisper-base) model for speech translation
66
+ * Language Technology at the University of Helsinki en-fi model [Helsinki-NLP](https://huggingface.co/Helsinki-NLP/opus-mt-en-fi)
67
+ * Microsoft's [SpeechT5 TTS](https://huggingface.co/microsoft/speecht5_tts) model fine-tuned on subset of [VoxPopuli](https://huggingface.co/datasets/facebook/voxpopuli) dataset for text-to-speech
68
+ * replacements: ä => ae , ö => oe
69
  ![Cascaded STST](https://huggingface.co/datasets/huggingface-course/audio-course-images/resolve/main/s2st_cascaded.png "Diagram of cascaded speech to speech translation")
70
  """
71