whisper.el icon indicating copy to clipboard operation
whisper.el copied to clipboard

Support distilled model

Open edmundmiller opened this issue 1 year ago • 2 comments

https://github.com/ggerganov/whisper.cpp/pull/1424

It'd be nice to give this a shot.

edmundmiller avatar Nov 13 '23 00:11 edmundmiller

I have the distilled model downloaded. How do I make whisper.el use that?

~/code/misc/whisper.cpp/models/ggml-distil-large-v3.bin

NightMachinery avatar Jul 02 '24 21:07 NightMachinery

I got it to work:

  (setq
   whisper-install-whispercpp 'manual
   whisper-install-directory (expand-file-name "~/code/misc/")
   ;; =whisper.cpp= must be found inside `whisper-install-directory'.

   whisper-model "distil-large-v3"
   whisper-language "en"
   whisper-translate nil
   ;; whisper-use-threads (/ (num-processors) 2)

   whisper--ffmpeg-input-device ":0"
   ;; Use `rk/select-default-audio-device' to set this interactively.
   )

NightMachinery avatar Jul 02 '24 21:07 NightMachinery