shadabsayd commited on
Commit
00a24b8
·
verified ·
1 Parent(s): 931285e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -7,6 +7,8 @@ base_model:
7
  ```
8
  import whisper
9
  # Load converted model with Whisper and transcribe
10
- model = whisper.load_model("Whisper-Hindi2Hinglish-Prime.pt")
 
 
11
 
12
  ```
 
7
  ```
8
  import whisper
9
  # Load converted model with Whisper and transcribe
10
+ model = whisper.load_model("Whisper-Hindi2Hinglish.pt")
11
+ result = model.transcribe("sample.mp3")
12
+ print(result["text"])
13
 
14
  ```