uploadig final model 506aeb8
Ubuntu commited on
How to use smangrul/xls-r-mr-model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="smangrul/xls-r-mr-model") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("smangrul/xls-r-mr-model", device_map="auto")