bond005/rulibrispeech
Viewer • Updated • 57.2k • 734 • 2
How to use bzikst/faster-whisper-large-v3-ru-podlodka 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-ru-podlodka") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("bzikst/faster-whisper-large-v3-ru-podlodka", device_map="auto")This is ctranslate2 converted version of bond005/whisper-large-v3-ru-podlodka
Command used to convert is
ct2-transformers-converter --model bond005/whisper-large-v3-ru-podlodka --output_dir faster-whisper-large-v3-ru-podlodka --copy_files tokenizer.json preprocessor_confi
g.json --quantization float16