Math Professor 3B

This model is a math instruction fine-tuned version of Qwen2.5-3B model.

Fine-tuning dataset

Model was fine-tuned on qwedsacf/grade-school-math-instructions instruction dataset.

Inference

!pip install transformers accelerate

from transformers import AutoTokenizer, AutoModelForCausalLM

model_name = "entfane/math-professor-3B"

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))
Downloads last month
12
Safetensors
Model size
3.09B 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-professor-3B

Base model

Qwen/Qwen2.5-3B
Finetuned
(147)
this model
Finetunes
1 model
Quantizations
1 model

Dataset used to train entfane/math-professor-3B

Collection including entfane/math-professor-3B