hellork commited on
Commit
30728ee
1 Parent(s): 90c3787

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -3
README.md CHANGED
@@ -40,6 +40,7 @@ llama-server --hf-repo hellork/Qwen2-7B-Multilingual-RP-IQ4_NL-GGUF --hf-file qw
40
  Interact with this model by speaking to it. Lean, fast, & private, networked speech to text, AI images, multi-modal voice chat, control apps, webcam, and sound with less than 4GiB of VRAM.
41
  [whisper_dictation](https://github.com/themanyone/whisper_dictation)
42
 
 
43
  ```bash
44
  git clone -b main --single-branch https://github.com/themanyone/whisper_dictation.git
45
  pip install -r whisper_dictation/requirements.txt
@@ -48,13 +49,16 @@ git clone https://github.com/ggerganov/whisper.cpp
48
  cd whisper.cpp
49
  GGML_CUDA=1 make -j # assuming CUDA is available. see docs
50
  ln -s server ~/.local/bin/whisper_cpp_server # (just put it somewhere in $PATH)
51
-
52
  whisper_cpp_server -l en -m models/ggml-tiny.en.bin --port 7777
 
 
 
 
 
53
  ./whisper_cpp_client.py
54
  ```
55
- See [the docs](https://github.com/themanyone/whisper_dictation) for tips on enabling the computer to talk back, draw AI images, carry out voice commands, and other features.
56
 
57
- Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
58
 
59
  Step 1: Clone llama.cpp from GitHub.
60
  ```
 
40
  Interact with this model by speaking to it. Lean, fast, & private, networked speech to text, AI images, multi-modal voice chat, control apps, webcam, and sound with less than 4GiB of VRAM.
41
  [whisper_dictation](https://github.com/themanyone/whisper_dictation)
42
 
43
+ *Quick start*
44
  ```bash
45
  git clone -b main --single-branch https://github.com/themanyone/whisper_dictation.git
46
  pip install -r whisper_dictation/requirements.txt
 
49
  cd whisper.cpp
50
  GGML_CUDA=1 make -j # assuming CUDA is available. see docs
51
  ln -s server ~/.local/bin/whisper_cpp_server # (just put it somewhere in $PATH)
 
52
  whisper_cpp_server -l en -m models/ggml-tiny.en.bin --port 7777
53
+
54
+ # -ngl option assumes CUDA or othr AI acceleration is available. see docs
55
+ llama-server --hf-repo hellork/calme-2.1-qwen2-7b-IQ4_NL-GGUF --hf-file qwen2-7b-multilingual-rp-iq4_nl-imat.gguf -c 2048 -ngl 17 --port 8888
56
+
57
+ cd whisper_dictation
58
  ./whisper_cpp_client.py
59
  ```
 
60
 
61
+ ### Install llama.cpp via git:
62
 
63
  Step 1: Clone llama.cpp from GitHub.
64
  ```