Math Fine Tune 🔮
Collection
2 items • Updated
Coding model comming soon!
This qwen2 model was trained 2x faster with Unsloth and Huggingface's TRL library.
This model was trained on microsoft/orca-math-word-problems-200k for 3 epochs with rsLoRA + QLoRA.
The model follows the Alpaca format:
<|im_start|>system
You are a professional mathematician.|im_end|>
<|im_start|>user
{}<|im_end|>
<|im_start|>assistant
{}
Base model
unsloth/Qwen2-0.5B-Instruct-bnb-4bit
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "NotASI/Qwen2-0.5B-Math"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "NotASI/Qwen2-0.5B-Math", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'