TheBloke commited on
Commit
909253b
1 Parent(s): e1f629f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -1
README.md CHANGED
@@ -88,15 +88,39 @@ Refer to the Provided Files table below to see what files use which methods, and
88
  | llama-65b.ggmlv3.q5_1.bin | q5_1 | 5 | 48.97 GB| 51.47 GB | Original quant method, 5-bit. Even higher accuracy, resource usage and slower inference. |
89
  | llama-65b.ggmlv3.q5_K_M.bin | q5_K_M | 5 | 46.20 GB| 48.70 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 |
90
  | llama-65b.ggmlv3.q5_K_S.bin | q5_K_S | 5 | 44.89 GB| 47.39 GB | New k-quant method. Uses GGML_TYPE_Q5_K for all tensors |
 
 
91
 
92
  **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.
93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  ## How to run in `llama.cpp`
95
 
96
  I use the following command line; adjust for your tastes and needs:
97
 
98
  ```
99
- ./main -t 10 -ngl 32 -m llama-65b.ggmlv3.q4_0.bin --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### Instruction: Write a story about llamas\n### Response:"
100
  ```
101
  Change `-t 10` to the number of physical CPU cores you have. For example if your system has 8 cores/16 threads, use `-t 8`.
102
 
 
88
  | llama-65b.ggmlv3.q5_1.bin | q5_1 | 5 | 48.97 GB| 51.47 GB | Original quant method, 5-bit. Even higher accuracy, resource usage and slower inference. |
89
  | llama-65b.ggmlv3.q5_K_M.bin | q5_K_M | 5 | 46.20 GB| 48.70 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 |
90
  | llama-65b.ggmlv3.q5_K_S.bin | q5_K_S | 5 | 44.89 GB| 47.39 GB | New k-quant method. Uses GGML_TYPE_Q5_K for all tensors |
91
+ | llama-65b.ggmlv3.q6_K.bin | q6_K |6 | |53.56 GB | 56.06 GB | New k-quant method. Uses GGML_TYPE_Q8_K - 6-bit quantization - for all tensors |
92
+ | llama-65b.ggmlv3.q8_0.bin | q8_0 | 8 | 69.370 GB | 71.87 GB | Original llama.cpp quant method, 8-bit. Almost indistinguishable from float16. High resource use and slow. Not recommended for most users. |
93
 
94
  **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.
95
 
96
+ ### q6_K and q8_0 files require expansion from archive
97
+
98
+ **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, it is just storing the .bin file in two parts.
99
+
100
+ ### q6_K
101
+ Please download:
102
+ * `llama-65b.ggmlv3.q6_K.zip`
103
+ * `llama-65b.ggmlv3.q6_K.z01`
104
+
105
+ ### q8_0
106
+ Please download:
107
+ * `llama-65b.ggmlv3.q8_0.zip`
108
+ * `llama-65b.ggmlv3.q8_0.z01`
109
+
110
+ 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:
111
+ ```
112
+ sudo apt update -y && sudo apt install 7zip
113
+ 7zz x llama-65b.ggmlv3.q6_K.zip`
114
+ ```
115
+
116
+ Once the `.bin` is extracted you can delete the `.zip` and `.z01` files
117
+
118
  ## How to run in `llama.cpp`
119
 
120
  I use the following command line; adjust for your tastes and needs:
121
 
122
  ```
123
+ ./main -t 10 -ngl 32 -m llama-65b.ggmlv3.q4_0.bin --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "Llamas are nice because"
124
  ```
125
  Change `-t 10` to the number of physical CPU cores you have. For example if your system has 8 cores/16 threads, use `-t 8`.
126