TheBloke commited on
Commit
9463190
1 Parent(s): cdbfe59

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -20
README.md CHANGED
@@ -4,7 +4,7 @@ datasets:
4
  inference: false
5
  language:
6
  - en
7
- license: other
8
  model_creator: Eric Hartford
9
  model_link: https://huggingface.co/ehartford/dolphin-llama2-7b
10
  model_name: Dolphin Llama2 7B
@@ -13,17 +13,20 @@ quantized_by: TheBloke
13
  ---
14
 
15
  <!-- header start -->
16
- <div style="width: 100%;">
17
- <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
 
18
  </div>
19
  <div style="display: flex; justify-content: space-between; width: 100%;">
20
  <div style="display: flex; flex-direction: column; align-items: flex-start;">
21
- <p><a href="https://discord.gg/theblokeai">Chat & support: my new Discord server</a></p>
22
  </div>
23
  <div style="display: flex; flex-direction: column; align-items: flex-end;">
24
- <p><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p>
25
  </div>
26
  </div>
 
 
27
  <!-- header end -->
28
 
29
  # Dolphin Llama2 7B - GGML
@@ -34,6 +37,13 @@ quantized_by: TheBloke
34
 
35
  This repo contains GGML format model files for [Eric Hartford's Dolphin Llama2 7B](https://huggingface.co/ehartford/dolphin-llama2-7b).
36
 
 
 
 
 
 
 
 
37
  GGML files are for CPU + GPU inference using [llama.cpp](https://github.com/ggerganov/llama.cpp) and libraries and UIs which support this format, such as:
38
  * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most popular web UI. Supports NVidia CUDA GPU acceleration.
39
  * [KoboldCpp](https://github.com/LostRuins/koboldcpp), a powerful GGML web UI with GPU acceleration on all platforms (CUDA and OpenCL). Especially good for story telling.
@@ -45,7 +55,8 @@ GGML files are for CPU + GPU inference using [llama.cpp](https://github.com/gger
45
  ## Repositories available
46
 
47
  * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GPTQ)
48
- * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML)
 
49
  * [Eric Hartford's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/ehartford/dolphin-llama2-7b)
50
 
51
  ## Prompt template: Orca-Vicuna
@@ -54,14 +65,19 @@ GGML files are for CPU + GPU inference using [llama.cpp](https://github.com/gger
54
  SYSTEM: {system_message}
55
  USER: {prompt}
56
  ASSISTANT:
 
57
  ```
58
 
59
  <!-- compatibility_ggml start -->
60
  ## Compatibility
61
 
62
- These quantised GGML files are compatible with llama.cpp as of June 6th, commit `2d43387`.
 
 
63
 
64
- They should also be compatible with all UIs, libraries and utilities which use GGML.
 
 
65
 
66
  ## Explanation of the new k-quant methods
67
  <details>
@@ -84,17 +100,17 @@ Refer to the Provided Files table below to see what files use which methods, and
84
  | Name | Quant method | Bits | Size | Max RAM required | Use case |
85
  | ---- | ---- | ---- | ---- | ---- | ----- |
86
  | [dolphin-llama2-7b.ggmlv3.q2_K.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q2_K.bin) | q2_K | 2 | 2.87 GB| 5.37 GB | New k-quant method. Uses GGML_TYPE_Q4_K for the attention.vw and feed_forward.w2 tensors, GGML_TYPE_Q2_K for the other tensors. |
87
- | [dolphin-llama2-7b.ggmlv3.q3_K_L.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q3_K_L.bin) | q3_K_L | 3 | 3.60 GB| 6.10 GB | New k-quant method. Uses GGML_TYPE_Q5_K for the attention.wv, attention.wo, and feed_forward.w2 tensors, else GGML_TYPE_Q3_K |
88
- | [dolphin-llama2-7b.ggmlv3.q3_K_M.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q3_K_M.bin) | q3_K_M | 3 | 3.28 GB| 5.78 GB | New k-quant method. Uses GGML_TYPE_Q4_K for the attention.wv, attention.wo, and feed_forward.w2 tensors, else GGML_TYPE_Q3_K |
89
  | [dolphin-llama2-7b.ggmlv3.q3_K_S.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q3_K_S.bin) | q3_K_S | 3 | 2.95 GB| 5.45 GB | New k-quant method. Uses GGML_TYPE_Q3_K for all tensors |
 
 
90
  | [dolphin-llama2-7b.ggmlv3.q4_0.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q4_0.bin) | q4_0 | 4 | 3.83 GB| 6.33 GB | Original quant method, 4-bit. |
91
- | [dolphin-llama2-7b.ggmlv3.q4_1.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q4_1.bin) | q4_1 | 4 | 4.24 GB| 6.74 GB | Original quant method, 4-bit. Higher accuracy than q4_0 but not as high as q5_0. However has quicker inference than q5 models. |
92
- | [dolphin-llama2-7b.ggmlv3.q4_K_M.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q4_K_M.bin) | q4_K_M | 4 | 4.08 GB| 6.58 GB | New k-quant method. Uses GGML_TYPE_Q6_K for half of the attention.wv and feed_forward.w2 tensors, else GGML_TYPE_Q4_K |
93
  | [dolphin-llama2-7b.ggmlv3.q4_K_S.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q4_K_S.bin) | q4_K_S | 4 | 3.83 GB| 6.33 GB | New k-quant method. Uses GGML_TYPE_Q4_K for all tensors |
 
 
94
  | [dolphin-llama2-7b.ggmlv3.q5_0.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q5_0.bin) | q5_0 | 5 | 4.65 GB| 7.15 GB | Original quant method, 5-bit. Higher accuracy, higher resource usage and slower inference. |
95
- | [dolphin-llama2-7b.ggmlv3.q5_1.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q5_1.bin) | q5_1 | 5 | 5.06 GB| 7.56 GB | Original quant method, 5-bit. Even higher accuracy, resource usage and slower inference. |
96
- | [dolphin-llama2-7b.ggmlv3.q5_K_M.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q5_K_M.bin) | q5_K_M | 5 | 4.78 GB| 7.28 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 |
97
  | [dolphin-llama2-7b.ggmlv3.q5_K_S.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q5_K_S.bin) | q5_K_S | 5 | 4.65 GB| 7.15 GB | New k-quant method. Uses GGML_TYPE_Q5_K for all tensors |
 
 
98
  | [dolphin-llama2-7b.ggmlv3.q6_K.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q6_K.bin) | q6_K | 6 | 5.53 GB| 8.03 GB | New k-quant method. Uses GGML_TYPE_Q8_K for all tensors - 6-bit quantization |
99
  | [dolphin-llama2-7b.ggmlv3.q8_0.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q8_0.bin) | q8_0 | 8 | 7.13 GB| 9.63 GB | Original quant method, 8-bit. Almost indistinguishable from float16. High resource use and slow. Not recommended for most users. |
100
 
@@ -102,10 +118,12 @@ Refer to the Provided Files table below to see what files use which methods, and
102
 
103
  ## How to run in `llama.cpp`
104
 
105
- I use the following command line; adjust for your tastes and needs:
 
 
106
 
107
  ```
108
- ./main -t 10 -ngl 32 -m dolphin-llama2-7b.ggmlv3.q4_K_M.bin --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### Instruction: Write a story about llamas\n### Response:"
109
  ```
110
  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`.
111
 
@@ -119,9 +137,10 @@ For other parameters and how to use them, please refer to [the llama.cpp documen
119
 
120
  ## How to run in `text-generation-webui`
121
 
122
- Further instructions here: [text-generation-webui/docs/llama.cpp-models.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/llama.cpp-models.md).
123
 
124
  <!-- footer start -->
 
125
  ## Discord
126
 
127
  For further support, and discussions on these models and AI in general, join us at:
@@ -141,13 +160,15 @@ Donaters will get priority support on any and all AI/LLM/model questions and req
141
  * Patreon: https://patreon.com/TheBlokeAI
142
  * Ko-Fi: https://ko-fi.com/TheBlokeAI
143
 
144
- **Special thanks to**: Luke from CarbonQuill, Aemon Algiz.
145
 
146
- **Patreon special mentions**: Willem Michiel, Ajan Kanaga, Cory Kujawski, Alps Aficionado, Nikolai Manek, Jonathan Leane, Stanislav Ovsiannikov, Michael Levine, Luke Pendergrass, Sid, K, Gabriel Tamborski, Clay Pascal, Kalila, William Sang, Will Dee, Pieter, Nathan LeClaire, ya boyyy, David Flickinger, vamX, Derek Yates, Fen Risland, Jeffrey Morgan, webtim, Daniel P. Andersen, Chadd, Edmond Seymore, Pyrater, Olusegun Samson, Lone Striker, biorpg, alfie_i, Mano Prime, Chris Smitley, Dave, zynix, Trenton Dambrowitz, Johann-Peter Hartmann, Magnesian, Spencer Kim, John Detwiler, Iucharbius, Gabriel Puliatti, LangChain4j, Luke @flexchar, Vadim, Rishabh Srivastava, Preetika Verma, Ai Maven, Femi Adebogun, WelcomeToTheClub, Leonard Tan, Imad Khwaja, Steven Wood, Stefan Sabev, Sebastain Graf, usrbinkat, Dan Guido, Sam, Eugene Pentland, Mandus, transmissions 11, Slarti, Karl Bernard, Spiking Neurons AB, Artur Olbinski, Joseph William Delisle, ReadyPlayerEmma, Olakabola, Asp the Wyvern, Space Cruiser, Matthew Berman, Randy H, subjectnull, danny, John Villwock, Illia Dulskyi, Rainer Wilmers, theTransient, Pierre Kircher, Alexandros Triantafyllidis, Viktor Bowallius, terasurfer, Deep Realms, SuperWojo, senxiiz, Oscar Rangel, Alex, Stephen Murray, Talal Aujan, Raven Klaugh, Sean Connelly, Raymond Fosdick, Fred von Graf, chris gileta, Junyu Yang, Elle
147
 
148
 
149
  Thank you to all my generous patrons and donaters!
150
 
 
 
151
  <!-- footer end -->
152
 
153
  # Original model card: Eric Hartford's Dolphin Llama2 7B
@@ -185,7 +206,7 @@ We used a prompt format similar to Vicuna, but we added the SYSTEM: field.
185
 
186
  Prompt format:
187
  ```
188
- SYSTEM: {system}
189
  USER: {prompt}
190
  ASSISTANT:
191
  ```
 
4
  inference: false
5
  language:
6
  - en
7
+ license: llama2
8
  model_creator: Eric Hartford
9
  model_link: https://huggingface.co/ehartford/dolphin-llama2-7b
10
  model_name: Dolphin Llama2 7B
 
13
  ---
14
 
15
  <!-- header start -->
16
+ <!-- 200823 -->
17
+ <div style="width: auto; margin-left: auto; margin-right: auto">
18
+ <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
19
  </div>
20
  <div style="display: flex; justify-content: space-between; width: 100%;">
21
  <div style="display: flex; flex-direction: column; align-items: flex-start;">
22
+ <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://discord.gg/theblokeai">Chat & support: TheBloke's Discord server</a></p>
23
  </div>
24
  <div style="display: flex; flex-direction: column; align-items: flex-end;">
25
+ <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>
26
  </div>
27
  </div>
28
+ <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>
29
+ <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
30
  <!-- header end -->
31
 
32
  # Dolphin Llama2 7B - GGML
 
37
 
38
  This repo contains GGML format model files for [Eric Hartford's Dolphin Llama2 7B](https://huggingface.co/ehartford/dolphin-llama2-7b).
39
 
40
+ ### Important note regarding GGML files.
41
+
42
+ The GGML format has now been superseded by GGUF. As of August 21st 2023, [llama.cpp](https://github.com/ggerganov/llama.cpp) no longer supports GGML models. Third party clients and libraries are expected to still support it for a time, but many may also drop support.
43
+
44
+ Please use the GGUF models instead.
45
+ ### About GGML
46
+
47
  GGML files are for CPU + GPU inference using [llama.cpp](https://github.com/ggerganov/llama.cpp) and libraries and UIs which support this format, such as:
48
  * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most popular web UI. Supports NVidia CUDA GPU acceleration.
49
  * [KoboldCpp](https://github.com/LostRuins/koboldcpp), a powerful GGML web UI with GPU acceleration on all platforms (CUDA and OpenCL). Especially good for story telling.
 
55
  ## Repositories available
56
 
57
  * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GPTQ)
58
+ * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGUF)
59
+ * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference (deprecated)](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML)
60
  * [Eric Hartford's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/ehartford/dolphin-llama2-7b)
61
 
62
  ## Prompt template: Orca-Vicuna
 
65
  SYSTEM: {system_message}
66
  USER: {prompt}
67
  ASSISTANT:
68
+
69
  ```
70
 
71
  <!-- compatibility_ggml start -->
72
  ## Compatibility
73
 
74
+ These quantised GGML files are compatible with llama.cpp between June 6th (commit `2d43387`) and August 21st 2023.
75
+
76
+ For support with latest llama.cpp, please use GGUF files instead.
77
 
78
+ The final llama.cpp commit with support for GGML was: [dadbed99e65252d79f81101a392d0d6497b86caa](https://github.com/ggerganov/llama.cpp/commit/dadbed99e65252d79f81101a392d0d6497b86caa)
79
+
80
+ As of August 23rd 2023 they are still compatible with all UIs, libraries and utilities which use GGML. This may change in the future.
81
 
82
  ## Explanation of the new k-quant methods
83
  <details>
 
100
  | Name | Quant method | Bits | Size | Max RAM required | Use case |
101
  | ---- | ---- | ---- | ---- | ---- | ----- |
102
  | [dolphin-llama2-7b.ggmlv3.q2_K.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q2_K.bin) | q2_K | 2 | 2.87 GB| 5.37 GB | New k-quant method. Uses GGML_TYPE_Q4_K for the attention.vw and feed_forward.w2 tensors, GGML_TYPE_Q2_K for the other tensors. |
 
 
103
  | [dolphin-llama2-7b.ggmlv3.q3_K_S.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q3_K_S.bin) | q3_K_S | 3 | 2.95 GB| 5.45 GB | New k-quant method. Uses GGML_TYPE_Q3_K for all tensors |
104
+ | [dolphin-llama2-7b.ggmlv3.q3_K_M.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q3_K_M.bin) | q3_K_M | 3 | 3.28 GB| 5.78 GB | New k-quant method. Uses GGML_TYPE_Q4_K for the attention.wv, attention.wo, and feed_forward.w2 tensors, else GGML_TYPE_Q3_K |
105
+ | [dolphin-llama2-7b.ggmlv3.q3_K_L.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q3_K_L.bin) | q3_K_L | 3 | 3.60 GB| 6.10 GB | New k-quant method. Uses GGML_TYPE_Q5_K for the attention.wv, attention.wo, and feed_forward.w2 tensors, else GGML_TYPE_Q3_K |
106
  | [dolphin-llama2-7b.ggmlv3.q4_0.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q4_0.bin) | q4_0 | 4 | 3.83 GB| 6.33 GB | Original quant method, 4-bit. |
 
 
107
  | [dolphin-llama2-7b.ggmlv3.q4_K_S.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q4_K_S.bin) | q4_K_S | 4 | 3.83 GB| 6.33 GB | New k-quant method. Uses GGML_TYPE_Q4_K for all tensors |
108
+ | [dolphin-llama2-7b.ggmlv3.q4_K_M.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q4_K_M.bin) | q4_K_M | 4 | 4.08 GB| 6.58 GB | New k-quant method. Uses GGML_TYPE_Q6_K for half of the attention.wv and feed_forward.w2 tensors, else GGML_TYPE_Q4_K |
109
+ | [dolphin-llama2-7b.ggmlv3.q4_1.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q4_1.bin) | q4_1 | 4 | 4.24 GB| 6.74 GB | Original quant method, 4-bit. Higher accuracy than q4_0 but not as high as q5_0. However has quicker inference than q5 models. |
110
  | [dolphin-llama2-7b.ggmlv3.q5_0.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q5_0.bin) | q5_0 | 5 | 4.65 GB| 7.15 GB | Original quant method, 5-bit. Higher accuracy, higher resource usage and slower inference. |
 
 
111
  | [dolphin-llama2-7b.ggmlv3.q5_K_S.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q5_K_S.bin) | q5_K_S | 5 | 4.65 GB| 7.15 GB | New k-quant method. Uses GGML_TYPE_Q5_K for all tensors |
112
+ | [dolphin-llama2-7b.ggmlv3.q5_K_M.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q5_K_M.bin) | q5_K_M | 5 | 4.78 GB| 7.28 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 |
113
+ | [dolphin-llama2-7b.ggmlv3.q5_1.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q5_1.bin) | q5_1 | 5 | 5.06 GB| 7.56 GB | Original quant method, 5-bit. Even higher accuracy, resource usage and slower inference. |
114
  | [dolphin-llama2-7b.ggmlv3.q6_K.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q6_K.bin) | q6_K | 6 | 5.53 GB| 8.03 GB | New k-quant method. Uses GGML_TYPE_Q8_K for all tensors - 6-bit quantization |
115
  | [dolphin-llama2-7b.ggmlv3.q8_0.bin](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GGML/blob/main/dolphin-llama2-7b.ggmlv3.q8_0.bin) | q8_0 | 8 | 7.13 GB| 9.63 GB | Original quant method, 8-bit. Almost indistinguishable from float16. High resource use and slow. Not recommended for most users. |
116
 
 
118
 
119
  ## How to run in `llama.cpp`
120
 
121
+ Make sure you are using `llama.cpp` from commit [dadbed99e65252d79f81101a392d0d6497b86caa](https://github.com/ggerganov/llama.cpp/commit/dadbed99e65252d79f81101a392d0d6497b86caa) or earlier.
122
+
123
+ For compatibility with latest llama.cpp, please use GGUF files instead.
124
 
125
  ```
126
+ ./main -t 10 -ngl 32 -m dolphin-llama2-7b.ggmlv3.q4_K_M.bin --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "SYSTEM: You are a story writing assistant.\nUSER: Write a story about llamas\nASSISTANT:"
127
  ```
128
  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`.
129
 
 
137
 
138
  ## How to run in `text-generation-webui`
139
 
140
+ Further instructions here: [text-generation-webui/docs/llama.cpp.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/llama.cpp.md).
141
 
142
  <!-- footer start -->
143
+ <!-- 200823 -->
144
  ## Discord
145
 
146
  For further support, and discussions on these models and AI in general, join us at:
 
160
  * Patreon: https://patreon.com/TheBlokeAI
161
  * Ko-Fi: https://ko-fi.com/TheBlokeAI
162
 
163
+ **Special thanks to**: Aemon Algiz.
164
 
165
+ **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
166
 
167
 
168
  Thank you to all my generous patrons and donaters!
169
 
170
+ And thank you again to a16z for their generous grant.
171
+
172
  <!-- footer end -->
173
 
174
  # Original model card: Eric Hartford's Dolphin Llama2 7B
 
206
 
207
  Prompt format:
208
  ```
209
+ SYSTEM: You are an autoregressive language model that has been fine-tuned with instruction-tuning and RLHF. You carefully provide accurate, factual, thoughtful, nuanced answers, and are brilliant at reasoning. If you think there might not be a correct answer, you say so. Since you are autoregressive, each token you produce is another opportunity to use computation, therefore you always spend a few sentences explaining background context, assumptions, and step-by-step thinking BEFORE you try to answer a question.
210
  USER: {prompt}
211
  ASSISTANT:
212
  ```