bond005/rulibrispeech
Viewer • Updated • 57.2k • 1.18k • 2
How to use bond005/whisper-large-v2-ru-podlodka with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="bond005/whisper-large-v2-ru-podlodka") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("bond005/whisper-large-v2-ru-podlodka")
model = AutoModelForSpeechSeq2Seq.from_pretrained("bond005/whisper-large-v2-ru-podlodka")