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 c927b04 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,
"|": 0,
"ა": 22,
"ბ": 6,
"გ": 30,
"დ": 2,
"ე": 29,
"ვ": 12,
"ზ": 19,
"თ": 3,
"ი": 34,
"კ": 11,
"ლ": 28,
"მ": 1,
"ნ": 10,
"ო": 33,
"პ": 31,
"ჟ": 32,
"რ": 17,
"ს": 24,
"ტ": 7,
"უ": 18,
"ფ": 23,
"ქ": 25,
"ღ": 35,
"ყ": 16,
"შ": 21,
"ჩ": 20,
"ც": 5,
"ძ": 4,
"წ": 8,
"ჭ": 36,
"ხ": 15,
"ჯ": 9,
"ჰ": 27,
"–": 26,
"—": 13,
"„": 14
}
|