whisper-small-fa / README.md
arxyzan's picture
Update README.md
c6a2c08 verified
|
raw
history blame
No virus
432 Bytes
---
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)
```