Whisper Large v3 Russian model for CTranslate2
This repository contains the conversion of antony66/whisper-large-v3-russian to the CTranslate2 model format.
This model can be used in CTranslate2 or projects based on CTranslate2 such as faster-whisper.
Usage
from faster_whisper import WhisperModel
model = WhisperModel("your-username/whisper-large-v3-russian-ct2")
segments, info = model.transcribe("audio.wav")
for segment in segments:
print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))
- Downloads last month
- 26