TheBloke commited on
Commit
04cefb8
·
1 Parent(s): 398ad63

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -2
README.md CHANGED
@@ -76,16 +76,39 @@ Refer to the Provided Files table below to see what files use which methods, and
76
  | llama-65b.ggmlv3.q5_1.bin | q5_1 | 5 | 48.97 GB | 51.47 GB | Original llama.cpp quant method, 5-bit. Even higher accuracy, resource usage and slower inference. |
77
  | 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 |
78
  | 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 |
79
-
 
80
 
81
  **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.
82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  ## How to run in `llama.cpp`
84
 
85
  I use the following command line; adjust for your tastes and needs:
86
 
87
  ```
88
- ./main -t 10 -ngl 32 -m llama-65b.ggmlv3.q5_0.bin --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### Instruction: Write a story about llamas\n### Response:"
89
  ```
90
  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`.
91
 
 
76
  | llama-65b.ggmlv3.q5_1.bin | q5_1 | 5 | 48.97 GB | 51.47 GB | Original llama.cpp quant method, 5-bit. Even higher accuracy, resource usage and slower inference. |
77
  | 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 |
78
  | 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 |
79
+ | 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 |
80
+ | 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. |
81
 
82
  **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.
83
 
84
+ ### q6_K and q8_0 files require expansion from archive
85
+
86
+ **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.
87
+
88
+ ### q6_K
89
+ Please download:
90
+ * `llama-65b.ggmlv3.q6_K.zip`
91
+ * `llama-65b.ggmlv3.q6_K.z01`
92
+
93
+ ### q8_0
94
+ Please download:
95
+ * `llama-65b.ggmlv3.q8_0.zip`
96
+ * `llama-65b.ggmlv3.q8_0.z01`
97
+
98
+ 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:
99
+ ```
100
+ sudo apt update -y && sudo apt install 7zip
101
+ 7zz x llama-65b.ggmlv3.q6_K.zip`
102
+ ```
103
+
104
+ Once the `.bin` is extracted you can delete the `.zip` and `.z01` files
105
+
106
  ## How to run in `llama.cpp`
107
 
108
  I use the following command line; adjust for your tastes and needs:
109
 
110
  ```
111
+ ./main -t 10 -ngl 32 -m llama-65b.ggmlv3.q5_0.bin --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "Once upon a time"
112
  ```
113
  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`.
114