first commit - version 202_base-en_v1 model run. trained without augmentation 8e560f0
rosyvs commited on
How to use rosyvs/whisat-base with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="rosyvs/whisat-base") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("rosyvs/whisat-base")
model = AutoModelForSpeechSeq2Seq.from_pretrained("rosyvs/whisat-base", device_map="auto")