Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
license: cc-by-nc-4.0
|
5 |
+
tags:
|
6 |
+
- llama-cpp
|
7 |
+
- gguf-my-repo
|
8 |
+
datasets:
|
9 |
+
- Himitsui/Lewd-Assistant-v1
|
10 |
+
---
|
11 |
+
|
12 |
+
# DavidAU/Solstice-11B-v1-Q6_K-GGUF
|
13 |
+
This model was converted to GGUF format from [`Sao10K/Solstice-11B-v1`](https://huggingface.co/Sao10K/Solstice-11B-v1) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
14 |
+
Refer to the [original model card](https://huggingface.co/Sao10K/Solstice-11B-v1) for more details on the model.
|
15 |
+
## Use with llama.cpp
|
16 |
+
|
17 |
+
Install llama.cpp through brew.
|
18 |
+
|
19 |
+
```bash
|
20 |
+
brew install ggerganov/ggerganov/llama.cpp
|
21 |
+
```
|
22 |
+
Invoke the llama.cpp server or the CLI.
|
23 |
+
|
24 |
+
CLI:
|
25 |
+
|
26 |
+
```bash
|
27 |
+
llama-cli --hf-repo DavidAU/Solstice-11B-v1-Q6_K-GGUF --model solstice-11b-v1.Q6_K.gguf -p "The meaning to life and the universe is"
|
28 |
+
```
|
29 |
+
|
30 |
+
Server:
|
31 |
+
|
32 |
+
```bash
|
33 |
+
llama-server --hf-repo DavidAU/Solstice-11B-v1-Q6_K-GGUF --model solstice-11b-v1.Q6_K.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.
|
37 |
+
|
38 |
+
```
|
39 |
+
git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m solstice-11b-v1.Q6_K.gguf -n 128
|
40 |
+
```
|