whisper-small-fa / README.md
arxyzan's picture
Update README.md
e15a4e6
|
raw
history blame
390 Bytes
---
datasets:
- mozilla-foundation/common_voice_11_0
language:
- fa
pipeline_tag: automatic-speech-recognition
library_name: hezar
---
Whisper (small) model finetuned on Common Voice by Hezar AI.
## Usage
```
pip install hezar
```
```python
from hezar import Model
whisper = Model.load("hezarai/whisper-small-fa")
transcripts = whisper.predict("speech_example.mp3")
print(transcripts)
```