Instructions to use marma/test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use marma/test with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="marma/test")# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("marma/test") model = AutoModelForCTC.from_pretrained("marma/test") - Notebooks
- Google Colab
- Kaggle
| {"<pad>": 0, "<s>": 1, "</s>": 2, "<unk>": 3, "|": 4, "A": 5, "E": 6, "T": 7, "R": 8, "N": 9, "D": 10, "I": 11, "L": 12, "S": 13, "G": 14, "O": 15, "M": 16, "K": 17, "\u00c4": 18, "V": 19, "H": 20, "U": 21, "\u00c5": 22, "J": 23, "F": 24, "\u00d6": 25, "P": 26, "B": 27, "C": 28, "Y": 29, "X": 30, "W": 31, "\u00c9": 32, "Z": 33, "-": 34, "'": 35} |