Instructions to use Amiran13/wav2vec2-large-xlsr-georgian-demo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Amiran13/wav2vec2-large-xlsr-georgian-demo with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="Amiran13/wav2vec2-large-xlsr-georgian-demo")# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("Amiran13/wav2vec2-large-xlsr-georgian-demo") model = AutoModelForCTC.from_pretrained("Amiran13/wav2vec2-large-xlsr-georgian-demo", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 502 Bytes
ca04408 6525834 ca04408 | 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 | {
"[PAD]": 38,
"[UNK]": 37,
"|": 14,
"ა": 18,
"ბ": 10,
"გ": 22,
"დ": 0,
"ე": 7,
"ვ": 36,
"ზ": 13,
"თ": 31,
"ი": 25,
"კ": 28,
"ლ": 5,
"მ": 17,
"ნ": 16,
"ო": 2,
"პ": 29,
"ჟ": 24,
"რ": 33,
"ს": 4,
"ტ": 3,
"უ": 27,
"ფ": 20,
"ქ": 21,
"ღ": 26,
"ყ": 8,
"შ": 19,
"ჩ": 34,
"ც": 12,
"ძ": 30,
"წ": 23,
"ჭ": 35,
"ხ": 6,
"ჯ": 32,
"ჰ": 9,
"–": 1,
"—": 11,
"„": 15
}
|