Instructions to use oluwagbotty/test_mms with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use oluwagbotty/test_mms with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="oluwagbotty/test_mms")# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("oluwagbotty/test_mms") model = AutoModelForCTC.from_pretrained("oluwagbotty/test_mms", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 825 Bytes
70846b1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | {
"eng_yor": {
"\f": 0,
"0": 2,
"1": 3,
"2": 4,
"3": 5,
"4": 6,
"5": 7,
"6": 8,
"7": 9,
"8": 10,
"9": 11,
"[PAD]": 59,
"[UNK]": 58,
"a": 12,
"b": 13,
"c": 14,
"d": 15,
"e": 16,
"f": 17,
"g": 18,
"h": 19,
"i": 20,
"j": 21,
"k": 22,
"l": 23,
"m": 24,
"n": 25,
"o": 26,
"p": 27,
"q": 28,
"r": 29,
"s": 30,
"t": 31,
"u": 32,
"v": 33,
"w": 34,
"x": 35,
"y": 36,
"z": 37,
"|": 1,
" ": 38,
"à": 39,
"á": 40,
"è": 41,
"é": 42,
"ì": 43,
"í": 44,
"î": 45,
"ñ": 46,
"ò": 47,
"ó": 48,
"ù": 49,
"ú": 50,
"ń": 51,
"̀": 52,
"́": 53,
"ṣ": 54,
"ẹ": 55,
"ọ": 56,
"’": 57
}
}
|