update model to latest checkpoint 32cda75
maxidl commited on
How to use maxidl/wav2vec2-large-xlsr-german with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="maxidl/wav2vec2-large-xlsr-german") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("maxidl/wav2vec2-large-xlsr-german")
model = AutoModelForCTC.from_pretrained("maxidl/wav2vec2-large-xlsr-german", device_map="auto")