TheBloke commited on
Commit
dd79310
1 Parent(s): 9beb3e5

Initial GGUF model commit

Browse files
Files changed (1) hide show
  1. README.md +258 -0
README.md ADDED
@@ -0,0 +1,258 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ inference: false
3
+ language:
4
+ - en
5
+ library_name: transformers
6
+ license: llama2
7
+ model_creator: OpenLemur
8
+ model_link: https://huggingface.co/OpenLemur/lemur-70b-chat-v1
9
+ model_name: Lemur 70B Chat v1
10
+ model_type: llama
11
+ pipeline_tag: text-generation
12
+ quantized_by: TheBloke
13
+ tags:
14
+ - text-generation
15
+ - code
16
+ - text-generation-inference
17
+ widget:
18
+ - example_title: Lemur favorite fruit
19
+ group: Python
20
+ text: What's lemur's favorite fruit?
21
+ - example_title: Merge Sort
22
+ group: Python
23
+ text: Write a Python function to merge two sorted lists into one sorted list without
24
+ using any built-in sort functions.
25
+ ---
26
+
27
+ <!-- header start -->
28
+ <!-- 200823 -->
29
+ <div style="width: auto; margin-left: auto; margin-right: auto">
30
+ <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
31
+ </div>
32
+ <div style="display: flex; justify-content: space-between; width: 100%;">
33
+ <div style="display: flex; flex-direction: column; align-items: flex-start;">
34
+ <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://discord.gg/theblokeai">Chat & support: TheBloke's Discord server</a></p>
35
+ </div>
36
+ <div style="display: flex; flex-direction: column; align-items: flex-end;">
37
+ <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p>
38
+ </div>
39
+ </div>
40
+ <div style="text-align:center; margin-top: 0em; margin-bottom: 0em"><p style="margin-top: 0.25em; margin-bottom: 0em;">TheBloke's LLM work is generously supported by a grant from <a href="https://a16z.com">andreessen horowitz (a16z)</a></p></div>
41
+ <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
42
+ <!-- header end -->
43
+
44
+ # Lemur 70B Chat v1 - GGUF
45
+ - Model creator: [OpenLemur](https://huggingface.co/OpenLemur)
46
+ - Original model: [Lemur 70B Chat v1](https://huggingface.co/OpenLemur/lemur-70b-chat-v1)
47
+
48
+ ## Description
49
+
50
+ This repo contains GGUF format model files for [OpenLemur's Lemur 70B Chat v1](https://huggingface.co/OpenLemur/lemur-70b-chat-v1).
51
+
52
+ <!-- README_GGUF.md-about-gguf start -->
53
+ ### About GGUF
54
+
55
+ GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp.
56
+
57
+ The key benefit of GGUF is that it is a extensible, future-proof format which stores more information about the model as metadata. It also includes significantly improved tokenization code, including for the first time full support for special tokens. This should improve performance, especially with models that use new special tokens and implement custom prompt templates.
58
+
59
+ As of August 25th, here is a list of clients and libraries that are known to support GGUF:
60
+ * [llama.cpp](https://github.com/ggerganov/llama.cpp).
61
+ * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI. Supports GGUF with GPU acceleration via the ctransformers backend - llama-cpp-python backend should work soon too.
62
+ * [KoboldCpp](https://github.com/LostRuins/koboldcpp), now supports GGUF as of release 1.41! A powerful GGML web UI, with full GPU accel. Especially good for story telling.
63
+ * [LM Studio](https://lmstudio.ai/), version 0.2.2 and later support GGUF. A fully featured local GUI with GPU acceleration on both Windows (NVidia and AMD), and macOS.
64
+ * [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), should now work, choose the `c_transformers` backend. A great web UI with many interesting features. Supports CUDA GPU acceleration.
65
+ * [ctransformers](https://github.com/marella/ctransformers), now supports GGUF as of version 0.2.24! A Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
66
+ * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), supports GGUF as of version 0.1.79. A Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
67
+ * [candle](https://github.com/huggingface/candle), added GGUF support on August 22nd. Candle is a Rust ML framework with a focus on performance, including GPU support, and ease of use.
68
+
69
+ The clients and libraries below are expecting to add GGUF support shortly:
70
+ <!-- README_GGUF.md-about-gguf end -->
71
+
72
+ <!-- repositories-available start -->
73
+ ## Repositories available
74
+
75
+ * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Lemur-70B-Chat-v1-GPTQ)
76
+ * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/Lemur-70B-Chat-v1-GGUF)
77
+ * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference (deprecated)](https://huggingface.co/TheBloke/Lemur-70B-Chat-v1-GGML)
78
+ * [OpenLemur's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/OpenLemur/lemur-70b-chat-v1)
79
+ <!-- repositories-available end -->
80
+
81
+ <!-- prompt-template start -->
82
+ ## Prompt template: ChatML
83
+
84
+ ```
85
+ <|im_start|>system
86
+ {system_message}<|im_end|>
87
+ <|im_start|>user
88
+ {prompt}<|im_end|>
89
+ <|im_start|>assistant
90
+
91
+ ```
92
+
93
+ <!-- prompt-template end -->
94
+ <!-- compatibility_gguf start -->
95
+ ## Compatibility
96
+
97
+ These quantised GGUF files are compatible with llama.cpp from August 21st 2023 onwards, as of commit [6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9](https://github.com/ggerganov/llama.cpp/commit/6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9)
98
+
99
+ As of August 24th 2023 they are now compatible with KoboldCpp, release 1.41 and later.
100
+
101
+ They are are not yet compatible with any other third-party UIS, libraries or utilities but this is expected to change very soon.
102
+
103
+ ## Explanation of quantisation methods
104
+ <details>
105
+ <summary>Click to see details</summary>
106
+
107
+ The new methods available are:
108
+ * GGML_TYPE_Q2_K - "type-1" 2-bit quantization in super-blocks containing 16 blocks, each block having 16 weight. Block scales and mins are quantized with 4 bits. This ends up effectively using 2.5625 bits per weight (bpw)
109
+ * GGML_TYPE_Q3_K - "type-0" 3-bit quantization in super-blocks containing 16 blocks, each block having 16 weights. Scales are quantized with 6 bits. This end up using 3.4375 bpw.
110
+ * GGML_TYPE_Q4_K - "type-1" 4-bit quantization in super-blocks containing 8 blocks, each block having 32 weights. Scales and mins are quantized with 6 bits. This ends up using 4.5 bpw.
111
+ * GGML_TYPE_Q5_K - "type-1" 5-bit quantization. Same super-block structure as GGML_TYPE_Q4_K resulting in 5.5 bpw
112
+ * GGML_TYPE_Q6_K - "type-0" 6-bit quantization. Super-blocks with 16 blocks, each block having 16 weights. Scales are quantized with 8 bits. This ends up using 6.5625 bpw
113
+
114
+ Refer to the Provided Files table below to see what files use which methods, and how.
115
+ </details>
116
+ <!-- compatibility_gguf end -->
117
+
118
+ <!-- README_GGUF.md-provided-files start -->
119
+ ## Provided files
120
+
121
+ | Name | Quant method | Bits | Size | Max RAM required | Use case |
122
+ | ---- | ---- | ---- | ---- | ---- | ----- |
123
+ | [lemur-70b-chat-v1.Q2_K.gguf](https://huggingface.co/TheBloke/Lemur-70B-Chat-v1-GGUF/blob/main/lemur-70b-chat-v1.Q2_K.gguf) | Q2_K | 2 | 29.28 GB| 31.78 GB | smallest, significant quality loss - not recommended for most purposes |
124
+ | [lemur-70b-chat-v1.Q3_K_S.gguf](https://huggingface.co/TheBloke/Lemur-70B-Chat-v1-GGUF/blob/main/lemur-70b-chat-v1.Q3_K_S.gguf) | Q3_K_S | 3 | 29.92 GB| 32.42 GB | very small, high quality loss |
125
+ | [lemur-70b-chat-v1.Q3_K_M.gguf](https://huggingface.co/TheBloke/Lemur-70B-Chat-v1-GGUF/blob/main/lemur-70b-chat-v1.Q3_K_M.gguf) | Q3_K_M | 3 | 33.19 GB| 35.69 GB | very small, high quality loss |
126
+ | [lemur-70b-chat-v1.Q3_K_L.gguf](https://huggingface.co/TheBloke/Lemur-70B-Chat-v1-GGUF/blob/main/lemur-70b-chat-v1.Q3_K_L.gguf) | Q3_K_L | 3 | 36.15 GB| 38.65 GB | small, substantial quality loss |
127
+ | [lemur-70b-chat-v1.Q4_K_S.gguf](https://huggingface.co/TheBloke/Lemur-70B-Chat-v1-GGUF/blob/main/lemur-70b-chat-v1.Q4_K_S.gguf) | Q4_K_S | 4 | 39.07 GB| 41.57 GB | small, greater quality loss |
128
+ | [lemur-70b-chat-v1.Q4_K_M.gguf](https://huggingface.co/TheBloke/Lemur-70B-Chat-v1-GGUF/blob/main/lemur-70b-chat-v1.Q4_K_M.gguf) | Q4_K_M | 4 | 41.42 GB| 43.92 GB | medium, balanced quality - recommended |
129
+ | [lemur-70b-chat-v1.Q5_K_S.gguf](https://huggingface.co/TheBloke/Lemur-70B-Chat-v1-GGUF/blob/main/lemur-70b-chat-v1.Q5_K_S.gguf) | Q5_K_S | 5 | 47.46 GB| 49.96 GB | large, low quality loss - recommended |
130
+ | [lemur-70b-chat-v1.Q5_K_M.gguf](https://huggingface.co/TheBloke/Lemur-70B-Chat-v1-GGUF/blob/main/lemur-70b-chat-v1.Q5_K_M.gguf) | Q5_K_M | 5 | 48.75 GB| 51.25 GB | large, very low quality loss - recommended |
131
+
132
+ **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.
133
+ <!-- README_GGUF.md-provided-files end -->
134
+
135
+ <!-- README_GGUF.md-how-to-run start -->
136
+ ## How to run in `llama.cpp`
137
+
138
+ Make sure you are using `llama.cpp` from commit [6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9](https://github.com/ggerganov/llama.cpp/commit/6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9) or later.
139
+
140
+ For compatibility with older versions of llama.cpp, or for use with third-party clients and libaries, please use GGML files instead.
141
+
142
+ ```
143
+ ./main -t 10 -ngl 32 -m lemur-70b-chat-v1.q4_K_M.gguf --color -c 4096 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### Instruction: Write a story about llamas\n### Response:"
144
+ ```
145
+ 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`.
146
+
147
+ Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
148
+
149
+ Change `-c 4096` to the desired sequence length for this model. For extended sequence models - eg 8K, 16K, 32K - the necessary RoPE scaling parameters are read from the GGUF file and set by llama.cpp automatically.
150
+
151
+ If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
152
+
153
+ For other parameters and how to use them, please refer to [the llama.cpp documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/main/README.md)
154
+
155
+ ## How to run in `text-generation-webui`
156
+
157
+ Further instructions here: [text-generation-webui/docs/llama.cpp.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/llama.cpp.md).
158
+ <!-- README_GGUF.md-how-to-run end -->
159
+
160
+ <!-- footer start -->
161
+ <!-- 200823 -->
162
+ ## Discord
163
+
164
+ For further support, and discussions on these models and AI in general, join us at:
165
+
166
+ [TheBloke AI's Discord server](https://discord.gg/theblokeai)
167
+
168
+ ## Thanks, and how to contribute.
169
+
170
+ Thanks to the [chirper.ai](https://chirper.ai) team!
171
+
172
+ I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training.
173
+
174
+ If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects.
175
+
176
+ Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits.
177
+
178
+ * Patreon: https://patreon.com/TheBlokeAI
179
+ * Ko-Fi: https://ko-fi.com/TheBlokeAI
180
+
181
+ **Special thanks to**: Aemon Algiz.
182
+
183
+ **Patreon special mentions**: Kacper Wikieł, knownsqashed, Leonard Tan, Asp the Wyvern, Daniel P. Andersen, Luke Pendergrass, Stanislav Ovsiannikov, RoA, Dave, Ai Maven, Kalila, Will Dee, Imad Khwaja, Nitin Borwankar, Joseph William Delisle, Tony Hughes, Cory Kujawski, Rishabh Srivastava, Russ Johnson, Stephen Murray, Lone Striker, Johann-Peter Hartmann, Elle, J, Deep Realms, SuperWojo, Raven Klaugh, Sebastain Graf, ReadyPlayerEmma, Alps Aficionado, Mano Prime, Derek Yates, Gabriel Puliatti, Mesiah Bishop, Magnesian, Sean Connelly, biorpg, Iucharbius, Olakabola, Fen Risland, Space Cruiser, theTransient, Illia Dulskyi, Thomas Belote, Spencer Kim, Pieter, John Detwiler, Fred von Graf, Michael Davis, Swaroop Kallakuri, subjectnull, Clay Pascal, Subspace Studios, Chris Smitley, Enrico Ros, usrbinkat, Steven Wood, alfie_i, David Ziegler, Willem Michiel, Matthew Berman, Andrey, Pyrater, Jeffrey Morgan, vamX, LangChain4j, Luke @flexchar, Trenton Dambrowitz, Pierre Kircher, Alex, Sam, James Bentley, Edmond Seymore, Eugene Pentland, Pedro Madruga, Rainer Wilmers, Dan Guido, Nathan LeClaire, Spiking Neurons AB, Talal Aujan, zynix, Artur Olbinski, Michael Levine, 阿明, K, John Villwock, Nikolai Manek, Femi Adebogun, senxiiz, Deo Leter, NimbleBox.ai, Viktor Bowallius, Geoffrey Montalvo, Mandus, Ajan Kanaga, ya boyyy, Jonathan Leane, webtim, Brandon Frisco, danny, Alexandros Triantafyllidis, Gabriel Tamborski, Randy H, terasurfer, Vadim, Junyu Yang, Vitor Caleffi, Chadd, transmissions 11
184
+
185
+
186
+ Thank you to all my generous patrons and donaters!
187
+
188
+ And thank you again to a16z for their generous grant.
189
+
190
+ <!-- footer end -->
191
+
192
+ <!-- original-model-card start -->
193
+ # Original model card: OpenLemur's Lemur 70B Chat v1
194
+
195
+
196
+ # lemur-70b-chat-v1
197
+
198
+ <p align="center">
199
+ <img src="https://huggingface.co/datasets/OpenLemur/assets/resolve/main/lemur_icon.png" width="300" height="300" alt="Lemur">
200
+ </p>
201
+
202
+ <div align="center">
203
+ <img src="https://huggingface.co/datasets/OpenLemur/assets/resolve/main/lemur_chat_radar.png">
204
+ </div>
205
+
206
+
207
+ ## Use
208
+
209
+ ### Setup
210
+
211
+ First, we have to install all the libraries listed in `requirements.txt` in [GitHub](https://github.com/OpenLemur/lemur-v1):
212
+
213
+ ```bash
214
+ pip install -r requirements.txt
215
+ ```
216
+
217
+ ### Generation
218
+
219
+ ```python
220
+ from transformers import AutoTokenizer, AutoModelForCausalLM
221
+
222
+ tokenizer = AutoTokenizer.from_pretrained("OpenLemur/lemur-70b-chat-v1")
223
+ model = AutoModelForCausalLM.from_pretrained("OpenLemur/lemur-70b-chat-v1", device_map="auto", load_in_8bit=True)
224
+
225
+ # Text Generation Example
226
+ prompt = """<|im_start|>system
227
+ You are a helpful, respectful, and honest assistant.
228
+ <|im_end|>
229
+ <|im_start|>user
230
+ What's a lemur's favorite fruit?<|im_end|>
231
+ <|im_start|>assistant
232
+ """
233
+ input = tokenizer(prompt, return_tensors="pt")
234
+ output = model.generate(**input, max_length=50, num_return_sequences=1)
235
+ generated_text = tokenizer.decode(output[0], skip_special_tokens=True)
236
+ print(generated_text)
237
+
238
+ # Code Generation Example
239
+ prompt = """<|im_start|>system
240
+ Below is an instruction that describes a task. Write a response that appropriately completes the request.
241
+ <|im_end|>
242
+ <|im_start|>user
243
+ Write a Python function to merge two sorted lists into one sorted list without using any built-in sort functions.<|im_end|>
244
+ <|im_start|>assistant
245
+ """
246
+ input = tokenizer(prompt, return_tensors="pt")
247
+ output = model.generate(**input, max_length=200, num_return_sequences=1)
248
+ generated_code = tokenizer.decode(output[0], skip_special_tokens=True)
249
+ print(generated_code)
250
+ ```
251
+
252
+ # License
253
+ The model is licensed under a CC BY-NC-4.0 license focused on research use cases.
254
+
255
+ # Acknowledgements
256
+ The Lemur project is an open collaborative research effort between [XLang Lab](https://www.xlang.ai/) and Salesforce Research. We thank Salesforce, Google Research and Amazon AWS for their gift support.
257
+
258
+ <!-- original-model-card end -->