Transformers
GGUF
llama
sft
TheBloke commited on
Commit
accbbb6
·
1 Parent(s): 446d46c

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +287 -0
README.md ADDED
@@ -0,0 +1,287 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets:
3
+ - OpenAssistant/oasst1
4
+ inference: false
5
+ language:
6
+ - en
7
+ - de
8
+ - es
9
+ - fr
10
+ license: llama2
11
+ model_creator: Jordan Clive
12
+ model_link: https://huggingface.co/jordiclive/Llama-2-70b-oasst-1-200
13
+ model_name: Open-Assistant Llama2 70B SFT OASST
14
+ model_type: llama
15
+ quantized_by: TheBloke
16
+ tags:
17
+ - sft
18
+ ---
19
+
20
+ <!-- header start -->
21
+ <!-- 200823 -->
22
+ <div style="width: auto; margin-left: auto; margin-right: auto">
23
+ <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
24
+ </div>
25
+ <div style="display: flex; justify-content: space-between; width: 100%;">
26
+ <div style="display: flex; flex-direction: column; align-items: flex-start;">
27
+ <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://discord.gg/theblokeai">Chat & support: TheBloke's Discord server</a></p>
28
+ </div>
29
+ <div style="display: flex; flex-direction: column; align-items: flex-end;">
30
+ <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>
31
+ </div>
32
+ </div>
33
+ <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>
34
+ <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
35
+ <!-- header end -->
36
+
37
+ # Open-Assistant Llama2 70B SFT OASST - GGUF
38
+ - Model creator: [Jordan Clive](https://huggingface.co/jordiclive)
39
+ - Original model: [Open-Assistant Llama2 70B SFT OASST](https://huggingface.co/jordiclive/Llama-2-70b-oasst-1-200)
40
+
41
+ ## Description
42
+
43
+ This repo contains GGUF format model files for [Jordan Clive's Open-Assistant Llama2 70B SFT OASST](https://huggingface.co/jordiclive/Llama-2-70b-oasst-1-200).
44
+
45
+ <!-- README_GGUF.md-about-gguf start -->
46
+ ### About GGUF
47
+
48
+ 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.
49
+
50
+ 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.
51
+
52
+ Here are a list of clients and libraries that are known to support GGUF:
53
+ * [llama.cpp](https://github.com/ggerganov/llama.cpp).
54
+ * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions.
55
+ * [KoboldCpp](https://github.com/LostRuins/koboldcpp), a fully featured web UI, with full GPU accel across multiple platforms and GPU architectures. Especially good for story telling.
56
+ * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI with GPU acceleration on both Windows (NVidia and AMD), and macOS.
57
+ * [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), a great web UI with many interesting and unique features, including a full model library for easy model selection.
58
+ * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
59
+ * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
60
+ * [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
61
+
62
+ <!-- README_GGUF.md-about-gguf end -->
63
+ <!-- repositories-available start -->
64
+ ## Repositories available
65
+
66
+ * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GPTQ)
67
+ * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGUF)
68
+ * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference (deprecated)](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGML)
69
+ * [Jordan Clive's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/jordiclive/Llama-2-70b-oasst-1-200)
70
+ <!-- repositories-available end -->
71
+
72
+ <!-- prompt-template start -->
73
+ ## Prompt template: OpenAssistant
74
+
75
+ ```
76
+ <|prompter|>{prompt}<|endoftext|><|assistant|>
77
+
78
+ ```
79
+
80
+ <!-- prompt-template end -->
81
+ <!-- compatibility_gguf start -->
82
+ ## Compatibility
83
+
84
+ 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)
85
+
86
+ They are now also compatible with many third party UIs and libraries - please see the list at the top of the README.
87
+
88
+ ## Explanation of quantisation methods
89
+ <details>
90
+ <summary>Click to see details</summary>
91
+
92
+ The new methods available are:
93
+ * 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)
94
+ * 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.
95
+ * 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.
96
+ * GGML_TYPE_Q5_K - "type-1" 5-bit quantization. Same super-block structure as GGML_TYPE_Q4_K resulting in 5.5 bpw
97
+ * 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
98
+
99
+ Refer to the Provided Files table below to see what files use which methods, and how.
100
+ </details>
101
+ <!-- compatibility_gguf end -->
102
+
103
+ <!-- README_GGUF.md-provided-files start -->
104
+ ## Provided files
105
+
106
+ | Name | Quant method | Bits | Size | Max RAM required | Use case |
107
+ | ---- | ---- | ---- | ---- | ---- | ----- |
108
+ | [llama-2-70b-oasst-1-200.Q6_K.gguf-split-b](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGUF/blob/main/llama-2-70b-oasst-1-200.Q6_K.gguf-split-b) | Q6_K | 6 | 19.89 GB| 22.39 GB | very large, extremely low quality loss |
109
+ | [llama-2-70b-oasst-1-200.Q2_K.gguf](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGUF/blob/main/llama-2-70b-oasst-1-200.Q2_K.gguf) | Q2_K | 2 | 29.28 GB| 31.78 GB | smallest, significant quality loss - not recommended for most purposes |
110
+ | [llama-2-70b-oasst-1-200.Q3_K_S.gguf](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGUF/blob/main/llama-2-70b-oasst-1-200.Q3_K_S.gguf) | Q3_K_S | 3 | 29.92 GB| 32.42 GB | very small, high quality loss |
111
+ | [llama-2-70b-oasst-1-200.Q3_K_M.gguf](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGUF/blob/main/llama-2-70b-oasst-1-200.Q3_K_M.gguf) | Q3_K_M | 3 | 33.19 GB| 35.69 GB | very small, high quality loss |
112
+ | [llama-2-70b-oasst-1-200.Q3_K_L.gguf](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGUF/blob/main/llama-2-70b-oasst-1-200.Q3_K_L.gguf) | Q3_K_L | 3 | 36.15 GB| 38.65 GB | small, substantial quality loss |
113
+ | [llama-2-70b-oasst-1-200.Q8_0.gguf-split-b](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGUF/blob/main/llama-2-70b-oasst-1-200.Q8_0.gguf-split-b) | Q8_0 | 8 | 36.59 GB| 39.09 GB | very large, extremely low quality loss - not recommended |
114
+ | [llama-2-70b-oasst-1-200.Q6_K.gguf-split-a](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGUF/blob/main/llama-2-70b-oasst-1-200.Q6_K.gguf-split-a) | Q6_K | 6 | 36.70 GB| 39.20 GB | very large, extremely low quality loss |
115
+ | [llama-2-70b-oasst-1-200.Q8_0.gguf-split-a](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGUF/blob/main/llama-2-70b-oasst-1-200.Q8_0.gguf-split-a) | Q8_0 | 8 | 36.70 GB| 39.20 GB | very large, extremely low quality loss - not recommended |
116
+ | [llama-2-70b-oasst-1-200.Q4_0.gguf](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGUF/blob/main/llama-2-70b-oasst-1-200.Q4_0.gguf) | Q4_0 | 4 | 38.87 GB| 41.37 GB | legacy; small, very high quality loss - prefer using Q3_K_M |
117
+ | [llama-2-70b-oasst-1-200.Q4_K_S.gguf](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGUF/blob/main/llama-2-70b-oasst-1-200.Q4_K_S.gguf) | Q4_K_S | 4 | 39.07 GB| 41.57 GB | small, greater quality loss |
118
+ | [llama-2-70b-oasst-1-200.Q4_K_M.gguf](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGUF/blob/main/llama-2-70b-oasst-1-200.Q4_K_M.gguf) | Q4_K_M | 4 | 41.42 GB| 43.92 GB | medium, balanced quality - recommended |
119
+ | [llama-2-70b-oasst-1-200.Q5_0.gguf](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGUF/blob/main/llama-2-70b-oasst-1-200.Q5_0.gguf) | Q5_0 | 5 | 47.46 GB| 49.96 GB | legacy; medium, balanced quality - prefer using Q4_K_M |
120
+ | [llama-2-70b-oasst-1-200.Q5_K_S.gguf](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGUF/blob/main/llama-2-70b-oasst-1-200.Q5_K_S.gguf) | Q5_K_S | 5 | 47.46 GB| 49.96 GB | large, low quality loss - recommended |
121
+ | [llama-2-70b-oasst-1-200.Q5_K_M.gguf](https://huggingface.co/TheBloke/Llama-2-70B-OASST-1-200-GGUF/blob/main/llama-2-70b-oasst-1-200.Q5_K_M.gguf) | Q5_K_M | 5 | 48.75 GB| 51.25 GB | large, very low quality loss - recommended |
122
+ | llama-2-70b-oasst-1-200.Q6_K.gguf | Q6_K | 6 | 56.59 GB| 59.09 GB | very large, extremely low quality loss |
123
+ | llama-2-70b-oasst-1-200.Q8_0.gguf | Q8_0 | 8 | 73.29 GB| 75.79 GB | very large, extremely low quality loss - not recommended |
124
+
125
+ **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.
126
+
127
+ ### Q6_K and Q8_0 files are split and require joining
128
+
129
+ **Note:** HF does not support uploading files larger than 50GB. Therefore I have uploaded the Q6_K and Q8_0 files as split files.
130
+
131
+ <details>
132
+ <summary>Click for instructions regarding Q6_K and Q8_0 files</summary>
133
+
134
+ ### q6_K
135
+ Please download:
136
+ * `llama-2-70b-oasst-1-200.Q6_K.gguf-split-a`
137
+ * `llama-2-70b-oasst-1-200.Q6_K.gguf-split-b`
138
+
139
+ ### q8_0
140
+ Please download:
141
+ * `llama-2-70b-oasst-1-200.Q8_0.gguf-split-a`
142
+ * `llama-2-70b-oasst-1-200.Q8_0.gguf-split-b`
143
+
144
+ To join the files, do the following:
145
+
146
+ Linux and macOS:
147
+ ```
148
+ cat llama-2-70b-oasst-1-200.Q6_K.gguf-split-* > llama-2-70b-oasst-1-200.Q6_K.gguf && rm llama-2-70b-oasst-1-200.Q6_K.gguf-split-*
149
+ cat llama-2-70b-oasst-1-200.Q8_0.gguf-split-* > llama-2-70b-oasst-1-200.Q8_0.gguf && rm llama-2-70b-oasst-1-200.Q8_0.gguf-split-*
150
+ ```
151
+ Windows command line:
152
+ ```
153
+ COPY /B llama-2-70b-oasst-1-200.Q6_K.gguf-split-a + llama-2-70b-oasst-1-200.Q6_K.gguf-split-b llama-2-70b-oasst-1-200.Q6_K.gguf
154
+ del llama-2-70b-oasst-1-200.Q6_K.gguf-split-a llama-2-70b-oasst-1-200.Q6_K.gguf-split-b
155
+
156
+ COPY /B llama-2-70b-oasst-1-200.Q8_0.gguf-split-a + llama-2-70b-oasst-1-200.Q8_0.gguf-split-b llama-2-70b-oasst-1-200.Q8_0.gguf
157
+ del llama-2-70b-oasst-1-200.Q8_0.gguf-split-a llama-2-70b-oasst-1-200.Q8_0.gguf-split-b
158
+ ```
159
+
160
+ </details>
161
+ <!-- README_GGUF.md-provided-files end -->
162
+
163
+ <!-- README_GGUF.md-how-to-run start -->
164
+ ## Example `llama.cpp` command
165
+
166
+ Make sure you are using `llama.cpp` from commit [6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9](https://github.com/ggerganov/llama.cpp/commit/6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9) or later.
167
+
168
+ For compatibility with older versions of llama.cpp, or for any third-party libraries or clients that haven't yet updated for GGUF, please use GGML files instead.
169
+
170
+ ```
171
+ ./main -t 10 -ngl 32 -m llama-2-70b-oasst-1-200.q4_K_M.gguf --color -c 4096 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "<|prompter|>Write a story about llamas<|endoftext|><|assistant|>"
172
+ ```
173
+ 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`. If offloading all layers to GPU, set `-t 1`.
174
+
175
+ Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
176
+
177
+ 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.
178
+
179
+ If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
180
+
181
+ 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)
182
+
183
+ ## How to run in `text-generation-webui`
184
+
185
+ Further instructions here: [text-generation-webui/docs/llama.cpp.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/llama.cpp.md).
186
+
187
+ ## How to run from Python code
188
+
189
+ You can use GGUF models from Python using the [llama-cpp-python](https://github.com/abetlen/llama-cpp-python) or [ctransformers](https://github.com/marella/ctransformers) libraries.
190
+
191
+ ### How to load this model from Python using ctransformers
192
+
193
+ #### First install the package
194
+
195
+ ```bash
196
+ # Base ctransformers with no GPU acceleration
197
+ pip install ctransformers>=0.2.24
198
+ # Or with CUDA GPU acceleration
199
+ pip install ctransformers[cuda]>=0.2.24
200
+ # Or with ROCm GPU acceleration
201
+ CT_HIPBLAS=1 pip install ctransformers>=0.2.24 --no-binary ctransformers
202
+ # Or with Metal GPU acceleration for macOS systems
203
+ CT_METAL=1 pip install ctransformers>=0.2.24 --no-binary ctransformers
204
+ ```
205
+
206
+ #### Simple example code to load one of these GGUF models
207
+
208
+ ```python
209
+ from ctransformers import AutoModelForCausalLM
210
+
211
+ # Set gpu_layers to the number of layers to offload to GPU. Set to 0 if no GPU acceleration is available on your system.
212
+ llm = AutoModelForCausalLM.from_pretrained("TheBloke/Llama-2-70B-OASST-1-200-GGUF", model_file="llama-2-70b-oasst-1-200.q4_K_M.gguf", model_type="llama", gpu_layers=50)
213
+
214
+ print(llm("AI is going to"))
215
+ ```
216
+
217
+ ## How to use with LangChain
218
+
219
+ Here's guides on using llama-cpp-python or ctransformers with LangChain:
220
+
221
+ * [LangChain + llama-cpp-python](https://python.langchain.com/docs/integrations/llms/llamacpp)
222
+ * [LangChain + ctransformers](https://python.langchain.com/docs/integrations/providers/ctransformers)
223
+
224
+ <!-- README_GGUF.md-how-to-run end -->
225
+
226
+ <!-- footer start -->
227
+ <!-- 200823 -->
228
+ ## Discord
229
+
230
+ For further support, and discussions on these models and AI in general, join us at:
231
+
232
+ [TheBloke AI's Discord server](https://discord.gg/theblokeai)
233
+
234
+ ## Thanks, and how to contribute.
235
+
236
+ Thanks to the [chirper.ai](https://chirper.ai) team!
237
+
238
+ 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.
239
+
240
+ 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.
241
+
242
+ Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits.
243
+
244
+ * Patreon: https://patreon.com/TheBlokeAI
245
+ * Ko-Fi: https://ko-fi.com/TheBlokeAI
246
+
247
+ **Special thanks to**: Aemon Algiz.
248
+
249
+ **Patreon special mentions**: Russ Johnson, J, alfie_i, Alex, NimbleBox.ai, Chadd, Mandus, Nikolai Manek, Ken Nordquist, ya boyyy, Illia Dulskyi, Viktor Bowallius, vamX, Iucharbius, zynix, Magnesian, Clay Pascal, Pierre Kircher, Enrico Ros, Tony Hughes, Elle, Andrey, knownsqashed, Deep Realms, Jerry Meng, Lone Striker, Derek Yates, Pyrater, Mesiah Bishop, James Bentley, Femi Adebogun, Brandon Frisco, SuperWojo, Alps Aficionado, Michael Dempsey, Vitor Caleffi, Will Dee, Edmond Seymore, usrbinkat, LangChain4j, Kacper Wikieł, Luke Pendergrass, John Detwiler, theTransient, Nathan LeClaire, Tiffany J. Kim, biorpg, Eugene Pentland, Stanislav Ovsiannikov, Fred von Graf, terasurfer, Kalila, Dan Guido, Nitin Borwankar, 阿明, Ai Maven, John Villwock, Gabriel Puliatti, Stephen Murray, Asp the Wyvern, danny, Chris Smitley, ReadyPlayerEmma, S_X, Daniel P. Andersen, Olakabola, Jeffrey Morgan, Imad Khwaja, Caitlyn Gatomon, webtim, Alicia Loh, Trenton Dambrowitz, Swaroop Kallakuri, Erik Bjäreholt, Leonard Tan, Spiking Neurons AB, Luke @flexchar, Ajan Kanaga, Thomas Belote, Deo Leter, RoA, Willem Michiel, transmissions 11, subjectnull, Matthew Berman, Joseph William Delisle, David Ziegler, Michael Davis, Johann-Peter Hartmann, Talal Aujan, senxiiz, Artur Olbinski, Rainer Wilmers, Spencer Kim, Fen Risland, Cap'n Zoog, Rishabh Srivastava, Michael Levine, Geoffrey Montalvo, Sean Connelly, Alexandros Triantafyllidis, Pieter, Gabriel Tamborski, Sam, Subspace Studios, Junyu Yang, Pedro Madruga, Vadim, Cory Kujawski, K, Raven Klaugh, Randy H, Mano Prime, Sebastain Graf, Space Cruiser
250
+
251
+
252
+ Thank you to all my generous patrons and donaters!
253
+
254
+ And thank you again to a16z for their generous grant.
255
+
256
+ <!-- footer end -->
257
+
258
+ <!-- original-model-card start -->
259
+ # Original model card: Jordan Clive's Open-Assistant Llama2 70B SFT OASST
260
+
261
+
262
+ # Open-Assistant Llama2 70B SFT OASST
263
+
264
+ This model is a fine-tuning of [Llama2 70B](https://huggingface.co/meta-llama/Llama-2-70b-hf) LLM.
265
+ It was trained on a mixture of OASST top-1 threads.
266
+ ## Model Details
267
+
268
+ - **Finetuned from:** [Llama2 70B](https://huggingface.co/meta-llama/Llama-2-70b-hf)
269
+ - **Model type:** Causal decoder-only transformer language model
270
+ - **Language:** English, German, Spanish, French (and limited capabilities in Italian, Portuguese, Polish, Dutch, Romanian, Czech, Swedish);
271
+ - **License:** Apache 2.0
272
+ - **Contact:** [Open-Assistant Discord](https://ykilcher.com/open-assistant-discord)
273
+
274
+ ## Prompting
275
+
276
+ Two special tokens are used to mark the beginning of user and assistant turns:
277
+ `<|prompter|>` and `<|assistant|>`. Each turn ends with a `</s>` token.
278
+
279
+ Input prompt example:
280
+ ```
281
+ <|prompter|>What is a meme, and what's the history behind this word?</s><|assistant|>
282
+ ```
283
+ The input ends with the `<|assistant|>` token to signal that the model should
284
+ start generating the assistant reply.
285
+
286
+
287
+ <!-- original-model-card end -->