Automatic Speech Recognition
Transformers
PyTorch
TensorBoard
wav2vec2
Generated from Trainer
Eval Results (legacy)
Instructions to use Jana0511/wav2vec2-large-xls-r-300m-welsh-colab with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Jana0511/wav2vec2-large-xls-r-300m-welsh-colab with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="Jana0511/wav2vec2-large-xls-r-300m-welsh-colab")# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("Jana0511/wav2vec2-large-xls-r-300m-welsh-colab") model = AutoModelForCTC.from_pretrained("Jana0511/wav2vec2-large-xls-r-300m-welsh-colab", device_map="auto") - Notebooks
- Google Colab
- Kaggle
| { | |
| "[PAD]": 42, | |
| "[UNK]": 41, | |
| "a": 1, | |
| "b": 2, | |
| "c": 3, | |
| "d": 4, | |
| "e": 5, | |
| "f": 6, | |
| "g": 7, | |
| "h": 8, | |
| "i": 9, | |
| "j": 10, | |
| "k": 11, | |
| "l": 12, | |
| "m": 13, | |
| "n": 14, | |
| "o": 15, | |
| "p": 16, | |
| "q": 17, | |
| "r": 18, | |
| "s": 19, | |
| "t": 20, | |
| "u": 21, | |
| "v": 22, | |
| "w": 23, | |
| "x": 24, | |
| "y": 25, | |
| "z": 26, | |
| "|": 0, | |
| "¬": 27, | |
| "à": 28, | |
| "á": 29, | |
| "ä": 30, | |
| "é": 31, | |
| "ë": 32, | |
| "ï": 33, | |
| "ñ": 34, | |
| "ò": 35, | |
| "ö": 36, | |
| "û": 37, | |
| "ÿ": 38, | |
| "–": 39, | |
| "—": 40 | |
| } | |