Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -223,12 +223,12 @@ Invoke the llama.cpp server or the CLI.
|
|
223 |
|
224 |
### CLI:
|
225 |
```bash
|
226 |
-
llama-cli --hf-repo matrixportal/Llama-3.2-3B-Instruct-GGUF --hf-file llama-3.2-3b-instruct-
|
227 |
```
|
228 |
|
229 |
### Server:
|
230 |
```bash
|
231 |
-
llama-server --hf-repo matrixportal/Llama-3.2-3B-Instruct-GGUF --hf-file llama-3.2-3b-instruct-
|
232 |
```
|
233 |
|
234 |
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.
|
@@ -245,9 +245,9 @@ cd llama.cpp && LLAMA_CURL=1 make
|
|
245 |
|
246 |
Step 3: Run inference through the main binary.
|
247 |
```
|
248 |
-
./llama-cli --hf-repo matrixportal/Llama-3.2-3B-Instruct-GGUF --hf-file llama-3.2-3b-instruct-
|
249 |
```
|
250 |
or
|
251 |
```
|
252 |
-
./llama-server --hf-repo matrixportal/Llama-3.2-3B-Instruct-GGUF --hf-file llama-3.2-3b-instruct-
|
253 |
```
|
|
|
223 |
|
224 |
### CLI:
|
225 |
```bash
|
226 |
+
llama-cli --hf-repo matrixportal/Llama-3.2-3B-Instruct-GGUF --hf-file llama-3.2-3b-instruct-q4_0.gguf -p "The meaning to life and the universe is"
|
227 |
```
|
228 |
|
229 |
### Server:
|
230 |
```bash
|
231 |
+
llama-server --hf-repo matrixportal/Llama-3.2-3B-Instruct-GGUF --hf-file llama-3.2-3b-instruct-q4_0.gguf -c 2048
|
232 |
```
|
233 |
|
234 |
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.
|
|
|
245 |
|
246 |
Step 3: Run inference through the main binary.
|
247 |
```
|
248 |
+
./llama-cli --hf-repo matrixportal/Llama-3.2-3B-Instruct-GGUF --hf-file llama-3.2-3b-instruct-q4_0.gguf -p "The meaning to life and the universe is"
|
249 |
```
|
250 |
or
|
251 |
```
|
252 |
+
./llama-server --hf-repo matrixportal/Llama-3.2-3B-Instruct-GGUF --hf-file llama-3.2-3b-instruct-q4_0.gguf -c 2048
|
253 |
```
|