TheBloke commited on
Commit
6761c02
1 Parent(s): edf6615

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -5
README.md CHANGED
@@ -23,23 +23,21 @@ This repo contains GGML files for for CPU inference using [llama.cpp](https://gi
23
  | ---- | ---- | ---- | ---- | ---- | ----- |
24
  `WizardLM-7B.GGML.q4_0.bin` | q4_0 | 4bit | 4.2GB | 6GB | Maximum compatibility |
25
  `WizardLM-7B.GGML.q4_2.bin` | q4_2 | 4bit | 4.2GB | 6GB | Best compromise between resources, speed and quality |
26
- `WizardLM-7B.GGML.q4_3.bin` | q4_3 | 4bit | 5.0GB | 7GB | Maximum quality 4bit, higher RAM requirements and slower inference |
27
  `WizardLM-7B.GGML.q5_0.bin` | q5_0 | 5bit | 4.63GB | 7GB | Brand new 5bit method. Potentially higher quality than 4bit, at cost of slightly higher resources. |
28
  `WizardLM-7B.GGML.q5_1.bin` | q5_1 | 5bit | 5.0GB | 7GB | Brand new 5bit method. Slightly higher resource usage than q5_0.|
29
 
30
  * The q4_0 file provides lower quality, but maximal compatibility. It will work with past and future versions of llama.cpp
31
  * The q4_2 file offers the best combination of performance and quality. This format is still subject to change and there may be compatibility issues, see below.
32
- * The q4_3 file offers the highest quality, at the cost of increased RAM usage and slower inference speed. This format is still subject to change and there may be compatibility issues, see below.
33
  * The q5_0 file is using brand new 5bit method released 26th April. This is the 5bit equivalent of q4_0.
34
  * The q5_1 file is using brand new 5bit method released 26th April. This is the 5bit equivalent of q4_1.
35
 
36
- ## q4_2 and q4_3 compatibility
37
 
38
- q4_2 and q4_3 are new 4bit quantisation methods offering improved quality. However they are still under development and their formats are subject to change.
39
 
40
  In order to use these files you will need to use recent llama.cpp code. And it's possible that future updates to llama.cpp could require that these files are re-generated.
41
 
42
- If and when the q4_2 and q4_3 files no longer work with recent versions of llama.cpp I will endeavour to update them.
43
 
44
  If you want to ensure guaranteed compatibility with a wide range of llama.cpp versions, use the q4_0 file.
45
 
 
23
  | ---- | ---- | ---- | ---- | ---- | ----- |
24
  `WizardLM-7B.GGML.q4_0.bin` | q4_0 | 4bit | 4.2GB | 6GB | Maximum compatibility |
25
  `WizardLM-7B.GGML.q4_2.bin` | q4_2 | 4bit | 4.2GB | 6GB | Best compromise between resources, speed and quality |
 
26
  `WizardLM-7B.GGML.q5_0.bin` | q5_0 | 5bit | 4.63GB | 7GB | Brand new 5bit method. Potentially higher quality than 4bit, at cost of slightly higher resources. |
27
  `WizardLM-7B.GGML.q5_1.bin` | q5_1 | 5bit | 5.0GB | 7GB | Brand new 5bit method. Slightly higher resource usage than q5_0.|
28
 
29
  * The q4_0 file provides lower quality, but maximal compatibility. It will work with past and future versions of llama.cpp
30
  * The q4_2 file offers the best combination of performance and quality. This format is still subject to change and there may be compatibility issues, see below.
 
31
  * The q5_0 file is using brand new 5bit method released 26th April. This is the 5bit equivalent of q4_0.
32
  * The q5_1 file is using brand new 5bit method released 26th April. This is the 5bit equivalent of q4_1.
33
 
34
+ ## q4_2 compatibility
35
 
36
+ q4_2 is a relatively new 4bit quantisation method offering improved quality. However they are still under development and their formats are subject to change.
37
 
38
  In order to use these files you will need to use recent llama.cpp code. And it's possible that future updates to llama.cpp could require that these files are re-generated.
39
 
40
+ If and when the q4_2 file no longer works with recent versions of llama.cpp I will endeavour to update it.
41
 
42
  If you want to ensure guaranteed compatibility with a wide range of llama.cpp versions, use the q4_0 file.
43