Update README.md
Browse files
README.md
CHANGED
@@ -16,46 +16,34 @@ model_creator: LakoMoor
|
|
16 |
model_type: mistral
|
17 |
---
|
18 |
|
19 |
-
# woofwolfy/Silicon-Alice-7B-Q5_K_M-GGUF
|
20 |
This model was converted to GGUF format from [`LakoMoor/Silicon-Alice-7B`](https://huggingface.co/LakoMoor/Silicon-Alice-7B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
21 |
Refer to the [original model card](https://huggingface.co/LakoMoor/Silicon-Alice-7B) for more details on the model.
|
22 |
|
23 |
-
|
24 |
-
Install llama.cpp through brew (works on Mac and Linux)
|
25 |
|
26 |
-
|
27 |
-
brew install llama.cpp
|
28 |
|
29 |
-
|
30 |
-
Invoke the llama.cpp server or the CLI.
|
31 |
|
32 |
-
|
33 |
-
```bash
|
34 |
-
llama-cli --hf-repo woofwolfy/Silicon-Alice-7B-Q5_K_M-GGUF --hf-file silicon-alice-7b-q5_k_m-imat.gguf -p "The meaning to life and the universe is"
|
35 |
-
```
|
36 |
|
37 |
-
|
38 |
-
```bash
|
39 |
-
llama-server --hf-repo woofwolfy/Silicon-Alice-7B-Q5_K_M-GGUF --hf-file silicon-alice-7b-q5_k_m-imat.gguf -c 2048
|
40 |
-
```
|
41 |
|
42 |
-
|
43 |
|
44 |
-
|
45 |
-
```
|
46 |
-
git clone https://github.com/ggerganov/llama.cpp
|
47 |
-
```
|
48 |
|
49 |
-
Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
|
50 |
```
|
51 |
-
|
|
|
|
|
|
|
52 |
```
|
53 |
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
or
|
59 |
-
```
|
60 |
-
./llama-server --hf-repo woofwolfy/Silicon-Alice-7B-Q5_K_M-GGUF --hf-file silicon-alice-7b-q5_k_m-imat.gguf -c 2048
|
61 |
```
|
|
|
|
16 |
model_type: mistral
|
17 |
---
|
18 |
|
19 |
+
# woofwolfy/Silicon-Alice-7B-Q5_K_M-GGUF-Imatrix
|
20 |
This model was converted to GGUF format from [`LakoMoor/Silicon-Alice-7B`](https://huggingface.co/LakoMoor/Silicon-Alice-7B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
21 |
Refer to the [original model card](https://huggingface.co/LakoMoor/Silicon-Alice-7B) for more details on the model.
|
22 |
|
23 |
+
![Silicon-Alice-7B](https://huggingface.co/LakoMoor/Silicon-Alice-7B-GGUF/resolve/main/assets/alice.png)
|
|
|
24 |
|
25 |
+
## What's that?
|
|
|
26 |
|
27 |
+
Silicon-Alice-7B-GGUF is a quantized model based on [Silicon-Masha-7B](https://huggingface.co/LakoMoor/Silicon-Alice-7B) aiming to be both strong in RP, be smart **and** understand Russian, that can follow character maps very well. This model understands Russian better than the previous one. It is suitable for RP/ERP and general use. It can be run on weak samovar using [llama.cpp](https://github.com/ggerganov/llama.cpp) or [koboldcpp](https://github.com/LostRuins/koboldcpp).
|
|
|
28 |
|
29 |
+
## Prompt Template (Alpaca)
|
|
|
|
|
|
|
30 |
|
31 |
+
I found the best SillyTavern results from using the Noromaid template but please try other templates! Let me know if you find anything good.
|
|
|
|
|
|
|
32 |
|
33 |
+
SillyTavern config files: [Context](https://huggingface.co/LakoMoor/Silicon-Alice-7B-GGUF/resolve/main/assets/context.json), [Instruct](https://huggingface.co/LakoMoor/Silicon-Alice-7B-GGUF/resolve/main/assets/instruct.json).
|
34 |
|
35 |
+
Additionally, here is my highly recommended [Text Completion preset](https://huggingface.co/LakoMoor/Silicon-Alice-7B-GGUF/resolve/main/assets/MinP.json). You can tweak this by adjusting temperature up or dropping min p to boost creativity or raise min p to increase stability. You shouldn't need to touch anything else!
|
|
|
|
|
|
|
36 |
|
|
|
37 |
```
|
38 |
+
Below is an instruction that describes a task. Write a response that appropriately completes the request.
|
39 |
+
### Instruction:
|
40 |
+
{prompt}
|
41 |
+
### Response:
|
42 |
```
|
43 |
|
44 |
+
## How run it ?
|
45 |
+
[llama.cpp](https://github.com/ggerganov/llama.cpp)
|
46 |
+
```shell
|
47 |
+
./main -ngl 35 -m silicon-alice-7b.Q4_K_M.gguf --color -c 32768 --temp 0.4 --repeat_penalty 1.1 -n -1 -p "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n{system_message}\n### Instruction:{prompt}\n### Response:\n"
|
|
|
|
|
|
|
48 |
```
|
49 |
+
|