Update README.md (Fix the Code)
Browse files
README.md
CHANGED
|
@@ -21,7 +21,7 @@ This model can be used in CTranslate2 or projects based on CTranslate2 such as [
|
|
| 21 |
```python
|
| 22 |
from faster_whisper import WhisperModel
|
| 23 |
|
| 24 |
-
model = WhisperModel("deepdml/faster-whisper-large-v3.5")
|
| 25 |
|
| 26 |
segments, info = model.transcribe("audio.mp3")
|
| 27 |
for segment in segments:
|
|
|
|
| 21 |
```python
|
| 22 |
from faster_whisper import WhisperModel
|
| 23 |
|
| 24 |
+
model = WhisperModel("deepdml/faster-distil-whisper-large-v3.5")
|
| 25 |
|
| 26 |
segments, info = model.transcribe("audio.mp3")
|
| 27 |
for segment in segments:
|