Translation using faster-whisper #224
-
I have used fatser-whisper for transcription and so far it has been really accurate and definetly faster than OpenAI's Whisper. I have not only transcribed English audios but also Russian, Italian etc. Although it is faster and more accurate with English, the performance with other languages is also pretty good. Now, my question is, can faster-whisper also translate from X->EN or from language X-> language Y? I have tried instead of but it seems that 'WhisperModel' object has does not have a 'translate' attribute. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Whisper can translate from language X to English with model.transcribe("audio_file.wav", task="translate") However, translating language X to language Y is not possible. |
Beta Was this translation helpful? Give feedback.
Whisper can translate from language X to English with
task="translate"
:However, translating language X to language Y is not possible.