Sonsal commited on
Commit
ec14765
·
verified ·
1 Parent(s): d73490d

fix: updated README.md file to use it in faster-whisper HF integration

Browse files

Previous WhiperModel argument raised an exception to unable model due to unproper HF model name. Added a repo name to fix this issue

Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -118,7 +118,7 @@ This model can be used in CTranslate2 or projects based on CTranslate2 such as [
118
  ```python
119
  from faster_whisper import WhisperModel
120
 
121
- model = WhisperModel("faster-whisper-large-v3-turbo-ct2")
122
 
123
  segments, info = model.transcribe("audio.mp3")
124
  for segment in segments:
 
118
  ```python
119
  from faster_whisper import WhisperModel
120
 
121
+ model = WhisperModel("deepdml/faster-whisper-large-v3-turbo-ct2")
122
 
123
  segments, info = model.transcribe("audio.mp3")
124
  for segment in segments: