File size: 432 Bytes
03a5da6 e15a4e6 662779f c6a2c08 662779f 03a5da6 afa05ca 03a5da6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
---
language:
- fa
library_name: hezar
tags:
- automatic-speech-recognition
- hezar
datasets:
- hezarai/common-voice-13-fa
pipeline_tag: automatic-speech-recognition
---
Whisper (small) model finetuned on Common Voice by Hezar AI.
## Usage
```
pip install hezar
```
```python
from hezar.models import Model
whisper = Model.load("hezarai/whisper-small-fa")
transcripts = whisper.predict("speech_example.mp3")
print(transcripts)
``` |