Matrix
commited on
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -27,12 +27,12 @@ Invoke the llama.cpp server or the CLI.
|
|
27 |
|
28 |
### CLI:
|
29 |
```bash
|
30 |
-
llama-cli --hf-repo matrixportal/Qwen2.5-1.5B-Instruct-GGUF --hf-file qwen2.5-1.5b-instruct-
|
31 |
```
|
32 |
|
33 |
### Server:
|
34 |
```bash
|
35 |
-
llama-server --hf-repo matrixportal/Qwen2.5-1.5B-Instruct-GGUF --hf-file qwen2.5-1.5b-instruct-
|
36 |
```
|
37 |
|
38 |
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.
|
@@ -49,9 +49,9 @@ cd llama.cpp && LLAMA_CURL=1 make
|
|
49 |
|
50 |
Step 3: Run inference through the main binary.
|
51 |
```
|
52 |
-
./llama-cli --hf-repo matrixportal/Qwen2.5-1.5B-Instruct-GGUF --hf-file qwen2.5-1.5b-instruct-
|
53 |
```
|
54 |
or
|
55 |
```
|
56 |
-
./llama-server --hf-repo matrixportal/Qwen2.5-1.5B-Instruct-GGUF --hf-file qwen2.5-1.5b-instruct-
|
57 |
```
|
|
|
27 |
|
28 |
### CLI:
|
29 |
```bash
|
30 |
+
llama-cli --hf-repo matrixportal/Qwen2.5-1.5B-Instruct-GGUF --hf-file qwen2.5-1.5b-instruct-f16.gguf -p "The meaning to life and the universe is"
|
31 |
```
|
32 |
|
33 |
### Server:
|
34 |
```bash
|
35 |
+
llama-server --hf-repo matrixportal/Qwen2.5-1.5B-Instruct-GGUF --hf-file qwen2.5-1.5b-instruct-f16.gguf -c 2048
|
36 |
```
|
37 |
|
38 |
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.
|
|
|
49 |
|
50 |
Step 3: Run inference through the main binary.
|
51 |
```
|
52 |
+
./llama-cli --hf-repo matrixportal/Qwen2.5-1.5B-Instruct-GGUF --hf-file qwen2.5-1.5b-instruct-f16.gguf -p "The meaning to life and the universe is"
|
53 |
```
|
54 |
or
|
55 |
```
|
56 |
+
./llama-server --hf-repo matrixportal/Qwen2.5-1.5B-Instruct-GGUF --hf-file qwen2.5-1.5b-instruct-f16.gguf -c 2048
|
57 |
```
|