Update README.md
Browse files
README.md
CHANGED
@@ -8,7 +8,13 @@ This is GGUF model of [saucam/aqua-qwen-0.1-110B](https://huggingface.co/saucam/
|
|
8 |
|
9 |
## Usage
|
10 |
|
11 |
-
Download the 2 files and
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
```
|
14 |
$ ./main -m aqua-qwen-0.1-110B-Q4_K_M.gguf -p "<|im_start|>user\nHow are you?<|im_end|>\n<|im_start|>assistant" -n 400 -e
|
|
|
8 |
|
9 |
## Usage
|
10 |
|
11 |
+
Download the 2 files and merge using [llama.cpp](https://github.com/ggerganov/llama.cpp).
|
12 |
+
|
13 |
+
```
|
14 |
+
gguf-split --merge aqua-qwen-0.1-110B-Q4_K_M-00001-of-00002.gguf aqua-qwen-0.1-110B-Q4_K_M.gguf
|
15 |
+
```
|
16 |
+
|
17 |
+
Then use the single generated file like below:
|
18 |
|
19 |
```
|
20 |
$ ./main -m aqua-qwen-0.1-110B-Q4_K_M.gguf -p "<|im_start|>user\nHow are you?<|im_end|>\n<|im_start|>assistant" -n 400 -e
|