🚀 Qwen2.5-3B-GRPO-325 is a fine-tuned version of Qwen2.5 3B, trained using GRPO (Guided Reinforcement Policy Optimization) and DeepSeek R1’s open-source recipe. This model significantly enhances the base Qwen2.5-3B in mathematical problem-solving, logical reasoning, and structured response generation, pushing it towards GPT-4o1-style advanced reasoning.
🔥 Trained entirely on a Free Google Colab Tesla T4 GPU: Training Notebook
🚀 With more resources and extended training, this model could be pushed even further!
Model Details
Base Model: unsloth/Qwen2.5-3B-instruct-unsloth-bnb-4bit
Fine-tuning Method: GRPO with structured reinforcement
Dataset: 325 curated questions from GSM8K (math reasoning)
Format Adherence: XML-based structured reasoning
Notable Improvements:
Mathematical accuracy ✔
Logical consistency ✔
Structured XML-format responses ✔
GPT-4o1-like step-by-step reasoning ✔
Usage
Example Input & Output
Input (User Query)
If 2x+5=10. Solve for x.
Output (Model Response)
xml
1<reasoning>2To solve for x, we need to isolate x on one side of the equation. This can be done by subtracting 5 from both sides of the equation.
3</reasoning>4<answer>52x + 5 - 5 = 10 - 5,
62x = 5,
72x / 2 = 5 / 2,
8x = 2.5
9</answer>