Views
No views yet


| Model | GSM8K | MATH | AMC 2023 | AIME 2024 | Omni-MATH |
|---|---|---|---|---|---|
| Llama3.1-8B-Instruct | 84.5 | 51.9 | 9/40 | 2/30 | 12.7 |
| OpenMath2-Llama3.1-8B (nemo | HF) | 91.7 | 67.8 | 16/40 | 3/30 | 22.0 |
| + majority@256 | 94.1 | 76.1 | 23/40 | 3/30 | 24.6 |
| Llama3.1-70B-Instruct | 95.8 | 67.9 | 19/40 | 6/30 | 19.0 |
| OpenMath2-Llama3.1-70B (nemo | HF) | 94.9 | 71.9 | 20/40 | 4/30 | 23.1 |
| + majority@256 | 96.0 | 79.6 | 24/40 | 6/30 | 27.6 |
1import transformers
2import torch
3
4model_id = "nvidia/OpenMath2-Llama3.1-8B"
5
6pipeline = transformers.pipeline(
7 "text-generation",
8 model=model_id,
9 model_kwargs={"torch_dtype": torch.bfloat16},
10 device_map="auto",
11)
12
13messages = [
14 {
15 "role": "user",
16 "content": "Solve the following math problem. Make sure to put the answer (and only answer) inside \\boxed{}.\n\n" +
17 "What is the minimum value of $a^2+6a-7$?"},
18]
19
20outputs = pipeline(
21 messages,
22 max_new_tokens=4096,
23)
24print(outputs[0]["generated_text"][-1]['content'])1@article{toshniwal2024openmath2,
2 title = {OpenMathInstruct-2: Accelerating AI for Math with Massive Open-Source Instruction Data},
3 author = {Shubham Toshniwal and Wei Du and Ivan Moshkov and Branislav Kisacanin and Alexan Ayrapetyan and Igor Gitman},
4 year = {2024},
5 journal = {arXiv preprint arXiv:2410.01560}
6}