Lewdiculous
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,68 @@
|
|
1 |
---
|
|
|
2 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
library_name: transformers
|
3 |
license: cc-by-4.0
|
4 |
+
language:
|
5 |
+
- en
|
6 |
+
tags:
|
7 |
+
- gguf
|
8 |
+
- quantized
|
9 |
+
- roleplay
|
10 |
+
- imatrix
|
11 |
+
- mistral
|
12 |
+
- merge
|
13 |
+
inference: false
|
14 |
+
# base_model:
|
15 |
+
# - Epiculous/Fett-uccine-Long-Noodle-7B-120k-Context
|
16 |
+
# - Epiculous/Mika-7B
|
17 |
---
|
18 |
+
|
19 |
+
This repository hosts GGUF-IQ-Imatrix quantizations for [KatyTheCutie/LemonadeRP-4.5.3](https://huggingface.co/KatyTheCutie/LemonadeRP-4.5.3).
|
20 |
+
|
21 |
+
```
|
22 |
+
--contextsize 8192
|
23 |
+
```
|
24 |
+
|
25 |
+
**What does "Imatrix" mean?**
|
26 |
+
|
27 |
+
It stands for **Importance Matrix**, a technique used to improve the quality of quantized models.
|
28 |
+
The **Imatrix** is calculated based on calibration data, and it helps determine the importance of different model activations during the quantization process.
|
29 |
+
The idea is to preserve the most important information during quantization, which can help reduce the loss of model performance, especially when the calibration data is diverse.
|
30 |
+
[[1]](https://github.com/ggerganov/llama.cpp/discussions/5006) [[2]](https://github.com/ggerganov/llama.cpp/discussions/5263#discussioncomment-8395384)
|
31 |
+
|
32 |
+
For imatrix data generation, kalomaze's `groups_merged.txt` with added roleplay chats was used, you can find it [here](https://huggingface.co/Lewdiculous/Datura_7B-GGUF-Imatrix/blob/main/imatrix-with-rp-format-data.txt).
|
33 |
+
|
34 |
+
**Steps:**
|
35 |
+
```
|
36 |
+
Base⇢ GGUF(F16)⇢ Imatrix-Data(F16)⇢ GGUF(Imatrix-Quants)
|
37 |
+
```
|
38 |
+
**Quants:**
|
39 |
+
```python
|
40 |
+
quantization_options = [
|
41 |
+
"Q4_K_M", "IQ4_XS", "Q5_K_M", "Q5_K_S", "Q6_K",
|
42 |
+
"Q8_0", "IQ3_M", "IQ3_S", "IQ3_XXS"
|
43 |
+
]
|
44 |
+
```
|
45 |
+
|
46 |
+
If you want anything that's not here or another model, feel free to request.
|
47 |
+
|
48 |
+
**Original model information:**
|
49 |
+
|
50 |
+
![image/png](https://cdn-uploads.huggingface.co/production/uploads/653a2392341143f7774424d8/MtdRhFSBULJF4Upqch2gA.png)
|
51 |
+
Lemonade RP 4.5.3
|
52 |
+
|
53 |
+
8192 context length.
|
54 |
+
|
55 |
+
7B roleplay focused model, creativity and less cliché is the focus of this merge.
|
56 |
+
SillyTavern settings:
|
57 |
+
![image/png](https://cdn-uploads.huggingface.co/production/uploads/653a2392341143f7774424d8/tI2lp0Aeveu6KYBeNFilJ.png)
|
58 |
+
|
59 |
+
![image/png](https://cdn-uploads.huggingface.co/production/uploads/653a2392341143f7774424d8/lGhuJiL5jGRwviNr5GcbN.png)
|
60 |
+
Models used in merge:
|
61 |
+
- NeverSleep/Noromaid-7B-0.4-DPO
|
62 |
+
- cgato/Thespis-7b-v0.5-SFTTest-2Epoch
|
63 |
+
- NurtureAI/neural-chat-7b-v3-1-16k
|
64 |
+
- cgato/Thespis-CurtainCall-7b-v0.2.2
|
65 |
+
- tavtav/eros-7b-test
|
66 |
+
|
67 |
+
|
68 |
+
Feedback is always greatly appreciated! <3
|