pere commited on
Commit
dc389ef
1 Parent(s): e3de125

updated template

Browse files
Files changed (1) hide show
  1. README.md +6 -2
README.md CHANGED
@@ -219,11 +219,15 @@ $ make
219
  $ wget -N https://github.com/NbAiLab/nb-whisper/raw/main/audio/king.mp3
220
  $ ffmpeg -i king.mp3 -ar 16000 -ac 1 -c:a pcm_s16le king.wav
221
 
 
 
 
 
222
  # And run it with the f16 default model
223
- $ ./main -m /path/to/ggml-model.bin king.wav
224
 
225
  # Or the quantized version
226
- $ ./main -m /path/to/ggml-model-q5_0.bin king.wav
227
  ```
228
 
229
  ### API
 
219
  $ wget -N https://github.com/NbAiLab/nb-whisper/raw/main/audio/king.mp3
220
  $ ffmpeg -i king.mp3 -ar 16000 -ac 1 -c:a pcm_s16le king.wav
221
 
222
+ # Lets download the two ggml-files from this site
223
+ wget -N https://huggingface.co/NbAiLabBeta/nb-whisper-large/resolve/main/ggml-model.bin -O models/nb-large-ggml-model.bin
224
+ wget -N https://huggingface.co/NbAiLabBeta/nb-whisper-large/resolve/main/ggml-model-q5_0.bin -O models/nb-large-ggml-model-q5_0.bin
225
+
226
  # And run it with the f16 default model
227
+ $ ./main -l no -m models/nb-large-ggml-model.bin king.wav
228
 
229
  # Or the quantized version
230
+ $ ./main -l no -m models/nb-large-ggml-model-q5_0.bin king.wav
231
  ```
232
 
233
  ### API