Downloads · 30 days
24
15% of all-time downloads
entfane/math-professor-3B
math-professor-3B is a text generation model from entfane. Use it when you need the model to write or continue text. It is set up for transformers.
<img src="https://huggingface.co/entfane/math-professor-3B/resolve/main/math-professor-image.png" width="300" height="300"/
Downloads · 30 days
24
15% of all-time downloads
All-time downloads
165
Public
Parameters
3.1B
12.4 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors12.3 GB · 100%
From the Hugging Face model README
This model is a math instruction fine-tuned version of Qwen2.5-3B model.
Model was fine-tuned on qwedsacf/grade-school-math-instructions instruction dataset.
!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))