Upload README.md
Browse files
README.md
CHANGED
@@ -29,19 +29,24 @@ quantized_by: TheBloke
|
|
29 |
- Model creator: [WizardLM](https://huggingface.co/WizardLM)
|
30 |
- Original model: [WizardMath 13B V1.0](https://huggingface.co/WizardLM/WizardMath-13B-V1.0)
|
31 |
|
|
|
32 |
## Description
|
33 |
|
34 |
-
This repo contains GPTQ model files for [
|
35 |
|
36 |
Multiple GPTQ parameter permutations are provided; see Provided Files below for details of the options provided, their parameters, and the software used to create them.
|
37 |
|
|
|
|
|
38 |
## Repositories available
|
39 |
|
40 |
* [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GPTQ)
|
41 |
* [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGUF)
|
42 |
* [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference (deprecated)](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML)
|
43 |
* [WizardLM's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/WizardLM/WizardMath-13B-V1.0)
|
|
|
44 |
|
|
|
45 |
## Prompt template: Alpaca-CoT
|
46 |
|
47 |
```
|
@@ -56,13 +61,16 @@ Below is an instruction that describes a task. Write a response that appropriate
|
|
56 |
|
57 |
```
|
58 |
|
|
|
|
|
|
|
59 |
## Provided files and GPTQ parameters
|
60 |
|
61 |
Multiple quantisation parameters are provided, to allow you to choose the best one for your hardware and requirements.
|
62 |
|
63 |
Each separate quant is in a different branch. See below for instructions on fetching from different branches.
|
64 |
|
65 |
-
All GPTQ files are made with AutoGPTQ.
|
66 |
|
67 |
<details>
|
68 |
<summary>Explanation of GPTQ parameters</summary>
|
@@ -86,6 +94,9 @@ All GPTQ files are made with AutoGPTQ.
|
|
86 |
| [gptq-8bit--1g-actorder_True](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GPTQ/tree/gptq-8bit--1g-actorder_True) | 8 | None | Yes | 0.1 | [CamelAI Math](https://huggingface.co/datasets/andersonbcdefg/math) | 4096 | 13.36 GB | No | 8-bit, with Act Order. No group size, to lower VRAM requirements and to improve AutoGPTQ speed. |
|
87 |
| [gptq-8bit-128g-actorder_True](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GPTQ/tree/gptq-8bit-128g-actorder_True) | 8 | 128 | Yes | 0.1 | [CamelAI Math](https://huggingface.co/datasets/andersonbcdefg/math) | 4096 | 13.65 GB | No | 8-bit, with group size 128g for higher inference quality and with Act Order for even higher accuracy. Poor AutoGPTQ CUDA speed. |
|
88 |
|
|
|
|
|
|
|
89 |
## How to download from branches
|
90 |
|
91 |
- In text-generation-webui, you can add `:branch` to the end of the download name, eg `TheBloke/WizardMath-13B-V1.0-GPTQ:gptq-4bit-32g-actorder_True`
|
@@ -94,7 +105,8 @@ All GPTQ files are made with AutoGPTQ.
|
|
94 |
git clone --single-branch --branch gptq-4bit-32g-actorder_True https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GPTQ
|
95 |
```
|
96 |
- In Python Transformers code, the branch is the `revision` parameter; see below.
|
97 |
-
|
|
|
98 |
## How to easily download and use this model in [text-generation-webui](https://github.com/oobabooga/text-generation-webui).
|
99 |
|
100 |
Please make sure you're using the latest version of [text-generation-webui](https://github.com/oobabooga/text-generation-webui).
|
@@ -111,12 +123,16 @@ It is strongly recommended to use the text-generation-webui one-click-installers
|
|
111 |
6. In the **Model** dropdown, choose the model you just downloaded: `WizardMath-13B-V1.0-GPTQ`
|
112 |
7. The model will automatically load, and is now ready for use!
|
113 |
8. If you want any custom settings, set them and then click **Save settings for this model** followed by **Reload the Model** in the top right.
|
114 |
-
* Note that you do not need to set GPTQ parameters any more. These are set automatically from the file `quantize_config.json`.
|
115 |
9. Once you're ready, click the **Text Generation tab** and enter a prompt to get started!
|
|
|
116 |
|
|
|
117 |
## How to use this GPTQ model from Python code
|
118 |
|
119 |
-
### Install the necessary packages
|
|
|
|
|
120 |
|
121 |
```shell
|
122 |
pip3 install transformers>=4.32.0 optimum>=1.12.0
|
@@ -132,7 +148,7 @@ cd AutoGPTQ
|
|
132 |
pip3 install .
|
133 |
```
|
134 |
|
135 |
-
### For CodeLlama models
|
136 |
|
137 |
If 4.33.0 is not yet released when you read this, you will need to install Transformers from source:
|
138 |
```shell
|
@@ -188,7 +204,9 @@ pipe = pipeline(
|
|
188 |
|
189 |
print(pipe(prompt_template)[0]['generated_text'])
|
190 |
```
|
|
|
191 |
|
|
|
192 |
## Compatibility
|
193 |
|
194 |
The files provided are tested to work with AutoGPTQ, both via Transformers and using AutoGPTQ directly. They should also work with [Occ4m's GPTQ-for-LLaMa fork](https://github.com/0cc4m/KoboldAI).
|
@@ -196,6 +214,7 @@ The files provided are tested to work with AutoGPTQ, both via Transformers and u
|
|
196 |
[ExLlama](https://github.com/turboderp/exllama) is compatible with Llama models in 4-bit. Please see the Provided Files table above for per-file compatibility.
|
197 |
|
198 |
[Huggingface Text Generation Inference (TGI)](https://github.com/huggingface/text-generation-inference) is compatible with all GPTQ models.
|
|
|
199 |
|
200 |
<!-- footer start -->
|
201 |
<!-- 200823 -->
|
@@ -220,7 +239,7 @@ Donaters will get priority support on any and all AI/LLM/model questions and req
|
|
220 |
|
221 |
**Special thanks to**: Aemon Algiz.
|
222 |
|
223 |
-
**Patreon special mentions**:
|
224 |
|
225 |
|
226 |
Thank you to all my generous patrons and donaters!
|
@@ -229,16 +248,15 @@ And thank you again to a16z for their generous grant.
|
|
229 |
|
230 |
<!-- footer end -->
|
231 |
|
232 |
-
# Original model card:
|
233 |
|
234 |
|
235 |
|
236 |
## WizardMath: Empowering Mathematical Reasoning for Large Language Models via Reinforced Evol-Instruct (RLEIF)
|
237 |
|
238 |
|
239 |
-
|
240 |
<p align="center">
|
241 |
-
π€ <a href="https://huggingface.co/WizardLM" target="_blank">HF Repo</a>
|
242 |
</p>
|
243 |
<p align="center">
|
244 |
π Join our <a href="https://discord.gg/VZjjHtWrKs" target="_blank">Discord</a>
|
@@ -249,15 +267,18 @@ And thank you again to a16z for their generous grant.
|
|
249 |
| 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> |
|
250 |
| 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> |
|
251 |
| 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> |
|
252 |
-
| WizardCoder-
|
|
|
253 |
| 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> |
|
254 |
|
|
|
255 |
| Model | Checkpoint | Paper | GSM8k | MATH |Online Demo| License|
|
256 |
| ----- |------| ---- |------|-------| ----- | ----- |
|
257 |
| 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> |
|
258 |
| 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> |
|
259 |
| 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>|
|
260 |
|
|
|
261 |
|
262 |
<font size=4>
|
263 |
|
@@ -277,13 +298,18 @@ And thank you again to a16z for their generous grant.
|
|
277 |
|
278 |
**Discord**: https://discord.gg/VZjjHtWrKs
|
279 |
|
|
|
|
|
|
|
280 |
|
|
|
|
|
|
|
281 |
|
282 |
β<b>Note for model system prompts usage:</b>
|
283 |
|
284 |
Please use **the same systems prompts strictly** with us, and we do not guarantee the accuracy of the **quantified versions**.
|
285 |
|
286 |
-
|
287 |
**Default version:**
|
288 |
|
289 |
```
|
@@ -298,6 +324,10 @@ Please use **the same systems prompts strictly** with us, and we do not guarante
|
|
298 |
"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."
|
299 |
```
|
300 |
|
|
|
|
|
|
|
|
|
301 |
|
302 |
β<b>To commen concern about dataset:</b>
|
303 |
|
@@ -305,3 +335,17 @@ Recently, there have been clear changes in the open-source policy and regulation
|
|
305 |
Despite this, we have still worked hard to obtain opening the weights of the model first, but the data involves stricter auditing and is in review with our legal team .
|
306 |
Our researchers have no authority to publicly release them without authorization.
|
307 |
Thank you for your understanding.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
- Model creator: [WizardLM](https://huggingface.co/WizardLM)
|
30 |
- Original model: [WizardMath 13B V1.0](https://huggingface.co/WizardLM/WizardMath-13B-V1.0)
|
31 |
|
32 |
+
<!-- description start -->
|
33 |
## Description
|
34 |
|
35 |
+
This repo contains GPTQ model files for [WizardLM's WizardMath 13B V1.0](https://huggingface.co/WizardLM/WizardMath-13B-V1.0).
|
36 |
|
37 |
Multiple GPTQ parameter permutations are provided; see Provided Files below for details of the options provided, their parameters, and the software used to create them.
|
38 |
|
39 |
+
<!-- description end -->
|
40 |
+
<!-- repositories-available start -->
|
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 GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGUF)
|
45 |
* [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference (deprecated)](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GGML)
|
46 |
* [WizardLM's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/WizardLM/WizardMath-13B-V1.0)
|
47 |
+
<!-- repositories-available end -->
|
48 |
|
49 |
+
<!-- prompt-template start -->
|
50 |
## Prompt template: Alpaca-CoT
|
51 |
|
52 |
```
|
|
|
61 |
|
62 |
```
|
63 |
|
64 |
+
<!-- prompt-template end -->
|
65 |
+
|
66 |
+
<!-- README_GPTQ.md-provided-files start -->
|
67 |
## Provided files and GPTQ parameters
|
68 |
|
69 |
Multiple quantisation parameters are provided, to allow you to choose the best one for your hardware and requirements.
|
70 |
|
71 |
Each separate quant is in a different branch. See below for instructions on fetching from different branches.
|
72 |
|
73 |
+
All recent GPTQ files are made with AutoGPTQ, and all files in non-main branches are made with AutoGPTQ. Files in the `main` branch which were uploaded before August 2023 were made with GPTQ-for-LLaMa.
|
74 |
|
75 |
<details>
|
76 |
<summary>Explanation of GPTQ parameters</summary>
|
|
|
94 |
| [gptq-8bit--1g-actorder_True](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GPTQ/tree/gptq-8bit--1g-actorder_True) | 8 | None | Yes | 0.1 | [CamelAI Math](https://huggingface.co/datasets/andersonbcdefg/math) | 4096 | 13.36 GB | No | 8-bit, with Act Order. No group size, to lower VRAM requirements and to improve AutoGPTQ speed. |
|
95 |
| [gptq-8bit-128g-actorder_True](https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GPTQ/tree/gptq-8bit-128g-actorder_True) | 8 | 128 | Yes | 0.1 | [CamelAI Math](https://huggingface.co/datasets/andersonbcdefg/math) | 4096 | 13.65 GB | No | 8-bit, with group size 128g for higher inference quality and with Act Order for even higher accuracy. Poor AutoGPTQ CUDA speed. |
|
96 |
|
97 |
+
<!-- README_GPTQ.md-provided-files end -->
|
98 |
+
|
99 |
+
<!-- README_GPTQ.md-download-from-branches start -->
|
100 |
## How to download from branches
|
101 |
|
102 |
- In text-generation-webui, you can add `:branch` to the end of the download name, eg `TheBloke/WizardMath-13B-V1.0-GPTQ:gptq-4bit-32g-actorder_True`
|
|
|
105 |
git clone --single-branch --branch gptq-4bit-32g-actorder_True https://huggingface.co/TheBloke/WizardMath-13B-V1.0-GPTQ
|
106 |
```
|
107 |
- In Python Transformers code, the branch is the `revision` parameter; see below.
|
108 |
+
<!-- README_GPTQ.md-download-from-branches end -->
|
109 |
+
<!-- README_GPTQ.md-text-generation-webui start -->
|
110 |
## How to easily download and use this model in [text-generation-webui](https://github.com/oobabooga/text-generation-webui).
|
111 |
|
112 |
Please make sure you're using the latest version of [text-generation-webui](https://github.com/oobabooga/text-generation-webui).
|
|
|
123 |
6. In the **Model** dropdown, choose the model you just downloaded: `WizardMath-13B-V1.0-GPTQ`
|
124 |
7. The model will automatically load, and is now ready for use!
|
125 |
8. If you want any custom settings, set them and then click **Save settings for this model** followed by **Reload the Model** in the top right.
|
126 |
+
* Note that you do not need to and should not set manual GPTQ parameters any more. These are set automatically from the file `quantize_config.json`.
|
127 |
9. Once you're ready, click the **Text Generation tab** and enter a prompt to get started!
|
128 |
+
<!-- README_GPTQ.md-text-generation-webui end -->
|
129 |
|
130 |
+
<!-- README_GPTQ.md-use-from-python start -->
|
131 |
## How to use this GPTQ model from Python code
|
132 |
|
133 |
+
### Install the necessary packages
|
134 |
+
|
135 |
+
Requires: Transformers 4.32.0 or later, Optimum 1.12.0 or later, and AutoGPTQ 0.4.2 or later.
|
136 |
|
137 |
```shell
|
138 |
pip3 install transformers>=4.32.0 optimum>=1.12.0
|
|
|
148 |
pip3 install .
|
149 |
```
|
150 |
|
151 |
+
### For CodeLlama models only: you must use Transformers 4.33.0 or later.
|
152 |
|
153 |
If 4.33.0 is not yet released when you read this, you will need to install Transformers from source:
|
154 |
```shell
|
|
|
204 |
|
205 |
print(pipe(prompt_template)[0]['generated_text'])
|
206 |
```
|
207 |
+
<!-- README_GPTQ.md-use-from-python end -->
|
208 |
|
209 |
+
<!-- README_GPTQ.md-compatibility start -->
|
210 |
## Compatibility
|
211 |
|
212 |
The files provided are tested to work with AutoGPTQ, both via Transformers and using AutoGPTQ directly. They should also work with [Occ4m's GPTQ-for-LLaMa fork](https://github.com/0cc4m/KoboldAI).
|
|
|
214 |
[ExLlama](https://github.com/turboderp/exllama) is compatible with Llama models in 4-bit. Please see the Provided Files table above for per-file compatibility.
|
215 |
|
216 |
[Huggingface Text Generation Inference (TGI)](https://github.com/huggingface/text-generation-inference) is compatible with all GPTQ models.
|
217 |
+
<!-- README_GPTQ.md-compatibility end -->
|
218 |
|
219 |
<!-- footer start -->
|
220 |
<!-- 200823 -->
|
|
|
239 |
|
240 |
**Special thanks to**: Aemon Algiz.
|
241 |
|
242 |
+
**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
|
243 |
|
244 |
|
245 |
Thank you to all my generous patrons and donaters!
|
|
|
248 |
|
249 |
<!-- footer end -->
|
250 |
|
251 |
+
# Original model card: WizardLM's WizardMath 13B V1.0
|
252 |
|
253 |
|
254 |
|
255 |
## WizardMath: Empowering Mathematical Reasoning for Large Language Models via Reinforced Evol-Instruct (RLEIF)
|
256 |
|
257 |
|
|
|
258 |
<p align="center">
|
259 |
+
π€ <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>
|
260 |
</p>
|
261 |
<p align="center">
|
262 |
π Join our <a href="https://discord.gg/VZjjHtWrKs" target="_blank">Discord</a>
|
|
|
267 |
| 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> |
|
268 |
| 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> |
|
269 |
| 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> |
|
270 |
+
| WizardCoder-Python-7B-V1.0 | π€ <a href="https://huggingface.co/WizardLM/WizardCoder-Python-7B-V1.0" target="_blank">HF Link</a> | π <a href="https://arxiv.org/abs/2306.08568" target="_blank">[WizardCoder]</a> | 55.5 | 51.6 | [Demo](http://47.103.63.15:50088/) | <a href="https://ai.meta.com/resources/models-and-libraries/llama-downloads/" target="_blank">Llama2</a> |
|
271 |
+
| 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 | -- | <a href="https://huggingface.co/spaces/bigcode/bigcode-model-license-agreement" target="_blank">OpenRAIL-M</a> |
|
272 |
| 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> |
|
273 |
|
274 |
+
|
275 |
| Model | Checkpoint | Paper | GSM8k | MATH |Online Demo| License|
|
276 |
| ----- |------| ---- |------|-------| ----- | ----- |
|
277 |
| 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> |
|
278 |
| 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> |
|
279 |
| 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>|
|
280 |
|
281 |
+
|
282 |
|
283 |
<font size=4>
|
284 |
|
|
|
298 |
|
299 |
**Discord**: https://discord.gg/VZjjHtWrKs
|
300 |
|
301 |
+
## Comparing WizardMath-V1.0 with Other LLMs.
|
302 |
+
|
303 |
+
π₯ The following figure shows that our **WizardMath-70B-V1.0 attains the fifth position in this benchmark**, surpassing ChatGPT (81.6 vs. 80.8) , Claude Instant (81.6 vs. 80.9), PaLM 2 540B (81.6 vs. 80.7).
|
304 |
|
305 |
+
<p align="center" width="100%">
|
306 |
+
<a ><img src="https://raw.githubusercontent.com/nlpxucan/WizardLM/main/WizardMath/images/wizardmath_gsm8k.png" alt="WizardMath" style="width: 96%; min-width: 300px; display: block; margin: auto;"></a>
|
307 |
+
</p>
|
308 |
|
309 |
β<b>Note for model system prompts usage:</b>
|
310 |
|
311 |
Please use **the same systems prompts strictly** with us, and we do not guarantee the accuracy of the **quantified versions**.
|
312 |
|
|
|
313 |
**Default version:**
|
314 |
|
315 |
```
|
|
|
324 |
"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."
|
325 |
```
|
326 |
|
327 |
+
## Inference WizardMath Demo Script
|
328 |
+
|
329 |
+
We provide the WizardMath inference demo code [here](https://github.com/nlpxucan/WizardLM/tree/main/demo).
|
330 |
+
|
331 |
|
332 |
β<b>To commen concern about dataset:</b>
|
333 |
|
|
|
335 |
Despite this, we have still worked hard to obtain opening the weights of the model first, but the data involves stricter auditing and is in review with our legal team .
|
336 |
Our researchers have no authority to publicly release them without authorization.
|
337 |
Thank you for your understanding.
|
338 |
+
|
339 |
+
|
340 |
+
## Citation
|
341 |
+
|
342 |
+
Please cite the repo if you use the data, method or code in this repo.
|
343 |
+
|
344 |
+
```
|
345 |
+
@article{luo2023wizardmath,
|
346 |
+
title={WizardMath: Empowering Mathematical Reasoning for Large Language Models via Reinforced Evol-Instruct},
|
347 |
+
author={Luo, Haipeng and Sun, Qingfeng and Xu, Can and Zhao, Pu and Lou, Jianguang and Tao, Chongyang and Geng, Xiubo and Lin, Qingwei and Chen, Shifeng and Zhang, Dongmei},
|
348 |
+
journal={arXiv preprint arXiv:2308.09583},
|
349 |
+
year={2023}
|
350 |
+
}
|
351 |
+
```
|