hellork commited on
Commit
ffc6e4d
1 Parent(s): c1737ca

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -3
README.md CHANGED
@@ -147,6 +147,7 @@ llama-server --hf-repo hellork/finance-chat-IQ4_NL-GGUF --hf-file finance-chat-i
147
  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.
148
  [whisper_dictation](https://github.com/themanyone/whisper_dictation)
149
 
 
150
  ```bash
151
  git clone -b main --single-branch https://github.com/themanyone/whisper_dictation.git
152
  pip install -r whisper_dictation/requirements.txt
@@ -155,13 +156,16 @@ git clone https://github.com/ggerganov/whisper.cpp
155
  cd whisper.cpp
156
  GGML_CUDA=1 make -j # assuming CUDA is available. see docs
157
  ln -s server ~/.local/bin/whisper_cpp_server # (just put it somewhere in $PATH)
158
-
159
  whisper_cpp_server -l en -m models/ggml-tiny.en.bin --port 7777
 
 
 
 
 
160
  ./whisper_cpp_client.py
161
  ```
162
- 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.
163
 
164
- 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.
165
 
166
  Step 1: Clone llama.cpp from GitHub.
167
  ```
 
147
  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.
148
  [whisper_dictation](https://github.com/themanyone/whisper_dictation)
149
 
150
+ *Quick start*
151
  ```bash
152
  git clone -b main --single-branch https://github.com/themanyone/whisper_dictation.git
153
  pip install -r whisper_dictation/requirements.txt
 
156
  cd whisper.cpp
157
  GGML_CUDA=1 make -j # assuming CUDA is available. see docs
158
  ln -s server ~/.local/bin/whisper_cpp_server # (just put it somewhere in $PATH)
 
159
  whisper_cpp_server -l en -m models/ggml-tiny.en.bin --port 7777
160
+
161
+ # -ngl option assumes CUDA or othr AI acceleration is available. see docs
162
+ llama-server --hf-repo hellork/calme-2.1-qwen2-7b-IQ4_NL-GGUF --hf-file finance-chat-iq4_nl-imat.gguf -c 2048 -ngl 17 --port 8888
163
+
164
+ cd whisper_dictation
165
  ./whisper_cpp_client.py
166
  ```
 
167
 
168
+ ### Install llama.cpp via git:
169
 
170
  Step 1: Clone llama.cpp from GitHub.
171
  ```