matrixportal
commited on
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -131,12 +131,12 @@ Invoke the llama.cpp server or the CLI.
|
|
131 |
|
132 |
### CLI:
|
133 |
```bash
|
134 |
-
llama-cli --hf-repo matrixportal/DarkSapling-7B-v2.0-GGUF --hf-file darksapling-7b-v2.0-
|
135 |
```
|
136 |
|
137 |
### Server:
|
138 |
```bash
|
139 |
-
llama-server --hf-repo matrixportal/DarkSapling-7B-v2.0-GGUF --hf-file darksapling-7b-v2.0-
|
140 |
```
|
141 |
|
142 |
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.
|
@@ -153,9 +153,9 @@ cd llama.cpp && LLAMA_CURL=1 make
|
|
153 |
|
154 |
Step 3: Run inference through the main binary.
|
155 |
```
|
156 |
-
./llama-cli --hf-repo matrixportal/DarkSapling-7B-v2.0-GGUF --hf-file darksapling-7b-v2.0-
|
157 |
```
|
158 |
or
|
159 |
```
|
160 |
-
./llama-server --hf-repo matrixportal/DarkSapling-7B-v2.0-GGUF --hf-file darksapling-7b-v2.0-
|
161 |
```
|
|
|
131 |
|
132 |
### CLI:
|
133 |
```bash
|
134 |
+
llama-cli --hf-repo matrixportal/DarkSapling-7B-v2.0-GGUF --hf-file darksapling-7b-v2.0-q4_k_s.gguf -p "The meaning to life and the universe is"
|
135 |
```
|
136 |
|
137 |
### Server:
|
138 |
```bash
|
139 |
+
llama-server --hf-repo matrixportal/DarkSapling-7B-v2.0-GGUF --hf-file darksapling-7b-v2.0-q4_k_s.gguf -c 2048
|
140 |
```
|
141 |
|
142 |
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.
|
|
|
153 |
|
154 |
Step 3: Run inference through the main binary.
|
155 |
```
|
156 |
+
./llama-cli --hf-repo matrixportal/DarkSapling-7B-v2.0-GGUF --hf-file darksapling-7b-v2.0-q4_k_s.gguf -p "The meaning to life and the universe is"
|
157 |
```
|
158 |
or
|
159 |
```
|
160 |
+
./llama-server --hf-repo matrixportal/DarkSapling-7B-v2.0-GGUF --hf-file darksapling-7b-v2.0-q4_k_s.gguf -c 2048
|
161 |
```
|