Matrix
commited on
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -219,12 +219,12 @@ Invoke the llama.cpp server or the CLI.
|
|
| 219 |
|
| 220 |
### CLI:
|
| 221 |
```bash
|
| 222 |
-
llama-cli --hf-repo matrixportal/Meta-Llama-3-8B-Instruct-GGUF --hf-file meta-llama-3-8b-instruct-
|
| 223 |
```
|
| 224 |
|
| 225 |
### Server:
|
| 226 |
```bash
|
| 227 |
-
llama-server --hf-repo matrixportal/Meta-Llama-3-8B-Instruct-GGUF --hf-file meta-llama-3-8b-instruct-
|
| 228 |
```
|
| 229 |
|
| 230 |
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.
|
|
@@ -241,9 +241,9 @@ cd llama.cpp && LLAMA_CURL=1 make
|
|
| 241 |
|
| 242 |
Step 3: Run inference through the main binary.
|
| 243 |
```
|
| 244 |
-
./llama-cli --hf-repo matrixportal/Meta-Llama-3-8B-Instruct-GGUF --hf-file meta-llama-3-8b-instruct-
|
| 245 |
```
|
| 246 |
or
|
| 247 |
```
|
| 248 |
-
./llama-server --hf-repo matrixportal/Meta-Llama-3-8B-Instruct-GGUF --hf-file meta-llama-3-8b-instruct-
|
| 249 |
```
|
|
|
|
| 219 |
|
| 220 |
### CLI:
|
| 221 |
```bash
|
| 222 |
+
llama-cli --hf-repo matrixportal/Meta-Llama-3-8B-Instruct-GGUF --hf-file meta-llama-3-8b-instruct-q4_k_s.gguf -p "The meaning to life and the universe is"
|
| 223 |
```
|
| 224 |
|
| 225 |
### Server:
|
| 226 |
```bash
|
| 227 |
+
llama-server --hf-repo matrixportal/Meta-Llama-3-8B-Instruct-GGUF --hf-file meta-llama-3-8b-instruct-q4_k_s.gguf -c 2048
|
| 228 |
```
|
| 229 |
|
| 230 |
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.
|
|
|
|
| 241 |
|
| 242 |
Step 3: Run inference through the main binary.
|
| 243 |
```
|
| 244 |
+
./llama-cli --hf-repo matrixportal/Meta-Llama-3-8B-Instruct-GGUF --hf-file meta-llama-3-8b-instruct-q4_k_s.gguf -p "The meaning to life and the universe is"
|
| 245 |
```
|
| 246 |
or
|
| 247 |
```
|
| 248 |
+
./llama-server --hf-repo matrixportal/Meta-Llama-3-8B-Instruct-GGUF --hf-file meta-llama-3-8b-instruct-q4_k_s.gguf -c 2048
|
| 249 |
```
|