Japanese ASR Models
Collection
Japanese ASR Models • 5 items • Updated • 2
How to use japanese-asr/distil-whisper-large-v3-ja-reazonspeech-small with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="japanese-asr/distil-whisper-large-v3-ja-reazonspeech-small") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("japanese-asr/distil-whisper-large-v3-ja-reazonspeech-small")
model = AutoModelForSpeechSeq2Seq.from_pretrained("japanese-asr/distil-whisper-large-v3-ja-reazonspeech-small", device_map="auto")No model card