Upload whisper-wesol-medium-v3 model and card 6e9012d verified
SeongJun commited on
How to use TLSJ/whisper-wesol-ko with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="TLSJ/whisper-wesol-ko") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("TLSJ/whisper-wesol-ko")
model = AutoModelForSpeechSeq2Seq.from_pretrained("TLSJ/whisper-wesol-ko", device_map="auto")