Instructions to use GroNLP/wav2vec2-dutch-large-ft-cgn with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use GroNLP/wav2vec2-dutch-large-ft-cgn with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="GroNLP/wav2vec2-dutch-large-ft-cgn")# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("GroNLP/wav2vec2-dutch-large-ft-cgn") model = AutoModelForCTC.from_pretrained("GroNLP/wav2vec2-dutch-large-ft-cgn") - Notebooks
- Google Colab
- Kaggle
| {"<pad>": 0, "<s>": 1, "</s>": 2, "<unk>": 3, "|": 4, "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, "È": 31, "É": 32, "Ë": 33, "?": 34, "'": 35, "-": 36} |