Lewdiculous commited on
Commit
3874c81
1 Parent(s): d9ccbbb

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +68 -0
README.md ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ tags:
4
+ - mistral
5
+ - quantized
6
+ - text-generation-inference
7
+ - rp
8
+ - roleplay
9
+ - uncensored
10
+ pipeline_tag: text-generation
11
+ inference: false
12
+ language:
13
+ - en
14
+ ---
15
+
16
+ # **GGUF-Imatrix quantizations for [Test157t/Prima-LelantaclesV6-7b](https://huggingface.co/Test157t/Prima-LelantaclesV6-7b/).**
17
+
18
+ # What does "Imatrix" mean?
19
+
20
+ It stands for **Importance Matrix**, a technique used to improve the quality of quantized models.
21
+
22
+ 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.
23
+
24
+ One of the benefits of using an Imatrix is that it can lead to better model performance, especially when the calibration data is diverse.
25
+
26
+ More information: [[1]](https://github.com/ggerganov/llama.cpp/discussions/5006) [[2]](https://github.com/ggerganov/llama.cpp/discussions/5263#discussioncomment-8395384).
27
+
28
+ For --imatrix data, `imatrix-Prima-LelantaclesV6-7b-F16.dat` was used.
29
+
30
+ `Base⇢ GGUF(F16)⇢ Imatrix-Data(F16)⇢ GGUF(Imatrix-Quants)`
31
+
32
+ Using [llama.cpp](https://github.com/ggerganov/llama.cpp/)-[b2294](https://github.com/ggerganov/llama.cpp/releases/tag/b2294).
33
+
34
+ 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.
35
+
36
+ *If you want any specific quantization to be added, feel free to ask.*
37
+
38
+ All credits belong to the [creator](https://huggingface.co/Test157t/).
39
+
40
+ # Original model information:
41
+
42
+ ![image/jpeg](https://cdn-uploads.huggingface.co/production/uploads/642265bc01c62c1e4102dc36/pildYZ9hiswwLD4rBLt1A.jpeg)
43
+
44
+ This model was merged using the [DARE](https://arxiv.org/abs/2311.03099) [TIES](https://arxiv.org/abs/2306.01708)
45
+
46
+ ### Models Merged
47
+
48
+ The following models were included in the merge:
49
+ * [Test157t/West-Pasta-Lake-7b](https://huggingface.co/Test157t/West-Pasta-Lake-7b) + [Test157t/Lelantacles6-Experiment26-7B](https://huggingface.co/Test157t/Lelantacles6-Experiment26-7B)
50
+
51
+ ### Configuration
52
+
53
+ The following YAML configuration was used to produce this model:
54
+
55
+ ```yaml
56
+ merge_method: dare_ties
57
+ base_model: Test157t/Lelantacles6-Experiment26-7B
58
+ parameters:
59
+ normalize: true
60
+ models:
61
+ - model: Test157t/West-Pasta-Lake-7b
62
+ parameters:
63
+ weight: 1
64
+ - model: Test157t/Lelantacles6-Experiment26-7B
65
+ parameters:
66
+ weight: 1
67
+ dtype: float16
68
+ ```