InferenceIllusionist
commited on
Commit
•
81e0ce3
1
Parent(s):
6ebae68
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,102 @@
|
|
1 |
-
---
|
2 |
-
license: cc-by-nc-4.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-nc-4.0
|
3 |
+
tags:
|
4 |
+
- GGUF
|
5 |
+
- iMat
|
6 |
+
- llama3
|
7 |
+
---
|
8 |
+
|
9 |
+
```
|
10 |
+
e88 88e d8
|
11 |
+
d888 888b 8888 8888 ,"Y88b 888 8e d88
|
12 |
+
C8888 8888D 8888 8888 "8" 888 888 88b d88888
|
13 |
+
Y888 888P Y888 888P ,ee 888 888 888 888
|
14 |
+
"88 88" "88 88" "88 888 888 888 888
|
15 |
+
b
|
16 |
+
8b,
|
17 |
+
|
18 |
+
e88'Y88 d8 888
|
19 |
+
d888 'Y ,"Y88b 888,8, d88 ,e e, 888
|
20 |
+
C8888 "8" 888 888 " d88888 d88 88b 888
|
21 |
+
Y888 ,d ,ee 888 888 888 888 , 888
|
22 |
+
"88,d88 "88 888 888 888 "YeeP" 888
|
23 |
+
|
24 |
+
PROUDLY PRESENTS
|
25 |
+
```
|
26 |
+
|
27 |
+
## Dendrite-L3-10B-iMat-GGUF
|
28 |
+
|
29 |
+
|
30 |
+
Quantized from fp32 with love.
|
31 |
+
* Weighted quantizations were calculated with fp32 GGUF using groups_merged.txt in 96 chunks and n_ctx=512 using [this process](https://huggingface.co/jukofyork/WizardLM-2-8x22B-imatrix)
|
32 |
+
|
33 |
+
<b>Important Note - Quantized with llama.cpp release b2787, post [PR6920](https://github.com/ggerganov/llama.cpp/pull/6920). There may still be some remaining issues with the bpe tokenizer so consider these quantizations experimental for now. Feedback is encouraged.</b>
|
34 |
+
|
35 |
+
|
36 |
+
For a brief rundown of iMatrix quant performance please see this [PR](https://github.com/ggerganov/llama.cpp/pull/5747)
|
37 |
+
|
38 |
+
<b>All quants are verified working prior to uploading to repo for your safety and convenience. </b>
|
39 |
+
|
40 |
+
It's highly recommended to try higher quants (Q6 or above) of this model due to the unique nature of its pseudotokens.
|
41 |
+
|
42 |
+
Original model card [here](https://huggingface.co/Envoid/Dendrite-L3-10B) and below
|
43 |
+
|
44 |
+
---
|
45 |
+
# This model is experimental and thus results cannot be gauranteed.
|
46 |
+
|
47 |
+
![](https://files.catbox.moe/rx5tfs.jpg)
|
48 |
+
# Dendrite-L3-10B
|
49 |
+
|
50 |
+
In a similar vein to [Libra-19B](https://huggingface.co/Envoid/Libra-19B) this model was created by taking all of the layers of one model and stacking along with them the first number of layers (8 in this case) from a donor model but in the reverse order.
|
51 |
+
|
52 |
+
In this case the base model used was [Poppy_Porpoise-DADA-8B](https://huggingface.co/Envoid/Poppy_Porpoise-DADA-8B) and the donor model used was [Llama-3-8B-Instruct-DADA](https://huggingface.co/Envoid/Llama-3-8B-Instruct-DADA)
|
53 |
+
|
54 |
+
It was then finetuned for 10 epochs on the Dendrite dataset at a low learning rate to repair the disorder and integrate the donor layers.
|
55 |
+
|
56 |
+
The following mergekit config was used:
|
57 |
+
```
|
58 |
+
slices:
|
59 |
+
- sources:
|
60 |
+
- model: ./Poppy_Porpoise-DADA-8B
|
61 |
+
layer_range: [0, 32]
|
62 |
+
- sources:
|
63 |
+
- model: ./Llama-3-8B-Instruct-DADA
|
64 |
+
layer_range: [7, 8]
|
65 |
+
- sources:
|
66 |
+
- model: ./Llama-3-8B-Instruct-DADA
|
67 |
+
layer_range: [6, 7]
|
68 |
+
- sources:
|
69 |
+
- model: ./Llama-3-8B-Instruct-DADA
|
70 |
+
layer_range: [5, 6]
|
71 |
+
- sources:
|
72 |
+
- model: ./Llama-3-8B-Instruct-DADA
|
73 |
+
layer_range: [4, 5]
|
74 |
+
- sources:
|
75 |
+
- model: ./Llama-3-8B-Instruct-DADA
|
76 |
+
layer_range: [3, 4]
|
77 |
+
- sources:
|
78 |
+
- model: ./Llama-3-8B-Instruct-DADA
|
79 |
+
layer_range: [2, 3]
|
80 |
+
- sources:
|
81 |
+
- model: ./Llama-3-8B-Instruct-DADA
|
82 |
+
layer_range: [1, 2]
|
83 |
+
- sources:
|
84 |
+
- model: ./Llama-3-8B-Instruct-DADA
|
85 |
+
layer_range: [0, 1]
|
86 |
+
merge_method: passthrough
|
87 |
+
dtype: float16
|
88 |
+
```
|
89 |
+
|
90 |
+
Unlike in the case of Libra-19B this models moral alignment seems very much intact.
|
91 |
+
|
92 |
+
In order to get the best results from this model you should uncheck "skip special tokens" on your front-end and add "<|eot_id|>" to your custom stopping strings.
|
93 |
+
|
94 |
+
It has been tested with a number of different Llama-3 prompt templates and seems to work well.
|
95 |
+
|
96 |
+
It regained its base assistant personality during the retraining process, however, using assistant style prompt templates and assistant cards in SillyTavern gives it fairly interesting replies.
|
97 |
+
|
98 |
+
It has been tested in RP, assistant and creative writing use cases and at a quick glance seems to work well.
|
99 |
+
|
100 |
+
Training was done using [qlora-pipe](https://github.com/tdrussell/qlora-pipe)
|
101 |
+
|
102 |
+
exl2 RPCAL care of [Qaunt Cartel](https://huggingface.co/Quant-Cartel/Dendrite-L3-10B-exl2-rpcal)
|