Lewdiculous commited on
Commit
8c8deed
1 Parent(s): a2759ca

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +76 -0
README.md ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ tags:
4
+ - mistral
5
+ - quantized
6
+ - text-generation-inference
7
+ - roleplay
8
+ # - rp
9
+ # - uncensored
10
+ pipeline_tag: text-generation
11
+ inference: false
12
+ # language:
13
+ # - en
14
+ # FILL THE INFORMATION:
15
+ # Reference: ChaoticNeutrals/Eris_Remix_7B
16
+ # Author: ChaoticNeutrals
17
+ # Model: Eris_Remix_7B
18
+ # Llama.cpp version: b2343
19
+ ---
20
+
21
+ ## GGUF-Imatrix quantizations for [ChaoticNeutrals/Eris_Remix_7B](https://huggingface.co/ChaoticNeutrals/Eris_Remix_7B/).
22
+
23
+ All credits belong to the author.
24
+
25
+ If you liked these, check out the work with [FantasiaFoundry's GGUF-IQ-Imatrix-Quantization-Script](https://huggingface.co/FantasiaFoundry/GGUF-Quantization-Script).
26
+
27
+ ## What does "Imatrix" mean?
28
+
29
+ It stands for **Importance Matrix**, a technique used to improve the quality of quantized models. <br>
30
+ [[1]](https://github.com/ggerganov/llama.cpp/discussions/5006/) <br>
31
+ The **Imatrix** is calculated based on calibration data, and it helps determine the importance of different model activations during the quantization process. The idea is to preserve the most important information during quantization, which can help reduce the loss of model performance and lead to better quality preservation, especially when the calibration data is diverse. <br>
32
+ [[2]](https://github.com/ggerganov/llama.cpp/discussions/5263#discussioncomment-8395384/)
33
+
34
+ For --imatrix data, included `imatrix.dat` was used.
35
+
36
+ Using [llama.cpp-b2343](https://github.com/ggerganov/llama.cpp/releases/tag/b2343/):
37
+
38
+ ```
39
+ Base⇢ GGUF(F16)⇢ Imatrix-Data(F16)⇢ GGUF(Imatrix-Quants)
40
+ ```
41
+
42
+ The new **IQ3_S** quant-option has shown to be better than the old Q3_K_S, so I added that instead of the later. Only supported in `koboldcpp-1.59.1` or higher.
43
+
44
+ If you want any specific quantization to be added, feel free to ask.
45
+
46
+ <!-- ## Model image: -->
47
+
48
+ ## Original model information:
49
+
50
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/642265bc01c62c1e4102dc36/YAcs7XqxH3wAYPXjt2vrS.png)
51
+
52
+ # Remix
53
+
54
+
55
+ ### Configuration
56
+
57
+ The following YAML configuration was used to produce this model:
58
+
59
+ ```yaml
60
+ slices:
61
+ - sources:
62
+ - model: SpecialEdition
63
+ layer_range: [0, 32]
64
+ - model: Remix
65
+ layer_range: [0, 32]
66
+ merge_method: slerp
67
+ base_model: SpecialEdition
68
+ parameters:
69
+ t:
70
+ - filter: self_attn
71
+ value: [0, 0.5, 0.3, 0.7, 1]
72
+ - filter: mlp
73
+ value: [1, 0.5, 0.7, 0.3, 0]
74
+ - value: 0.5
75
+ dtype: bfloat16
76
+ ```