mozilla-foundation/common_voice_17_0
Updated • 5.41k • 17
How to use bzikst/faster-whisper-large-v3-russian with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="bzikst/faster-whisper-large-v3-russian") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("bzikst/faster-whisper-large-v3-russian", dtype="auto")This is ctranslate2 converted version of antony66/whisper-large-v3-russian
Command used to convert is
ct2-transformers-converter --model antony66/whisper-large-v3-russian --output_dir faster-whisper-large-v3-russian --copy_files tokenizer.json preprocessor_confi
g.json --quantization float16