TheBloke commited on
Commit
a165be8
1 Parent(s): 86eff0a

Initial GGML model commit

Browse files
Files changed (1) hide show
  1. README.md +7 -38
README.md CHANGED
@@ -5,7 +5,7 @@ inference: false
5
  license: llama2
6
  model_creator: Jon Durbin
7
  model_link: https://huggingface.co/jondurbin/airoboros-l2-70b-2.1
8
- model_name: Airoboros L2 70B
9
  model_type: llama
10
  quantized_by: TheBloke
11
  ---
@@ -27,13 +27,13 @@ quantized_by: TheBloke
27
  <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
28
  <!-- header end -->
29
 
30
- # Airoboros L2 70B - GGML
31
  - Model creator: [Jon Durbin](https://huggingface.co/jondurbin)
32
- - Original model: [Airoboros L2 70B](https://huggingface.co/jondurbin/airoboros-l2-70b-2.1)
33
 
34
  ## Description
35
 
36
- This repo contains GGML format model files for [Jon Durbin's Airoboros L2 70B](https://huggingface.co/jondurbin/airoboros-l2-70b-2.1).
37
 
38
  ### Important note regarding GGML files.
39
 
@@ -113,39 +113,8 @@ Refer to the Provided Files table below to see what files use which methods, and
113
  | [airoboros-l2-70b-2.1.ggmlv3.Q5_0.bin](https://huggingface.co/TheBloke/Airoboros-L2-70B-2.1-GGML/blob/main/airoboros-l2-70b-2.1.ggmlv3.Q5_0.bin) | Q5_0 | 5 | 47.46 GB| 49.96 GB | Original quant method, 5-bit. Higher accuracy, higher resource usage and slower inference. |
114
  | [airoboros-l2-70b-2.1.ggmlv3.Q5_K_S.bin](https://huggingface.co/TheBloke/Airoboros-L2-70B-2.1-GGML/blob/main/airoboros-l2-70b-2.1.ggmlv3.Q5_K_S.bin) | Q5_K_S | 5 | 47.46 GB| 49.96 GB | New k-quant method. Uses GGML_TYPE_Q5_K for all tensors |
115
  | [airoboros-l2-70b-2.1.ggmlv3.Q5_K_M.bin](https://huggingface.co/TheBloke/Airoboros-L2-70B-2.1-GGML/blob/main/airoboros-l2-70b-2.1.ggmlv3.Q5_K_M.bin) | Q5_K_M | 5 | 48.75 GB| 51.25 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 |
116
- | airoboros-l2-70b-2.1.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. |
117
- | airoboros-l2-70b-2.1.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 |
118
- | airoboros-l2-70b-2.1.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. |
119
 
120
- ### q5_1, q6_K and q8_0 files require expansion from archive
121
-
122
- **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.
123
-
124
- <details>
125
- <summary>Click for instructions regarding q5_1, q6_K and q8_0 files</summary>
126
-
127
- ### q5_1
128
- Please download:
129
- * `airoboros-l2-70b-2.1.ggmlv3.q5_1.zip`
130
- * `airoboros-l2-70b-2.1.ggmlv3.q5_1.z01`
131
-
132
- ### q6_K
133
- Please download:
134
- * `airoboros-l2-70b-2.1.ggmlv3.q6_K.zip`
135
- * `airoboros-l2-70b-2.1.ggmlv3.q6_K.z01`
136
-
137
- ### q8_0
138
- Please download:
139
- * `airoboros-l2-70b-2.1.ggmlv3.q8_0.zip`
140
- * `airoboros-l2-70b-2.1.ggmlv3.q8_0.z01`
141
-
142
- 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:
143
- ```
144
- sudo apt update -y && sudo apt install 7zip
145
- 7zz x airoboros-l2-70b-2.1.ggmlv3.q6_K.zip
146
- ```
147
-
148
- </details>
149
 
150
  ## How to run in `llama.cpp`
151
 
@@ -206,7 +175,7 @@ And thank you again to a16z for their generous grant.
206
 
207
  <!-- footer end -->
208
 
209
- # Original model card: Jon Durbin's Airoboros L2 70B
210
 
211
 
212
  ### Overview
@@ -233,7 +202,7 @@ This is an instruction fine-tuned llama-2 model, using synthetic data generated
233
  - laws vary widely based on time and location
234
  - language model may conflate certain words with laws, e.g. it may think "stealing eggs from a chicken" is illegal
235
  - these models just produce text, what you do with that text is your resonsibility
236
- - many people and industries deal with "sensitive" content; imagine if a court stenographer's eqipment filtered illegal content - it would be useless
237
 
238
  ### Prompt format
239
 
 
5
  license: llama2
6
  model_creator: Jon Durbin
7
  model_link: https://huggingface.co/jondurbin/airoboros-l2-70b-2.1
8
+ model_name: Airoboros L2 70B 2.1
9
  model_type: llama
10
  quantized_by: TheBloke
11
  ---
 
27
  <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
28
  <!-- header end -->
29
 
30
+ # Airoboros L2 70B 2.1 - GGML
31
  - Model creator: [Jon Durbin](https://huggingface.co/jondurbin)
32
+ - Original model: [Airoboros L2 70B 2.1](https://huggingface.co/jondurbin/airoboros-l2-70b-2.1)
33
 
34
  ## Description
35
 
36
+ This repo contains GGML format model files for [Jon Durbin's Airoboros L2 70B 2.1](https://huggingface.co/jondurbin/airoboros-l2-70b-2.1).
37
 
38
  ### Important note regarding GGML files.
39
 
 
113
  | [airoboros-l2-70b-2.1.ggmlv3.Q5_0.bin](https://huggingface.co/TheBloke/Airoboros-L2-70B-2.1-GGML/blob/main/airoboros-l2-70b-2.1.ggmlv3.Q5_0.bin) | Q5_0 | 5 | 47.46 GB| 49.96 GB | Original quant method, 5-bit. Higher accuracy, higher resource usage and slower inference. |
114
  | [airoboros-l2-70b-2.1.ggmlv3.Q5_K_S.bin](https://huggingface.co/TheBloke/Airoboros-L2-70B-2.1-GGML/blob/main/airoboros-l2-70b-2.1.ggmlv3.Q5_K_S.bin) | Q5_K_S | 5 | 47.46 GB| 49.96 GB | New k-quant method. Uses GGML_TYPE_Q5_K for all tensors |
115
  | [airoboros-l2-70b-2.1.ggmlv3.Q5_K_M.bin](https://huggingface.co/TheBloke/Airoboros-L2-70B-2.1-GGML/blob/main/airoboros-l2-70b-2.1.ggmlv3.Q5_K_M.bin) | Q5_K_M | 5 | 48.75 GB| 51.25 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 |
 
 
 
116
 
117
+ **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.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
 
119
  ## How to run in `llama.cpp`
120
 
 
175
 
176
  <!-- footer end -->
177
 
178
+ # Original model card: Jon Durbin's Airoboros L2 70B 2.1
179
 
180
 
181
  ### Overview
 
202
  - laws vary widely based on time and location
203
  - language model may conflate certain words with laws, e.g. it may think "stealing eggs from a chicken" is illegal
204
  - these models just produce text, what you do with that text is your resonsibility
205
+ - many people and industries deal with "sensitive" content; imagine if a court stenographer's equipment filtered illegal content - it would be useless
206
 
207
  ### Prompt format
208