Downloads · 30 days
0
archit11/track_b_sft_model
track_b_sft_model is a machine learning model from archit11. Use it for the machine learning task on the model card, and read the license before you ship it in a product. The card lists the license as apache-2.0.
Fine-tuned on ~250 synthetic coding instruction pairs generated from the verl corpus.
Downloads · 30 days
0
Access
Public
Updated Feb 18, 2026
Repo size
677 MB
Likes
0
Public
Click a slice to open those files.
.pt444 MB · 57%
From the Hugging Face model README
Fine-tuned on ~250 synthetic coding instruction pairs generated from the verl corpus.
| Metric | Baseline | Post-SFT | Δ |
|---|---|---|---|
| pass@1 | 0.565 | 0.804 | +0.239 |
| pass@3 | 0.783 | 0.848 | +0.065 |
Qwen/Qwen2.5-Coder-1.5Barchit11/track_b_sft (~257 train examples)from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-Coder-1.5B")
model = PeftModel.from_pretrained(base, "archit11/track_b_sft_model").merge_and_unload()
tokenizer = AutoTokenizer.from_pretrained("archit11/track_b_sft_model")