Views
No views yet
| Stage | Result |
|---|---|
| 72B challenger generates calibrated CS questions | ✅ 5/8 source docs produced a real weak/strong gap (30–60 pts) |
| Curated data pushed to the Hub | ✅ ligaments-dev/autodata-grpo-cs |
| GRPO training on HF Jobs (A10G, 24GB) | ✅ 100 steps, LoRA, programmatic reward, ~17 min |
| Trained adapter pushed to the Hub | ✅ this repo |
completions/clipped_ratio = 1.0 — every generation hit the 256-token cap
and never emitted a stop token, so the token-overlap reward stayed ~constant and GRPO had no
usable gradient.max_completion_length and/or correct the chat/generation config.a10g-small to a100-large once the dataset and reward are sound.Qwen/Qwen2.5-0.5B-Instruct1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-0.5B-Instruct")
5model = PeftModel.from_pretrained(base, "ligaments-dev/autodata-policy-cs")
6tok = AutoTokenizer.from_pretrained("ligaments-dev/autodata-policy-cs")