Llama-3.3+(3.1v3.3)-70B-OpenMath2

Math Model

View on Hugging FaceBack to Models

Hourly Usage

Performance Metrics

Avg. Total Time

12.71s

Avg. TTFT

5.85s

Avg. Prefill TPS

648.20

Avg. Gen TPS

23.11

Model Information

Context Size

32768

Quantization

r64

Engine

aphrodite

Creation Method

FFT

Model Type

Llama70B

Chat Template

Llama 3

Reasoning

No

Vision

No

Parameters

70B

Added At

12/22/2024


license: llama3.1 base_model:

  • meta-llama/Llama-3.1-70B datasets:
  • nvidia/OpenMathInstruct-2 language:
  • en tags:
  • nvidia
  • math library_name: transformers

OpenMath2-Llama3.1-70B

OpenMath2-Llama3.1-70B is obtained by finetuning Llama3.1-70B-Base with OpenMathInstruct-2.

The model outperforms Llama3.1-70B-Instruct on MATH by 3.9%.

ModelGSM8KMATHAMC 2023AIME 2024Omni-MATH
Llama3.1-8B-Instruct84.551.99/402/3012.7
OpenMath2-Llama3.1-8B (nemo | HF)91.767.816/403/3022.0
+ majority@25694.176.123/403/3024.6
Llama3.1-70B-Instruct95.867.919/406/3019.0
OpenMath2-Llama3.1-70B (nemo | HF)94.971.920/404/3023.1
+ majority@25696.079.624/406/3027.6

The pipeline we used to produce the data and models is fully open-sourced!

See our paper to learn more details!

How to use the models?

Our models are trained with the same "chat format" as Llama3.1-instruct models (same system/user/assistant tokens). Please note that these models have NOT been instruction-tuned on general data and thus might not provide good answers outside of the math domain.

We recommend using instructions in our repo to run inference with these models, but here is an example of how to do it through transformers api:

import transformers
import torch

model_id = "nvidia/OpenMath2-Llama3.1-70B"

pipeline = transformers.pipeline(
    "text-generation",
    model=model_id,
    model_kwargs={"torch_dtype": torch.bfloat16},
    device_map="auto",
)

messages = [
    {
        "role": "user", 
        "content": "Solve the following math problem. Make sure to put the answer (and only answer) inside \\boxed{}.\n\n" + 
        "What is the minimum value of $a^2+6a-7$?"},
]

outputs = pipeline(
    messages,
    max_new_tokens=4096,
)
print(outputs[0]["generated_text"][-1]['content'])

Reproducing our results

We provide all instructions to fully reproduce our results.

Citation

If you find our work useful, please consider citing us!

@article{toshniwal2024openmath2,
  title   = {OpenMathInstruct-2: Accelerating AI for Math with Massive Open-Source Instruction Data},
  author  = {Shubham Toshniwal and Wei Du and Ivan Moshkov and  Branislav Kisacanin and Alexan Ayrapetyan and Igor Gitman},
  year    = {2024},
  journal = {arXiv preprint arXiv:2410.01560}
}

Terms of use

By accessing this model, you are agreeing to the LLama 3.1 terms and conditions of the license, acceptable use policy and Meta’s privacy policy