Instructions to use hadiqa123/XLS-R_53_english with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use hadiqa123/XLS-R_53_english with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="hadiqa123/XLS-R_53_english")# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("hadiqa123/XLS-R_53_english") model = AutoModelForCTC.from_pretrained("hadiqa123/XLS-R_53_english") - Notebooks
- Google Colab
- Kaggle
Update alphabet.json
Browse files- alphabet.json +1 -1
alphabet.json
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
{"labels": ["w", "z", "o", "t", "k", "g", "b", "c", "d", " ", "m", "i", "q", "l", "u", "'", "x", "s", "j", "v", "h", "e", "f", "a", "y", "p", "r", "n", "\u2047", "", "<s>", "</s>"], "is_bpe": false}
|
|
|
|
| 1 |
+
{"labels": ["w", "z", "o", "t", "k", "g", "b", "c", "d", " ", "m", "i", "q", "l", "u", "'", "x", "s", "j", "v", "h", "e", "f", "a", "y", "p", "r", "n", "\u2047", "",".", "<s>", "</s>"], "is_bpe": false}
|