shadabsayd
commited on
Update README.md
Browse files
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
|
|
|
|
|
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 |
```
|