Model reference · open weights
NuminaMath-TIR is an open-weight language model from AI-MO. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Maker | AI-MO |
|---|---|
| Type | Language models |
| Task | Text gen |
| Parameters (lead) | 6.9B |
| Context | 4k tokens |
| Runs with | transformers |
| Based on | deepseek-ai/deepseek-math-7b-base |
| Released | 2024-07-04 |
| Popularity | 406 downloads / month |
| Licence | Open weights |
About
NuminaMath is a series of language models that are trained to solve math problems using tool-integrated reasoning (TIR). NuminaMath 7B TIR won the first progress prize of the AI Math Olympiad (AIMO), with a score of 29/50 on the public and private tests sets.
This model is a fine-tuned version of deepseek-ai/deepseek-math-7b-base with two stages of supervised fine-tuning:
| NuminaMath-7B-CoT | NuminaMath-7B-TIR | Qwen2-7B-Instruct | Llama3-8B-Instruct | DeepSeekMath-7B-Instruct | DeepSeekMath-7B-RL | DART-Math-7B-CoT | ||
|---|---|---|---|---|---|---|---|---|
| GSM8k | 0-shot | 76.3% | 84.6% | 82.3% | 79.6% | 82.8% | 88.2% | 86.6% |
| Grade school math | ||||||||
| MATH | 0-shot | 55.8% | 68.1% | 49.6% | 30.0% | 46.8% | 51.7% | 53.6% |
| Math problem-solving | ||||||||
| AMC 2023 | 0-shot | 11/40 | 20/40 | 10/40 | 2/40 | 7/40 | 9/40 | 11/40 |
| Competition-level math | maj@64 | 18/40 | 31/40 | 13/40 | 9/40 | 13/40 | 14/40 | 16/40 |
| AIME 2024 | 0-shot | 0/30 | 5/30 | 1/30 | 0/30 | 1/30 | 1/30 | 1/30 |
| Competition-level math | maj@64 | 1/30 | 10/30 | 4/30 | 2/30 | 1/30 | 1/30 | 1/30 |
Table: Comparison of various 7B and 8B parameter language models on different math benchmarks. All scores except those for NuminaMath-7B-TIR are reported without tool-integrated reasoning.
Here's how you can run the model using the pipeline() function from 🤗 Transformers:
import re
import torch
from transformers import pipeline
pipe = pipeline("text-generation", model="AI-MO/NuminaMath-7B-TIR", torch_dtype=torch.bfloat16, device_map="auto")
messages = [
{"role": "user", "content": "For how many values of the constant $k$ will the polynomial $x^{2}+kx+36$ have two distinct integer roots?"},
]
prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
gen_config = {
"max_new_tokens": 1024,
"do_sample": False,
"stop_strings": ["```output"], # Generate until Python code block is complete
"tokenizer": pipe.tokenizer,
}
outputs = pipe(prompt, **gen_config)
text = outputs[0]["generated_text"]
print(text)
# WARNING: This code will execute the python code in the string. We show this for eductional purposes only.
# Please refer to our full pipeline for a safer way to execute code.
python_code = re.findall(r"```python(.*?)```", text, re.DOTALL)[0]
exec(python_code)
The above executes a single step of Python code - for more complex problems, you will want to run the logic for several steps to obtain the final solution.
NuminaMath 7B TIR was created to solve problems in the narrow domain of competition-level mathematics. As a result, the model should not be used for general chat applications. With greedy decoding, we find the model is capable of solving problems at the level of AMC 12, but often struggles generate a valid solution on harder problems at the AIME and Math Olympiad level. The model also struggles to solve geometry problems, likely due to it's limited capacity and lack of other modalities like vision.
The following hyperparameters were used during training:
If you find NuminaMath 7B TIR is useful in your work, please cite it with:
@misc{numina_math_7b,
author = {Edward Beeching and Shengyi Costa Huang and Albert Jiang and Jia Li and Benjamin Lipkin and Zihan Qina and Kashif Rasul and Ziju Shen and Roman Soletskyi and Lewis Tunstall},
title = {NuminaMath 7B TIR},
year = {2024},
publisher = {Numina & Hugging Face},
journal = {Hugging Face repository},
howpublished = {\url{https://huggingface.co/AI-MO/NuminaMath-7B-TIR}}
}
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys numinamath-tir for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (numinamath-tir below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"numinamath-tir","messages":[{"role":"user","content":"Hello"}]}'
Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.