shamik commited on
Commit
63e8982
1 Parent(s): aa2ad2d

Modified the title for the app.

Browse files
Files changed (2) hide show
  1. .gitignore +1 -0
  2. app.py +1 -1
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ .ipynb_checkpoints/
app.py CHANGED
@@ -39,7 +39,7 @@ def speech_to_speech_translation(audio):
39
  return 16000, synthesised_speech
40
 
41
 
42
- title = "Cascaded Speech To Speech Translation"
43
  description = """
44
  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 [SpeechT5 TTS](https://huggingface.co/microsoft/speecht5_tts) model for text-to-speech.
45
 
 
39
  return 16000, synthesised_speech
40
 
41
 
42
+ title = "Cascaded Speech To Speech Translation in English"
43
  description = """
44
  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 [SpeechT5 TTS](https://huggingface.co/microsoft/speecht5_tts) model for text-to-speech.
45