Math Genius 7B

This model is a Math Chain-of-Thought fine-tuned version of Mistral 7B v0.3 Instruct model.

Fine-tuning dataset

Model was fine-tuned on entfane/Mixture-Of-Thoughts-Math-No-COT math dataset.

Inference

!pip install transformers accelerate

from transformers import AutoTokenizer, AutoModelForCausalLM

model_name = "entfane/math-genius-7B"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)
messages = [
    {"role": "user", "content": "What's the derivative of 2x^2?"}
]
input = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
encoded_input = tokenizer(input, return_tensors = "pt").to(model.device)
output = model.generate(**encoded_input, max_new_tokens=1024)
print(tokenizer.decode(output[0], skip_special_tokens=False))

Evaluation

MathQA

The model was evaluated on a randomly sampled subset of 1,000 records from the test split of the Math-QA dataset. Math Genius 7B achieved an accuracy of 93.1% in producing the correct final answer under the pass@1 evaluation metric.

AIME

Math Genius 7B was evaluated on 90 problems from AIME 22, AIME 23, and AIME 24. The model has successfully solved 3/90 of the problems.

Downloads last month
49
Safetensors
Model size
7.25B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for entfane/math-genius-7B

Finetuned
(218)
this model
Quantizations
1 model

Dataset used to train entfane/math-genius-7B

Collection including entfane/math-genius-7B