legacy-datasets/common_voice
Updated • 1.46k • 145
How to use Mannon/asr with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Mannon/asr") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("Mannon/asr")
model = AutoModelForCTC.from_pretrained("Mannon/asr")This model is a fine-tuned version of facebook/wav2vec2-xls-r-300m on the common_voice dataset.
More information needed
More information needed
More information needed
The following hyperparameters were used during training: