CoolFace
Modelpublic

Ash8181/whisper-large-v3-russian-ct2

sourceHugging Facemitupdated 1y agoView on Hugging Face
7likes34downloads
Model Card

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

python
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))