Update README.md
Browse files
README.md
CHANGED
@@ -115,8 +115,46 @@ Refer to the Provided Files table below to see what files use which methods, and
|
|
115 |
| [genz-70b.Q4_K_M.gguf](https://huggingface.co/TheBloke/Genz-70b-GGUF/blob/main/genz-70b.Q4_K_M.gguf) | Q4_K_M | 4 | 41.42 GB| 43.92 GB | medium, balanced quality - recommended |
|
116 |
| [genz-70b.Q5_K_S.gguf](https://huggingface.co/TheBloke/Genz-70b-GGUF/blob/main/genz-70b.Q5_K_S.gguf) | Q5_K_S | 5 | 47.46 GB| 49.96 GB | large, low quality loss - recommended |
|
117 |
| [genz-70b.Q5_K_M.gguf](https://huggingface.co/TheBloke/Genz-70b-GGUF/blob/main/genz-70b.Q5_K_M.gguf) | Q5_K_M | 5 | 48.75 GB| 51.25 GB | large, very low quality loss - recommended |
|
|
|
|
|
118 |
|
119 |
**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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
<!-- README_GGUF.md-provided-files end -->
|
121 |
|
122 |
<!-- README_GGUF.md-how-to-run start -->
|
|
|
115 |
| [genz-70b.Q4_K_M.gguf](https://huggingface.co/TheBloke/Genz-70b-GGUF/blob/main/genz-70b.Q4_K_M.gguf) | Q4_K_M | 4 | 41.42 GB| 43.92 GB | medium, balanced quality - recommended |
|
116 |
| [genz-70b.Q5_K_S.gguf](https://huggingface.co/TheBloke/Genz-70b-GGUF/blob/main/genz-70b.Q5_K_S.gguf) | Q5_K_S | 5 | 47.46 GB| 49.96 GB | large, low quality loss - recommended |
|
117 |
| [genz-70b.Q5_K_M.gguf](https://huggingface.co/TheBloke/Genz-70b-GGUF/blob/main/genz-70b.Q5_K_M.gguf) | Q5_K_M | 5 | 48.75 GB| 51.25 GB | large, very low quality loss - recommended |
|
118 |
+
| genz-70b.Q6_K.bin | q6_K | 6 | 56.82 GB | 59.32 GB | very large, extremely low quality loss |
|
119 |
+
| genz-70b.Q8_0.bin | q8_0 | 8 | 73.29 GB | 75.79 GB | very large, extremely low quality loss - not recommended |
|
120 |
|
121 |
**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.
|
122 |
+
|
123 |
+
### Q6_K and Q8_0 files are split and require joining
|
124 |
+
|
125 |
+
**Note:** HF does not support uploading files larger than 50GB. Therefore I have uploaded the Q6_K and Q8_0 files as split files.
|
126 |
+
|
127 |
+
<details>
|
128 |
+
<summary>Click for instructions regarding Q6_K and Q8_0 files</summary>
|
129 |
+
|
130 |
+
### q6_K
|
131 |
+
Please download:
|
132 |
+
* `genz-70b.Q6_K.gguf-split-a`
|
133 |
+
* `genz-70b.Q6_K.gguf-split-b`
|
134 |
+
|
135 |
+
### q8_0
|
136 |
+
Please download:
|
137 |
+
* `genz-70b.Q8_0.gguf-split-a`
|
138 |
+
* `genz-70b.Q8_0.gguf-split-b`
|
139 |
+
|
140 |
+
To join the files, do the following:
|
141 |
+
|
142 |
+
Linux and macOS:
|
143 |
+
```
|
144 |
+
cat genz-70b.Q6_K.gguf-split-* > genz-70b.Q6_K.gguf && rm genz-70b.Q6_K.gguf-split-*
|
145 |
+
cat genz-70b.Q8_0.gguf-split-* > genz-70b.Q8_0.gguf && rm genz-70b.Q8_0.gguf-split-*
|
146 |
+
```
|
147 |
+
Windows command line:
|
148 |
+
```
|
149 |
+
COPY /B genz-70b.Q6_K.gguf-split-a + genz-70b.Q6_K.gguf-split-b genz-70b.Q6_K.gguf
|
150 |
+
del genz-70b.Q6_K.gguf-split-a genz-70b.Q6_K.gguf-split-b
|
151 |
+
|
152 |
+
COPY /B genz-70b.Q8_0.gguf-split-a + genz-70b.Q8_0.gguf-split-b genz-70b.Q8_0.gguf
|
153 |
+
del genz-70b.Q8_0.gguf-split-a genz-70b.Q8_0.gguf-split-b
|
154 |
+
```
|
155 |
+
|
156 |
+
</details>
|
157 |
+
|
158 |
<!-- README_GGUF.md-provided-files end -->
|
159 |
|
160 |
<!-- README_GGUF.md-how-to-run start -->
|