matrixportal
commited on
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -37,12 +37,12 @@ Invoke the llama.cpp server or the CLI.
|
|
37 |
|
38 |
### CLI:
|
39 |
```bash
|
40 |
-
llama-cli --hf-repo matrixportal/Dolphin3.0-Llama3.1-8B-GGUF --hf-file dolphin3.0-llama3.1-8b-
|
41 |
```
|
42 |
|
43 |
### Server:
|
44 |
```bash
|
45 |
-
llama-server --hf-repo matrixportal/Dolphin3.0-Llama3.1-8B-GGUF --hf-file dolphin3.0-llama3.1-8b-
|
46 |
```
|
47 |
|
48 |
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.
|
@@ -59,9 +59,9 @@ cd llama.cpp && LLAMA_CURL=1 make
|
|
59 |
|
60 |
Step 3: Run inference through the main binary.
|
61 |
```
|
62 |
-
./llama-cli --hf-repo matrixportal/Dolphin3.0-Llama3.1-8B-GGUF --hf-file dolphin3.0-llama3.1-8b-
|
63 |
```
|
64 |
or
|
65 |
```
|
66 |
-
./llama-server --hf-repo matrixportal/Dolphin3.0-Llama3.1-8B-GGUF --hf-file dolphin3.0-llama3.1-8b-
|
67 |
```
|
|
|
37 |
|
38 |
### CLI:
|
39 |
```bash
|
40 |
+
llama-cli --hf-repo matrixportal/Dolphin3.0-Llama3.1-8B-GGUF --hf-file dolphin3.0-llama3.1-8b-q4_k_s.gguf -p "The meaning to life and the universe is"
|
41 |
```
|
42 |
|
43 |
### Server:
|
44 |
```bash
|
45 |
+
llama-server --hf-repo matrixportal/Dolphin3.0-Llama3.1-8B-GGUF --hf-file dolphin3.0-llama3.1-8b-q4_k_s.gguf -c 2048
|
46 |
```
|
47 |
|
48 |
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.
|
|
|
59 |
|
60 |
Step 3: Run inference through the main binary.
|
61 |
```
|
62 |
+
./llama-cli --hf-repo matrixportal/Dolphin3.0-Llama3.1-8B-GGUF --hf-file dolphin3.0-llama3.1-8b-q4_k_s.gguf -p "The meaning to life and the universe is"
|
63 |
```
|
64 |
or
|
65 |
```
|
66 |
+
./llama-server --hf-repo matrixportal/Dolphin3.0-Llama3.1-8B-GGUF --hf-file dolphin3.0-llama3.1-8b-q4_k_s.gguf -c 2048
|
67 |
```
|