stoshniwal
commited on
Commit
•
439ae56
1
Parent(s):
2ae2f2b
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,84 @@
|
|
1 |
-
---
|
2 |
-
license: llama3.1
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: llama3.1
|
3 |
+
base_model:
|
4 |
+
- meta-llama/Llama-3.1-8B
|
5 |
+
datasets:
|
6 |
+
- nvidia/OpenMathInstruct-2
|
7 |
+
language:
|
8 |
+
- en
|
9 |
+
tags:
|
10 |
+
- nvidia
|
11 |
+
- math
|
12 |
+
---
|
13 |
+
|
14 |
+
# OpenMath2-Llama3.1-8B-nemo
|
15 |
+
|
16 |
+
NeMo](https://github.com/NVIDIA/NeMo) checkpoint for [OpenMath2-Llama3.1-8B](https://huggingface.co/nvidia/OpenMath2-Llama3.1-8B) is obtained by finetuning [Llama3.1-8B-Base](https://huggingface.co/meta-llama/Llama-3.1-8B) with [OpenMathInstruct-2](https://huggingface.co/datasets/nvidia/OpenMathInstruct-2).
|
17 |
+
|
18 |
+
The model outperforms [Llama3.1-8B-Instruct](https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct) on all the popular math benchmarks we evaluate on, especially on [MATH](https://github.com/hendrycks/math) by 15.9%.
|
19 |
+
|
20 |
+
<!-- <p align="center">
|
21 |
+
<img src="scaling_plot.jpg" width="350"><img src="math_level_comp.jpg" width="350">
|
22 |
+
</p> -->
|
23 |
+
|
24 |
+
<style>
|
25 |
+
.image-container {
|
26 |
+
display: flex;
|
27 |
+
justify-content: center;
|
28 |
+
align-items: center;
|
29 |
+
gap: 20px;
|
30 |
+
}
|
31 |
+
.image-container img {
|
32 |
+
width: 350px;
|
33 |
+
height: auto;
|
34 |
+
}
|
35 |
+
</style>
|
36 |
+
|
37 |
+
<div class="image-container">
|
38 |
+
<img src="scaling_plot.jpg" title="Performance of Llama-3.1-8B-Instruct as it is trained on increasing proportions of OpenMathInstruct-2">
|
39 |
+
<img src="math_level_comp.jpg" title="Comparison of OpenMath2-Llama3.1-8B vs. Llama-3.1-8B-Instruct across MATH levels">
|
40 |
+
</div>
|
41 |
+
|
42 |
+
| Model | GSM8K | MATH | AMC 2023 | AIME 2024 | Omni-MATH |
|
43 |
+
|:---|:---:|:---:|:---:|:---:|:---:|
|
44 |
+
| Llama3.1-8B-Instruct | 84.5 | 51.9 | 9/40 | 2/30 | 12.7 |
|
45 |
+
| **OpenMath2-Llama3.1-8B** ([nemo](https://huggingface.co/nvidia/OpenMath2-Llama3.1-8B-nemo) \| [HF](https://huggingface.co/nvidia/OpenMath2-Llama3.1-8B)) | 91.7 | 67.8 | 16/40 | 3/30 | 22.0 |
|
46 |
+
| + majority@256 | 94.1 | 76.1 | 23/40 | 3/30 | 24.6 |
|
47 |
+
| Llama3.1-70B-Instruct | 95.8 | 67.9 | 19/40 | 6/30 | 19.0 |
|
48 |
+
| OpenMath2-Llama3.1-70B ([nemo](https://huggingface.co/nvidia/OpenMath2-Llama3.1-70B-nemo) \| [HF](https://huggingface.co/nvidia/OpenMath2-Llama3.1-70B)) | 94.9 | 71.9 | 20/40 | 4/30 | 23.1 |
|
49 |
+
| + majority@256 | 96.0 | 79.6 | 24/40 | 6/30 | 27.6 |
|
50 |
+
|
51 |
+
The pipeline we used to produce the data and models is fully open-sourced!
|
52 |
+
|
53 |
+
- [Code](https://github.com/Kipok/NeMo-Skills)
|
54 |
+
- [Models](https://huggingface.co/collections/nvidia/openmath-2-66fb142317d86400783d2c7b)
|
55 |
+
- [Dataset](https://huggingface.co/datasets/nvidia/OpenMathInstruct-2)
|
56 |
+
|
57 |
+
|
58 |
+
# How to use the models?
|
59 |
+
|
60 |
+
Our models are fully compatible with Llama3.1-instruct format, so you should be able to just replace an existing Llama3.1 checkpoint and use it in the same way.
|
61 |
+
Please note that these models have not been instruction tuned and might not provide good answers outside of math domain.
|
62 |
+
|
63 |
+
If you don't know how to use Llama3.1 models, we provide convenient [instructions in our repo](https://github.com/Kipok/NeMo-Skills/blob/main/docs/inference.md).
|
64 |
+
|
65 |
+
# Reproducing our results
|
66 |
+
|
67 |
+
We provide [all instructions](https://github.com/Kipok/NeMo-Skills/blob/main/docs/reproducing-results.md) to fully reproduce our results.
|
68 |
+
|
69 |
+
## Citation
|
70 |
+
|
71 |
+
If you find our work useful, please consider citing us!
|
72 |
+
|
73 |
+
```bibtex
|
74 |
+
@article{toshniwal2024openmath2,
|
75 |
+
title = {OpenMathInstruct-2: Accelerating AI for Math with Massive Open-Source Instruction Data},
|
76 |
+
author = {Shubham Toshniwal and Wei Du and Ivan Moshkov and Branislav Kisacanin and Alexan Ayrapetyan and Igor Gitman},
|
77 |
+
year = {2024},
|
78 |
+
journal = {arXiv preprint arXiv:2410.01560}
|
79 |
+
}
|
80 |
+
```
|
81 |
+
|
82 |
+
## Terms of use
|
83 |
+
|
84 |
+
By accessing this model, you are agreeing to the LLama 3.1 terms and conditions of the [license](https://github.com/meta-llama/llama-models/blob/main/models/llama3_1/LICENSE), [acceptable use policy](https://github.com/meta-llama/llama-models/blob/main/models/llama3_1/USE_POLICY.md) and [Meta’s privacy policy](https://www.facebook.com/privacy/policy/)
|