TheBloke commited on
Commit
3fb765b
1 Parent(s): ec502c6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -1
README.md CHANGED
@@ -103,8 +103,30 @@ Refer to the Provided Files table below to see what files use which methods, and
103
  | llama-2-70b.ggmlv3.q5_0.bin | q5_0 | 5 | 47.46 GB| 49.96 GB | Original quant method, 5-bit. Higher accuracy, higher resource usage and slower inference. |
104
  | llama-2-70b.ggmlv3.q5_K_M.bin | q5_K_M | 5 | 48.75 GB| 51.25 GB | New k-quant method. Uses GGML_TYPE_Q6_K for half of the attention.wv and feed_forward.w2 tensors, else GGML_TYPE_Q5_K |
105
  | llama-2-70b.ggmlv3.q5_K_S.bin | q5_K_S | 5 | 47.46 GB| 49.96 GB | New k-quant method. Uses GGML_TYPE_Q5_K for all tensors |
 
 
106
 
107
- **Note**: the above RAM figures assume no GPU offloading. If layers are offloaded to the GPU, this will reduce RAM usage and use VRAM instead.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
 
109
  ## How to run in `llama.cpp`
110
 
 
103
  | llama-2-70b.ggmlv3.q5_0.bin | q5_0 | 5 | 47.46 GB| 49.96 GB | Original quant method, 5-bit. Higher accuracy, higher resource usage and slower inference. |
104
  | llama-2-70b.ggmlv3.q5_K_M.bin | q5_K_M | 5 | 48.75 GB| 51.25 GB | New k-quant method. Uses GGML_TYPE_Q6_K for half of the attention.wv and feed_forward.w2 tensors, else GGML_TYPE_Q5_K |
105
  | llama-2-70b.ggmlv3.q5_K_S.bin | q5_K_S | 5 | 47.46 GB| 49.96 GB | New k-quant method. Uses GGML_TYPE_Q5_K for all tensors |
106
+ | llama-2-70b.ggmlv3.q6_K.bin | q6_K | 6 | 56.59 GB | 59.09 GB | New k-quant method. Uses GGML_TYPE_Q8_K - 6-bit quantization - for all tensors |
107
+ | llama-2-70b.ggmlv3.q8_0.bin | q8_0 | 8 | 73.23 GB | 75.73 GB | Original llama.cpp quant method, 8-bit. Almost indistinguishable from float16. High resource use and slow. Not recommended for most users. |
108
 
109
+ ### q6_K and q8_0 files require expansion from archive
110
+
111
+ **Note:** HF does not support uploading files larger than 50GB. Therefore I have uploaded the q6_K and q8_0 files as multi-part ZIP files. They are not compressed, they are just for storing a .bin file in two parts.
112
+
113
+ ### q6_K
114
+ Please download:
115
+ * `llama-2-70b.ggmlv3.q6_K.zip`
116
+ * `llama-2-70b.ggmlv3.q6_K.z01`
117
+
118
+ ### q8_0
119
+ Please download:
120
+ * `llama-2-70b.ggmlv3.q8_0.zip`
121
+ * `llama-2-70b.ggmlv3.q8_0.z01`
122
+
123
+ Then extract the .zip archive. This will will expand both parts automatically. On Linux I found I had to use `7zip` - the basic `unzip` tool did not work. Example:
124
+ ```
125
+ sudo apt update -y && sudo apt install 7zip
126
+ 7zz x airoboros-65b-gpt4-1.3.ggmlv3.q6_K.zip
127
+ ```
128
+
129
+ Once the `.bin` is extracted you can delete the `.zip` and `.z01` files.
130
 
131
  ## How to run in `llama.cpp`
132