TheBloke commited on
Commit
7efe9c6
1 Parent(s): 963d831

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -1
README.md CHANGED
@@ -107,8 +107,38 @@ Refer to the Provided Files table below to see what files use which methods, and
107
  | [nous-hermes-llama2-70b.ggmlv3.Q5_0.bin](https://huggingface.co/TheBloke/Nous-Hermes-Llama2-70B-GGML/blob/main/nous-hermes-llama2-70b.ggmlv3.Q5_0.bin) | Q5_0 | 5 | 47.43 GB| 49.93 GB | Original quant method, 5-bit. Higher accuracy, higher resource usage and slower inference. |
108
  | [nous-hermes-llama2-70b.ggmlv3.Q5_K_S.bin](https://huggingface.co/TheBloke/Nous-Hermes-Llama2-70B-GGML/blob/main/nous-hermes-llama2-70b.ggmlv3.Q5_K_S.bin) | Q5_K_S | 5 | 47.74 GB| 50.24 GB | New k-quant method. Uses GGML_TYPE_Q5_K for all tensors |
109
  | [nous-hermes-llama2-70b.ggmlv3.Q5_K_M.bin](https://huggingface.co/TheBloke/Nous-Hermes-Llama2-70B-GGML/blob/main/nous-hermes-llama2-70b.ggmlv3.Q5_K_M.bin) | Q5_K_M | 5 | 49.03 GB| 51.53 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 |
 
 
 
110
 
111
- **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.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
 
113
  ## How to run in `llama.cpp`
114
 
 
107
  | [nous-hermes-llama2-70b.ggmlv3.Q5_0.bin](https://huggingface.co/TheBloke/Nous-Hermes-Llama2-70B-GGML/blob/main/nous-hermes-llama2-70b.ggmlv3.Q5_0.bin) | Q5_0 | 5 | 47.43 GB| 49.93 GB | Original quant method, 5-bit. Higher accuracy, higher resource usage and slower inference. |
108
  | [nous-hermes-llama2-70b.ggmlv3.Q5_K_S.bin](https://huggingface.co/TheBloke/Nous-Hermes-Llama2-70B-GGML/blob/main/nous-hermes-llama2-70b.ggmlv3.Q5_K_S.bin) | Q5_K_S | 5 | 47.74 GB| 50.24 GB | New k-quant method. Uses GGML_TYPE_Q5_K for all tensors |
109
  | [nous-hermes-llama2-70b.ggmlv3.Q5_K_M.bin](https://huggingface.co/TheBloke/Nous-Hermes-Llama2-70B-GGML/blob/main/nous-hermes-llama2-70b.ggmlv3.Q5_K_M.bin) | Q5_K_M | 5 | 49.03 GB| 51.53 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 |
110
+ | nous-hermes-llama2-70b.ggmlv3.q5_1.bin | q5_1 | 5 | 51.76 GB | 54.26 GB | Original quant method, 5-bit. Higher accuracy, slower inference than q5_0. |
111
+ | nous-hermes-llama2-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 |
112
+ | nous-hermes-llama2-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. |
113
 
114
+ ### q5_1, q6_K and q8_0 files require expansion from archive
115
+
116
+ **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.
117
+
118
+ <details>
119
+ <summary>Click for instructions regarding q5_1, q6_K and q8_0 files</summary>
120
+
121
+ ### q5_1
122
+ Please download:
123
+ * `nous-hermes-llama2-70b.ggmlv3.q5_1.zip`
124
+ * `nous-hermes-llama2-70b.ggmlv3.q5_1.z01`
125
+
126
+ ### q6_K
127
+ Please download:
128
+ * `nous-hermes-llama2-70b.ggmlv3.q6_K.zip`
129
+ * `nous-hermes-llama2-70b.ggmlv3.q6_K.z01`
130
+
131
+ ### q8_0
132
+ Please download:
133
+ * `nous-hermes-llama2-70b.ggmlv3.q8_0.zip`
134
+ * `nous-hermes-llama2-70b.ggmlv3.q8_0.z01`
135
+
136
+ 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:
137
+ ```
138
+ sudo apt update -y && sudo apt install 7zip
139
+ 7zz x nous-hermes-llama2-70b.ggmlv3.q6_K.zip
140
+ ```
141
+ </details>
142
 
143
  ## How to run in `llama.cpp`
144