Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -206,12 +206,12 @@ Invoke the llama.cpp server or the CLI.
|
|
206 |
|
207 |
### CLI:
|
208 |
```bash
|
209 |
-
llama-cli --hf-repo matrixportal/Llama-3.1-8B-Instruct-GGUF --hf-file llama-3.1-8b-instruct-
|
210 |
```
|
211 |
|
212 |
### Server:
|
213 |
```bash
|
214 |
-
llama-server --hf-repo matrixportal/Llama-3.1-8B-Instruct-GGUF --hf-file llama-3.1-8b-instruct-
|
215 |
```
|
216 |
|
217 |
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.
|
@@ -228,9 +228,9 @@ cd llama.cpp && LLAMA_CURL=1 make
|
|
228 |
|
229 |
Step 3: Run inference through the main binary.
|
230 |
```
|
231 |
-
./llama-cli --hf-repo matrixportal/Llama-3.1-8B-Instruct-GGUF --hf-file llama-3.1-8b-instruct-
|
232 |
```
|
233 |
or
|
234 |
```
|
235 |
-
./llama-server --hf-repo matrixportal/Llama-3.1-8B-Instruct-GGUF --hf-file llama-3.1-8b-instruct-
|
236 |
```
|
|
|
206 |
|
207 |
### CLI:
|
208 |
```bash
|
209 |
+
llama-cli --hf-repo matrixportal/Llama-3.1-8B-Instruct-GGUF --hf-file llama-3.1-8b-instruct-q4_k_m.gguf -p "The meaning to life and the universe is"
|
210 |
```
|
211 |
|
212 |
### Server:
|
213 |
```bash
|
214 |
+
llama-server --hf-repo matrixportal/Llama-3.1-8B-Instruct-GGUF --hf-file llama-3.1-8b-instruct-q4_k_m.gguf -c 2048
|
215 |
```
|
216 |
|
217 |
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.
|
|
|
228 |
|
229 |
Step 3: Run inference through the main binary.
|
230 |
```
|
231 |
+
./llama-cli --hf-repo matrixportal/Llama-3.1-8B-Instruct-GGUF --hf-file llama-3.1-8b-instruct-q4_k_m.gguf -p "The meaning to life and the universe is"
|
232 |
```
|
233 |
or
|
234 |
```
|
235 |
+
./llama-server --hf-repo matrixportal/Llama-3.1-8B-Instruct-GGUF --hf-file llama-3.1-8b-instruct-q4_k_m.gguf -c 2048
|
236 |
```
|