arxyzan commited on
Commit
03a5da6
1 Parent(s): 9bee4db

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets:
3
+ - mozilla-foundation/common_voice_11_0
4
+ language:
5
+ - fa
6
+ pipeline_tag: automatic-speech-recognition
7
+ ---
8
+ Whisper (small) model finetuned on Common Voice by Hezar AI.
9
+
10
+ ## Usage
11
+ ```
12
+ pip install hezar
13
+ ```
14
+ ```python
15
+ from hezar import Model
16
+
17
+ whisper = Model.load("hezarai/whisper-small-fa")
18
+ transcripts = whisper.predict("speech_example.mp3")
19
+ print(transcripts)
20
+ ```