Instructions to use GleamEyeBeast/test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use GleamEyeBeast/test with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="GleamEyeBeast/test")# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("GleamEyeBeast/test") model = AutoModelForCTC.from_pretrained("GleamEyeBeast/test") - Notebooks
- Google Colab
- Kaggle
Commit ·
5bc895a
1
Parent(s): 6506739
add tokenizer
Browse files- vocab.json +1 -1
vocab.json
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
{"
|
|
|
|
| 1 |
+
{"e": 0, "m": 1, "w": 2, "f": 3, "k": 4, "a": 5, "r": 6, "n": 7, "b": 8, "u": 9, "h": 10, "d": 11, "o": 12, "t": 13, "x": 14, "i": 15, "l": 16, "s": 17, "g": 18, "j": 19, "z": 20, "q": 21, "p": 22, "c": 23, "v": 24, "'": 25, "y": 26, "|": 27, "[UNK]": 28, "[PAD]": 29}
|