nonsonpratico
commited on
Commit
•
0d5ef54
1
Parent(s):
88a0341
Update README.md
Browse files
README.md
CHANGED
@@ -25,12 +25,12 @@ Invoke the llama.cpp server or the CLI.
|
|
25 |
|
26 |
### CLI:
|
27 |
```bash
|
28 |
-
llama --hf-repo
|
29 |
```
|
30 |
|
31 |
### Server:
|
32 |
```bash
|
33 |
-
llama-server --hf-repo
|
34 |
```
|
35 |
|
36 |
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.
|
@@ -47,9 +47,9 @@ cd llama.cpp && LLAMA_CURL=1 make
|
|
47 |
|
48 |
Step 3: Run inference through the main binary.
|
49 |
```
|
50 |
-
./main --hf-repo
|
51 |
```
|
52 |
or
|
53 |
```
|
54 |
-
./server --hf-repo
|
55 |
```
|
|
|
25 |
|
26 |
### CLI:
|
27 |
```bash
|
28 |
+
llama --hf-repo SeacomSrl/SeaQwen2-0.5B-Q4_K_M-GGUF --hf-file seaqwen2-0.5b-q4_k_m.gguf -p "The meaning to life and the universe is"
|
29 |
```
|
30 |
|
31 |
### Server:
|
32 |
```bash
|
33 |
+
llama-server --hf-repo SeacomSrl/SeaQwen2-0.5B-Q4_K_M-GGUF --hf-file seaqwen2-0.5b-q4_k_m.gguf -c 2048
|
34 |
```
|
35 |
|
36 |
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.
|
|
|
47 |
|
48 |
Step 3: Run inference through the main binary.
|
49 |
```
|
50 |
+
./main --hf-repo SeacomSrl/SeaQwen2-0.5B-Q4_K_M-GGUF --hf-file seaqwen2-0.5b-q4_k_m.gguf -p "The meaning to life and the universe is"
|
51 |
```
|
52 |
or
|
53 |
```
|
54 |
+
./server --hf-repo SeacomSrl/SeaQwen2-0.5B-Q4_K_M-GGUF --hf-file seaqwen2-0.5b-q4_k_m.gguf -c 2048
|
55 |
```
|