Views
No views yet
| Setting | HumanEval pass@1 | MBPP pass@1 |
|---|---|---|
| Qwen3-14B (base) | 88.4% | 69.0% |
| Aurelius-14B (single-pass, greedy) | 87.8% | 71.5% |
| Aurelius-14B + best-of-8 + repair (serving) | 96.3% | 83.0% |
| Lever | Effect |
|---|---|
| Capacity (8B → 14B base) | +4.3pp HumanEval / +6.5pp MBPP — the capability lever |
| SFT on verified strong-teacher traces | non-regressing polish (matches base) |
| best-of-N + repair (inference) | +8.5pp HumanEval / +10.5pp MBPP — the serving win |
| RLVR (GRPO) on the 8B | inert / within noise — recorded null |
| Flywheel self-distillation into greedy | regressed — recorded null |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2tok = AutoTokenizer.from_pretrained("Zephyrs33/aurelius-14b")
3model = AutoModelForCausalLM.from_pretrained("Zephyrs33/aurelius-14b", device_map="auto")
4msg = [{"role": "user", "content": "Write a Python function is_prime(n). Return ONLY the function in one ```python block."}]
5ids = tok.apply_chat_template(msg, add_generation_prompt=True, return_tensors="pt").to(model.device)
6print(tok.decode(model.generate(ids, max_new_tokens=512)[0][ids.shape[1]:], skip_special_tokens=True))solve(problem, tests) —
sample N, execute against a verifier, return a passing solution; repair on failure.