add model 37e4173
will commited on
How to use wrice/wav2vec2-large-robust-ft-timit with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="wrice/wav2vec2-large-robust-ft-timit") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("wrice/wav2vec2-large-robust-ft-timit")
model = AutoModelForCTC.from_pretrained("wrice/wav2vec2-large-robust-ft-timit", device_map="auto")