Lewdiculous commited on
Commit
43e87b9
1 Parent(s): 6680491

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
README.md CHANGED
@@ -18,10 +18,18 @@ base_model:
18
  ---
19
 
20
  This repository hosts GGUF-Imatrix quantizations for [Endevor/InfinityRP-v1-7B](https://huggingface.co/Endevor/InfinityRP-v1-7B).
 
 
 
 
 
 
 
 
21
  ```
22
  Base⇢ GGUF(F16)⇢ Imatrix-Data(F16)⇢ GGUF(Imatrix-Quants)
23
  ```
24
-
25
  ```python
26
  quantization_options = [
27
  "Q4_K_M", "IQ4_XS", "Q5_K_M", "Q5_K_S", "Q6_K",
 
18
  ---
19
 
20
  This repository hosts GGUF-Imatrix quantizations for [Endevor/InfinityRP-v1-7B](https://huggingface.co/Endevor/InfinityRP-v1-7B).
21
+ **What does "Imatrix" mean?**
22
+
23
+ It stands for **Importance Matrix**, a technique used to improve the quality of quantized models.
24
+ The **Imatrix** is calculated based on calibration data, and it helps determine the importance of different model activations during the quantization process.
25
+ 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.
26
+ [[1]](https://github.com/ggerganov/llama.cpp/discussions/5006) [[2]](https://github.com/ggerganov/llama.cpp/discussions/5263#discussioncomment-8395384)
27
+
28
+ **Steps:**
29
  ```
30
  Base⇢ GGUF(F16)⇢ Imatrix-Data(F16)⇢ GGUF(Imatrix-Quants)
31
  ```
32
+ **Quants:**
33
  ```python
34
  quantization_options = [
35
  "Q4_K_M", "IQ4_XS", "Q5_K_M", "Q5_K_S", "Q6_K",