Instructions to use Roxysun/wav2vec2-large-xls-r-300m-hungarian-colab with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Roxysun/wav2vec2-large-xls-r-300m-hungarian-colab with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="Roxysun/wav2vec2-large-xls-r-300m-hungarian-colab")# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("Roxysun/wav2vec2-large-xls-r-300m-hungarian-colab") model = AutoModelForCTC.from_pretrained("Roxysun/wav2vec2-large-xls-r-300m-hungarian-colab", device_map="auto") - Notebooks
- Google Colab
- Kaggle
| { | |
| "!": 1, | |
| ".": 2, | |
| ";": 3, | |
| "?": 4, | |
| "[PAD]": 40, | |
| "[UNK]": 39, | |
| "a": 5, | |
| "b": 6, | |
| "c": 7, | |
| "d": 8, | |
| "e": 9, | |
| "f": 10, | |
| "g": 11, | |
| "h": 12, | |
| "i": 13, | |
| "j": 14, | |
| "k": 15, | |
| "l": 16, | |
| "m": 17, | |
| "n": 18, | |
| "o": 19, | |
| "p": 20, | |
| "q": 21, | |
| "r": 22, | |
| "s": 23, | |
| "t": 24, | |
| "u": 25, | |
| "v": 26, | |
| "w": 27, | |
| "x": 28, | |
| "y": 29, | |
| "z": 30, | |
| "|": 0, | |
| "á": 31, | |
| "é": 32, | |
| "ó": 33, | |
| "ö": 34, | |
| "ú": 35, | |
| "ü": 36, | |
| "ő": 37, | |
| "ű": 38 | |
| } | |