File size: 534 Bytes
69eee8a
 
 
42aff45
 
69eee8a
 
 
 
 
 
8e105fb
69eee8a
 
 
 
 
42aff45
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
language:
- ky
license: apache-2.0
pipeline_tag: automatic-speech-recognition
---
Whisper ASR for Kyrgyz Language is an automatic speech recognition (ASR) solution customized for the Kyrgyz language. It is based on the pre-trained Whisper model and has undergone fine-tuning and adaptation to accurately transcribe Kyrgyz speech, taking into account its specific phonetic intricacies.



```
pipe = pipeline(model="the-cramer-project/AkylAI-STT-small")  

def transcribe(audio):
    text = pipe(audio)["text"]
    return text

```