Initial GGML model commit
Browse files
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
inference: false
|
3 |
-
license:
|
4 |
model_creator: WizardLM
|
5 |
model_link: https://huggingface.co/WizardLM/WizardMath-13B-V1.0
|
6 |
model_name: WizardMath 13B V1.0
|
@@ -9,17 +9,20 @@ quantized_by: TheBloke
|
|
9 |
---
|
10 |
|
11 |
<!-- header start -->
|
12 |
-
|
13 |
-
|
|
|
14 |
</div>
|
15 |
<div style="display: flex; justify-content: space-between; width: 100%;">
|
16 |
<div style="display: flex; flex-direction: column; align-items: flex-start;">
|
17 |
-
<p><a href="https://discord.gg/theblokeai">Chat & support:
|
18 |
</div>
|
19 |
<div style="display: flex; flex-direction: column; align-items: flex-end;">
|
20 |
-
<p><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p>
|
21 |
</div>
|
22 |
</div>
|
|
|
|
|
23 |
<!-- header end -->
|
24 |
|
25 |
# WizardMath 13B V1.0 - GGML
|
@@ -28,7 +31,14 @@ quantized_by: TheBloke
|
|
28 |
|
29 |
## Description
|
30 |
|
31 |
-
This repo contains GGML format model files for [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
33 |
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:
|
34 |
* [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most popular web UI. Supports NVidia CUDA GPU acceleration.
|
@@ -41,7 +51,8 @@ GGML files are for CPU + GPU inference using [llama.cpp](https://github.com/gger
|
|
41 |
## Repositories available
|
42 |
|
43 |
* [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GPTQ)
|
44 |
-
* [2, 3, 4, 5, 6 and 8-bit
|
|
|
45 |
* [WizardLM's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/WizardLM/WizardMath-13B-V1.0)
|
46 |
|
47 |
## Prompt template: Alpaca-CoT
|
@@ -55,14 +66,19 @@ Below is an instruction that describes a task. Write a response that appropriate
|
|
55 |
|
56 |
|
57 |
### Response: Let's think step by step.
|
|
|
58 |
```
|
59 |
|
60 |
<!-- compatibility_ggml start -->
|
61 |
## Compatibility
|
62 |
|
63 |
-
These quantised GGML files are compatible with llama.cpp
|
64 |
|
65 |
-
|
|
|
|
|
|
|
|
|
66 |
|
67 |
## Explanation of the new k-quant methods
|
68 |
<details>
|
@@ -85,17 +101,17 @@ Refer to the Provided Files table below to see what files use which methods, and
|
|
85 |
| Name | Quant method | Bits | Size | Max RAM required | Use case |
|
86 |
| ---- | ---- | ---- | ---- | ---- | ----- |
|
87 |
| [wizardmath-13b-v1.0.ggmlv3.q2_K.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q2_K.bin) | q2_K | 2 | 5.74 GB| 8.24 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. |
|
88 |
-
| [wizardmath-13b-v1.0.ggmlv3.q3_K_L.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q3_K_L.bin) | q3_K_L | 3 | 7.14 GB| 9.64 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 |
|
89 |
-
| [wizardmath-13b-v1.0.ggmlv3.q3_K_M.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q3_K_M.bin) | q3_K_M | 3 | 6.53 GB| 9.03 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 |
|
90 |
| [wizardmath-13b-v1.0.ggmlv3.q3_K_S.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q3_K_S.bin) | q3_K_S | 3 | 5.87 GB| 8.37 GB | New k-quant method. Uses GGML_TYPE_Q3_K for all tensors |
|
|
|
|
|
91 |
| [wizardmath-13b-v1.0.ggmlv3.q4_0.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q4_0.bin) | q4_0 | 4 | 7.32 GB| 9.82 GB | Original quant method, 4-bit. |
|
92 |
-
| [wizardmath-13b-v1.0.ggmlv3.q4_1.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q4_1.bin) | q4_1 | 4 | 8.14 GB| 10.64 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. |
|
93 |
-
| [wizardmath-13b-v1.0.ggmlv3.q4_K_M.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q4_K_M.bin) | q4_K_M | 4 | 8.06 GB| 10.56 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 |
|
94 |
| [wizardmath-13b-v1.0.ggmlv3.q4_K_S.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q4_K_S.bin) | q4_K_S | 4 | 7.56 GB| 10.06 GB | New k-quant method. Uses GGML_TYPE_Q4_K for all tensors |
|
|
|
|
|
95 |
| [wizardmath-13b-v1.0.ggmlv3.q5_0.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q5_0.bin) | q5_0 | 5 | 8.95 GB| 11.45 GB | Original quant method, 5-bit. Higher accuracy, higher resource usage and slower inference. |
|
96 |
-
| [wizardmath-13b-v1.0.ggmlv3.q5_1.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q5_1.bin) | q5_1 | 5 | 9.76 GB| 12.26 GB | Original quant method, 5-bit. Even higher accuracy, resource usage and slower inference. |
|
97 |
-
| [wizardmath-13b-v1.0.ggmlv3.q5_K_M.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q5_K_M.bin) | q5_K_M | 5 | 9.40 GB| 11.90 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 |
|
98 |
| [wizardmath-13b-v1.0.ggmlv3.q5_K_S.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q5_K_S.bin) | q5_K_S | 5 | 9.14 GB| 11.64 GB | New k-quant method. Uses GGML_TYPE_Q5_K for all tensors |
|
|
|
|
|
99 |
| [wizardmath-13b-v1.0.ggmlv3.q6_K.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q6_K.bin) | q6_K | 6 | 10.83 GB| 13.33 GB | New k-quant method. Uses GGML_TYPE_Q8_K for all tensors - 6-bit quantization |
|
100 |
| [wizardmath-13b-v1.0.ggmlv3.q8_0.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q8_0.bin) | q8_0 | 8 | 13.83 GB| 16.33 GB | Original quant method, 8-bit. Almost indistinguishable from float16. High resource use and slow. Not recommended for most users. |
|
101 |
|
@@ -103,7 +119,9 @@ Refer to the Provided Files table below to see what files use which methods, and
|
|
103 |
|
104 |
## How to run in `llama.cpp`
|
105 |
|
106 |
-
|
|
|
|
|
107 |
|
108 |
```
|
109 |
./main -t 10 -ngl 32 -m wizardmath-13b-v1.0.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:"
|
@@ -120,9 +138,10 @@ For other parameters and how to use them, please refer to [the llama.cpp documen
|
|
120 |
|
121 |
## How to run in `text-generation-webui`
|
122 |
|
123 |
-
Further instructions here: [text-generation-webui/docs/llama.cpp
|
124 |
|
125 |
<!-- footer start -->
|
|
|
126 |
## Discord
|
127 |
|
128 |
For further support, and discussions on these models and AI in general, join us at:
|
@@ -142,62 +161,86 @@ Donaters will get priority support on any and all AI/LLM/model questions and req
|
|
142 |
* Patreon: https://patreon.com/TheBlokeAI
|
143 |
* Ko-Fi: https://ko-fi.com/TheBlokeAI
|
144 |
|
145 |
-
**Special thanks to**:
|
146 |
|
147 |
-
**Patreon special mentions**:
|
148 |
|
149 |
|
150 |
Thank you to all my generous patrons and donaters!
|
151 |
|
|
|
|
|
152 |
<!-- footer end -->
|
153 |
|
154 |
-
# Original model card:
|
155 |
|
156 |
|
157 |
|
158 |
-
## WizardMath: Empowering Mathematical Reasoning for Large Language Models via Reinforced Evol-Instruct
|
159 |
|
160 |
|
161 |
|
162 |
<p align="center">
|
163 |
-
π€ <a href="https://huggingface.co/WizardLM" target="_blank">HF Repo</a> β’ π¦ <a href="https://twitter.com/WizardLM_AI" target="_blank">Twitter</a> β’ π <a href="https://arxiv.org/abs/2304.12244" target="_blank">[WizardLM]</a> β’ π <a href="https://arxiv.org/abs/2306.08568" target="_blank">[WizardCoder]</a>
|
164 |
</p>
|
165 |
<p align="center">
|
166 |
-
π Join our <a href="https://discord.gg/
|
167 |
</p>
|
168 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
|
|
|
|
|
|
|
|
|
|
|
170 |
|
171 |
-
|
172 |
|
173 |
-
|
174 |
-
|
175 |
-
|
|
176 |
-
|
|
177 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
|
179 |
**Github Repo**: https://github.com/nlpxucan/WizardLM/tree/main/WizardMath
|
180 |
|
181 |
-
**Twitter**: https://twitter.com/WizardLM_AI/status/
|
182 |
|
183 |
-
**Discord**: https://discord.gg/
|
184 |
|
185 |
|
186 |
|
187 |
β<b>Note for model system prompts usage:</b>
|
188 |
|
189 |
-
|
|
|
|
|
|
|
190 |
|
191 |
```
|
192 |
-
Below is an instruction that describes a task. Write a response that appropriately completes the request
|
|
|
193 |
|
194 |
|
195 |
-
|
196 |
-
{instruction}
|
197 |
|
198 |
|
199 |
-
### Response: Let's think step by step.
|
200 |
```
|
|
|
|
|
|
|
201 |
|
202 |
β<b>To commen concern about dataset:</b>
|
203 |
|
|
|
1 |
---
|
2 |
inference: false
|
3 |
+
license: llama2
|
4 |
model_creator: WizardLM
|
5 |
model_link: https://huggingface.co/WizardLM/WizardMath-13B-V1.0
|
6 |
model_name: WizardMath 13B V1.0
|
|
|
9 |
---
|
10 |
|
11 |
<!-- header start -->
|
12 |
+
<!-- 200823 -->
|
13 |
+
<div style="width: auto; margin-left: auto; margin-right: auto">
|
14 |
+
<img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
|
15 |
</div>
|
16 |
<div style="display: flex; justify-content: space-between; width: 100%;">
|
17 |
<div style="display: flex; flex-direction: column; align-items: flex-start;">
|
18 |
+
<p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://discord.gg/theblokeai">Chat & support: TheBloke's Discord server</a></p>
|
19 |
</div>
|
20 |
<div style="display: flex; flex-direction: column; align-items: flex-end;">
|
21 |
+
<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>
|
22 |
</div>
|
23 |
</div>
|
24 |
+
<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>
|
25 |
+
<hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
|
26 |
<!-- header end -->
|
27 |
|
28 |
# WizardMath 13B V1.0 - GGML
|
|
|
31 |
|
32 |
## Description
|
33 |
|
34 |
+
This repo contains GGML format model files for [none](https://huggingface.co/WizardLM/WizardMath-13B-V1.0).
|
35 |
+
|
36 |
+
### Important note regarding GGML files.
|
37 |
+
|
38 |
+
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.
|
39 |
+
|
40 |
+
Please use the GGUF models instead.
|
41 |
+
### About GGML
|
42 |
|
43 |
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:
|
44 |
* [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most popular web UI. Supports NVidia CUDA GPU acceleration.
|
|
|
51 |
## Repositories available
|
52 |
|
53 |
* [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GPTQ)
|
54 |
+
* [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGUF)
|
55 |
+
* [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference (deprecated)](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML)
|
56 |
* [WizardLM's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/WizardLM/WizardMath-13B-V1.0)
|
57 |
|
58 |
## Prompt template: Alpaca-CoT
|
|
|
66 |
|
67 |
|
68 |
### Response: Let's think step by step.
|
69 |
+
|
70 |
```
|
71 |
|
72 |
<!-- compatibility_ggml start -->
|
73 |
## Compatibility
|
74 |
|
75 |
+
These quantised GGML files are compatible with llama.cpp between June 6th (commit `2d43387`) and August 21st 2023.
|
76 |
|
77 |
+
For support with latest llama.cpp, please use GGUF files instead.
|
78 |
+
|
79 |
+
The final llama.cpp commit with support for GGML was: [dadbed99e65252d79f81101a392d0d6497b86caa](https://github.com/ggerganov/llama.cpp/commit/dadbed99e65252d79f81101a392d0d6497b86caa)
|
80 |
+
|
81 |
+
As of August 23rd 2023 they are still compatible with all UIs, libraries and utilities which use GGML. This may change in the future.
|
82 |
|
83 |
## Explanation of the new k-quant methods
|
84 |
<details>
|
|
|
101 |
| Name | Quant method | Bits | Size | Max RAM required | Use case |
|
102 |
| ---- | ---- | ---- | ---- | ---- | ----- |
|
103 |
| [wizardmath-13b-v1.0.ggmlv3.q2_K.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q2_K.bin) | q2_K | 2 | 5.74 GB| 8.24 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. |
|
|
|
|
|
104 |
| [wizardmath-13b-v1.0.ggmlv3.q3_K_S.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q3_K_S.bin) | q3_K_S | 3 | 5.87 GB| 8.37 GB | New k-quant method. Uses GGML_TYPE_Q3_K for all tensors |
|
105 |
+
| [wizardmath-13b-v1.0.ggmlv3.q3_K_M.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q3_K_M.bin) | q3_K_M | 3 | 6.53 GB| 9.03 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 |
|
106 |
+
| [wizardmath-13b-v1.0.ggmlv3.q3_K_L.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q3_K_L.bin) | q3_K_L | 3 | 7.14 GB| 9.64 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 |
|
107 |
| [wizardmath-13b-v1.0.ggmlv3.q4_0.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q4_0.bin) | q4_0 | 4 | 7.32 GB| 9.82 GB | Original quant method, 4-bit. |
|
|
|
|
|
108 |
| [wizardmath-13b-v1.0.ggmlv3.q4_K_S.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q4_K_S.bin) | q4_K_S | 4 | 7.56 GB| 10.06 GB | New k-quant method. Uses GGML_TYPE_Q4_K for all tensors |
|
109 |
+
| [wizardmath-13b-v1.0.ggmlv3.q4_K_M.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q4_K_M.bin) | q4_K_M | 4 | 8.06 GB| 10.56 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 |
|
110 |
+
| [wizardmath-13b-v1.0.ggmlv3.q4_1.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q4_1.bin) | q4_1 | 4 | 8.14 GB| 10.64 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. |
|
111 |
| [wizardmath-13b-v1.0.ggmlv3.q5_0.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q5_0.bin) | q5_0 | 5 | 8.95 GB| 11.45 GB | Original quant method, 5-bit. Higher accuracy, higher resource usage and slower inference. |
|
|
|
|
|
112 |
| [wizardmath-13b-v1.0.ggmlv3.q5_K_S.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q5_K_S.bin) | q5_K_S | 5 | 9.14 GB| 11.64 GB | New k-quant method. Uses GGML_TYPE_Q5_K for all tensors |
|
113 |
+
| [wizardmath-13b-v1.0.ggmlv3.q5_K_M.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q5_K_M.bin) | q5_K_M | 5 | 9.40 GB| 11.90 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 |
|
114 |
+
| [wizardmath-13b-v1.0.ggmlv3.q5_1.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q5_1.bin) | q5_1 | 5 | 9.76 GB| 12.26 GB | Original quant method, 5-bit. Even higher accuracy, resource usage and slower inference. |
|
115 |
| [wizardmath-13b-v1.0.ggmlv3.q6_K.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q6_K.bin) | q6_K | 6 | 10.83 GB| 13.33 GB | New k-quant method. Uses GGML_TYPE_Q8_K for all tensors - 6-bit quantization |
|
116 |
| [wizardmath-13b-v1.0.ggmlv3.q8_0.bin](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML/blob/main/wizardmath-13b-v1.0.ggmlv3.q8_0.bin) | q8_0 | 8 | 13.83 GB| 16.33 GB | Original quant method, 8-bit. Almost indistinguishable from float16. High resource use and slow. Not recommended for most users. |
|
117 |
|
|
|
119 |
|
120 |
## How to run in `llama.cpp`
|
121 |
|
122 |
+
Make sure you are using `llama.cpp` from commit [dadbed99e65252d79f81101a392d0d6497b86caa](https://github.com/ggerganov/llama.cpp/commit/dadbed99e65252d79f81101a392d0d6497b86caa) or earlier.
|
123 |
+
|
124 |
+
For compatibility with latest llama.cpp, please use GGUF files instead.
|
125 |
|
126 |
```
|
127 |
./main -t 10 -ngl 32 -m wizardmath-13b-v1.0.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:"
|
|
|
138 |
|
139 |
## How to run in `text-generation-webui`
|
140 |
|
141 |
+
Further instructions here: [text-generation-webui/docs/llama.cpp.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/llama.cpp.md).
|
142 |
|
143 |
<!-- footer start -->
|
144 |
+
<!-- 200823 -->
|
145 |
## Discord
|
146 |
|
147 |
For further support, and discussions on these models and AI in general, join us at:
|
|
|
161 |
* Patreon: https://patreon.com/TheBlokeAI
|
162 |
* Ko-Fi: https://ko-fi.com/TheBlokeAI
|
163 |
|
164 |
+
**Special thanks to**: Aemon Algiz.
|
165 |
|
166 |
+
**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
|
167 |
|
168 |
|
169 |
Thank you to all my generous patrons and donaters!
|
170 |
|
171 |
+
And thank you again to a16z for their generous grant.
|
172 |
+
|
173 |
<!-- footer end -->
|
174 |
|
175 |
+
# Original model card: none
|
176 |
|
177 |
|
178 |
|
179 |
+
## WizardMath: Empowering Mathematical Reasoning for Large Language Models via Reinforced Evol-Instruct (RLEIF)
|
180 |
|
181 |
|
182 |
|
183 |
<p align="center">
|
184 |
+
π€ <a href="https://huggingface.co/WizardLM" target="_blank">HF Repo</a> β’π± <a href="https://github.com/nlpxucan/WizardLM" target="_blank">Github Repo</a> β’ π¦ <a href="https://twitter.com/WizardLM_AI" target="_blank">Twitter</a> β’ π <a href="https://arxiv.org/abs/2304.12244" target="_blank">[WizardLM]</a> β’ π <a href="https://arxiv.org/abs/2306.08568" target="_blank">[WizardCoder]</a> β’ π <a href="https://arxiv.org/abs/2308.09583" target="_blank">[WizardMath]</a> <br>
|
185 |
</p>
|
186 |
<p align="center">
|
187 |
+
π Join our <a href="https://discord.gg/VZjjHtWrKs" target="_blank">Discord</a>
|
188 |
</p>
|
189 |
|
190 |
+
| Model | Checkpoint | Paper | HumanEval | MBPP | Demo | License |
|
191 |
+
| ----- |------| ---- |------|-------| ----- | ----- |
|
192 |
+
| WizardCoder-Python-34B-V1.0 | π€ <a href="https://huggingface.co/WizardLM/WizardCoder-Python-34B-V1.0" target="_blank">HF Link</a> | π <a href="https://arxiv.org/abs/2306.08568" target="_blank">[WizardCoder]</a> | 73.2 | 61.2 | [Demo](http://47.103.63.15:50085/) | <a href="https://ai.meta.com/resources/models-and-libraries/llama-downloads/" target="_blank">Llama2</a> |
|
193 |
+
| WizardCoder-15B-V1.0 | π€ <a href="https://huggingface.co/WizardLM/WizardCoder-15B-V1.0" target="_blank">HF Link</a> | π <a href="https://arxiv.org/abs/2306.08568" target="_blank">[WizardCoder]</a> | 59.8 |50.6 | -- | <a href="https://huggingface.co/spaces/bigcode/bigcode-model-license-agreement" target="_blank">OpenRAIL-M</a> |
|
194 |
+
| WizardCoder-Python-13B-V1.0 | π€ <a href="https://huggingface.co/WizardLM/WizardCoder-Python-13B-V1.0" target="_blank">HF Link</a> | π <a href="https://arxiv.org/abs/2306.08568" target="_blank">[WizardCoder]</a> | 64.0 | 55.6 | -- | <a href="https://ai.meta.com/resources/models-and-libraries/llama-downloads/" target="_blank">Llama2</a> |
|
195 |
+
| WizardCoder-3B-V1.0 | π€ <a href="https://huggingface.co/WizardLM/WizardCoder-3B-V1.0" target="_blank">HF Link</a> | π <a href="https://arxiv.org/abs/2306.08568" target="_blank">[WizardCoder]</a> | 34.8 |37.4 | [Demo](http://47.103.63.15:50086/) | <a href="https://huggingface.co/spaces/bigcode/bigcode-model-license-agreement" target="_blank">OpenRAIL-M</a> |
|
196 |
+
| WizardCoder-1B-V1.0 | π€ <a href="https://huggingface.co/WizardLM/WizardCoder-1B-V1.0" target="_blank">HF Link</a> | π <a href="https://arxiv.org/abs/2306.08568" target="_blank">[WizardCoder]</a> | 23.8 |28.6 | -- | <a href="https://huggingface.co/spaces/bigcode/bigcode-model-license-agreement" target="_blank">OpenRAIL-M</a> |
|
197 |
|
198 |
+
| Model | Checkpoint | Paper | GSM8k | MATH |Online Demo| License|
|
199 |
+
| ----- |------| ---- |------|-------| ----- | ----- |
|
200 |
+
| WizardMath-70B-V1.0 | π€ <a href="https://huggingface.co/WizardLM/WizardMath-70B-V1.0" target="_blank">HF Link</a> | π <a href="https://arxiv.org/abs/2308.09583" target="_blank">[WizardMath]</a>| **81.6** | **22.7** |[Demo](http://47.103.63.15:50083/)| <a href="https://ai.meta.com/resources/models-and-libraries/llama-downloads/" target="_blank">Llama 2 </a> |
|
201 |
+
| WizardMath-13B-V1.0 | π€ <a href="https://huggingface.co/WizardLM/WizardMath-13B-V1.0" target="_blank">HF Link</a> | π <a href="https://arxiv.org/abs/2308.09583" target="_blank">[WizardMath]</a>| **63.9** | **14.0** |[Demo](http://47.103.63.15:50082/)| <a href="https://ai.meta.com/resources/models-and-libraries/llama-downloads/" target="_blank">Llama 2 </a> |
|
202 |
+
| WizardMath-7B-V1.0 | π€ <a href="https://huggingface.co/WizardLM/WizardMath-7B-V1.0" target="_blank">HF Link</a> | π <a href="https://arxiv.org/abs/2308.09583" target="_blank">[WizardMath]</a>| **54.9** | **10.7** | [Demo](http://47.103.63.15:50080/)| <a href="https://ai.meta.com/resources/models-and-libraries/llama-downloads/" target="_blank">Llama 2 </a>|
|
203 |
|
|
|
204 |
|
205 |
+
<font size=4>
|
206 |
+
|
207 |
+
| <sup>Model</sup> | <sup>Checkpoint</sup> | <sup>Paper</sup> |<sup>MT-Bench</sup> | <sup>AlpacaEval</sup> | <sup>GSM8k</sup> | <sup>HumanEval</sup> | <sup>License</sup>|
|
208 |
+
| ----- |------| ---- |------|-------| ----- | ----- | ----- |
|
209 |
+
| <sup>**WizardLM-70B-V1.0**</sup> | <sup>π€ <a href="https://huggingface.co/WizardLM/WizardLM-70B-V1.0" target="_blank">HF Link</a> </sup>|<sup>π**Coming Soon**</sup>| <sup>**7.78**</sup> | <sup>**92.91%**</sup> |<sup>**77.6%**</sup> | <sup> **50.6 pass@1**</sup>|<sup> <a href="https://ai.meta.com/resources/models-and-libraries/llama-downloads/" target="_blank">Llama 2 License </a></sup> |
|
210 |
+
| <sup>WizardLM-13B-V1.2</sup> | <sup>π€ <a href="https://huggingface.co/WizardLM/WizardLM-13B-V1.2" target="_blank">HF Link</a> </sup>| | <sup>7.06</sup> | <sup>89.17%</sup> |<sup>55.3%</sup> | <sup>36.6 pass@1</sup>|<sup> <a href="https://ai.meta.com/resources/models-and-libraries/llama-downloads/" target="_blank">Llama 2 License </a></sup> |
|
211 |
+
| <sup>WizardLM-13B-V1.1</sup> |<sup> π€ <a href="https://huggingface.co/WizardLM/WizardLM-13B-V1.1" target="_blank">HF Link</a> </sup> | | <sup>6.76</sup> |<sup>86.32%</sup> | | <sup>25.0 pass@1</sup>| <sup>Non-commercial</sup>|
|
212 |
+
| <sup>WizardLM-30B-V1.0</sup> | <sup>π€ <a href="https://huggingface.co/WizardLM/WizardLM-30B-V1.0" target="_blank">HF Link</a></sup> | | <sup>7.01</sup> | | | <sup>37.8 pass@1</sup>| <sup>Non-commercial</sup> |
|
213 |
+
| <sup>WizardLM-13B-V1.0</sup> | <sup>π€ <a href="https://huggingface.co/WizardLM/WizardLM-13B-V1.0" target="_blank">HF Link</a> </sup> | | <sup>6.35</sup> | <sup>75.31%</sup> | | <sup> 24.0 pass@1 </sup> | <sup>Non-commercial</sup>|
|
214 |
+
| <sup>WizardLM-7B-V1.0 </sup>| <sup>π€ <a href="https://huggingface.co/WizardLM/WizardLM-7B-V1.0" target="_blank">HF Link</a> </sup> |<sup> π <a href="https://arxiv.org/abs/2304.12244" target="_blank">[WizardLM]</a> </sup>| | | |<sup>19.1 pass@1 </sup>|<sup> Non-commercial</sup>|
|
215 |
+
</font>
|
216 |
|
217 |
**Github Repo**: https://github.com/nlpxucan/WizardLM/tree/main/WizardMath
|
218 |
|
219 |
+
**Twitter**: https://twitter.com/WizardLM_AI/status/1689998428200112128
|
220 |
|
221 |
+
**Discord**: https://discord.gg/VZjjHtWrKs
|
222 |
|
223 |
|
224 |
|
225 |
β<b>Note for model system prompts usage:</b>
|
226 |
|
227 |
+
Please use **the same systems prompts strictly** with us, and we do not guarantee the accuracy of the **quantified versions**.
|
228 |
+
|
229 |
+
|
230 |
+
**Default version:**
|
231 |
|
232 |
```
|
233 |
+
"Below is an instruction that describes a task. Write a response that appropriately completes the request.\n\n### Instruction:\n{instruction}\n\n### Response:"
|
234 |
+
```
|
235 |
|
236 |
|
237 |
+
**CoT Version:** οΌβFor the **simple** math questions, we do NOT recommend to use the CoT prompt.οΌ
|
|
|
238 |
|
239 |
|
|
|
240 |
```
|
241 |
+
"Below is an instruction that describes a task. Write a response that appropriately completes the request.\n\n### Instruction:\n{instruction}\n\n### Response: Let's think step by step."
|
242 |
+
```
|
243 |
+
|
244 |
|
245 |
β<b>To commen concern about dataset:</b>
|
246 |
|