TheBloke commited on
Commit
9a4da34
1 Parent(s): 6a2450e

Update README.md

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