Instructions to use WizardLMTeam/WizardMath-7B-V1.1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use WizardLMTeam/WizardMath-7B-V1.1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="WizardLMTeam/WizardMath-7B-V1.1")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("WizardLMTeam/WizardMath-7B-V1.1") model = AutoModelForCausalLM.from_pretrained("WizardLMTeam/WizardMath-7B-V1.1", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use WizardLMTeam/WizardMath-7B-V1.1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "WizardLMTeam/WizardMath-7B-V1.1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WizardLMTeam/WizardMath-7B-V1.1", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/WizardLMTeam/WizardMath-7B-V1.1
- SGLang
How to use WizardLMTeam/WizardMath-7B-V1.1 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "WizardLMTeam/WizardMath-7B-V1.1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WizardLMTeam/WizardMath-7B-V1.1", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "WizardLMTeam/WizardMath-7B-V1.1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WizardLMTeam/WizardMath-7B-V1.1", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use WizardLMTeam/WizardMath-7B-V1.1 with Docker Model Runner:
docker model run hf.co/WizardLMTeam/WizardMath-7B-V1.1
Update README.md
Browse files
README.md
CHANGED
|
@@ -27,14 +27,32 @@ pipeline_tag: text-generation
|
|
| 27 |
|
| 28 |
| Model | Checkpoint | Paper | GSM8k | MATH |Online Demo| License|
|
| 29 |
| ----- |------| ---- |------|-------| ----- | ----- |
|
| 30 |
-
| **WizardMath-7B-V1.
|
| 31 |
| 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> |
|
| 32 |
| 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> |
|
| 33 |
| 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>|
|
| 34 |
|
| 35 |
|
| 36 |
|
| 37 |
-
## [12/19/2023] Comparing WizardMath-7B-V1.1 with
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
|
| 39 |
π₯
|
| 40 |
β<b>Note for model system prompts usage:</b>
|
|
|
|
| 27 |
|
| 28 |
| Model | Checkpoint | Paper | GSM8k | MATH |Online Demo| License|
|
| 29 |
| ----- |------| ---- |------|-------| ----- | ----- |
|
| 30 |
+
| **WizardMath-7B-V1.1** | π€ <a href="https://huggingface.co/WizardLM/WizardMath-7B-V1.1" target="_blank">HF Link</a> | π <a href="https://arxiv.org/abs/2308.09583" target="_blank">[WizardMath]</a>| **83.2** | **30.0** | [Demo](http://47.103.63.15:50080/)| <a href="https://ai.meta.com/resources/models-and-libraries/llama-downloads/" target="_blank"> </a>|
|
| 31 |
| 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> |
|
| 32 |
| 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> |
|
| 33 |
| 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>|
|
| 34 |
|
| 35 |
|
| 36 |
|
| 37 |
+
## [12/19/2023] Comparing WizardMath-7B-V1.1 with other open source 7B size math LLMs.
|
| 38 |
+
|
| 39 |
+
| Model | GSM8k Pass@1 | MATH Pass@1 |
|
| 40 |
+
| ----- |------| ---- |
|
| 41 |
+
| MPT-7B | 6.8 | 3.0 |
|
| 42 |
+
|Llama 1-7B | 11.0 | 2.9 |
|
| 43 |
+
|Llama 2-7b|12.96 |2.78 |
|
| 44 |
+
|Yi-6b| 32.6 |5.78 |
|
| 45 |
+
|Mistral-7b|37.83 |9.06 |
|
| 46 |
+
|Qwen-7b|47.84 |9.34 |
|
| 47 |
+
| RFT-7B | 50.3 | -- |
|
| 48 |
+
| MAmmoTH-7B (COT) | 50.5 | 10.4 |
|
| 49 |
+
| WizardMath-7B-V1.0 | 54.9 | 10.7 |
|
| 50 |
+
|Abel-7B-001 |59.7 |13 |
|
| 51 |
+
| MetaMath-7B | 66.5 | 19.8 |
|
| 52 |
+
| Arithmo-Mistral-7B | 74.7 | 25.3 |
|
| 53 |
+
|MetaMath-Mistral-7B|77.7 |28.2 |
|
| 54 |
+
|Abel-7B-002 | 80.4 | 29.5 |
|
| 55 |
+
| **WizardMath-7B-V1.1** | **83.2** | **30.0** |
|
| 56 |
|
| 57 |
π₯
|
| 58 |
β<b>Note for model system prompts usage:</b>
|