Views
No views yet
| axis | single-pass | + serving lever | lift | lever |
|---|---|---|---|---|
| MATH-500 L5 (n=134) | greedy 65.7% | maj@8 73.9% | +8.2pp | self-consistency (verifier-free) |
| MATH-500 (n=100) | 85.0% | — | — | (near-saturated) |
| GSM8K (n=100) | 98.0% | — | — | (saturated) |
| HumanEval | ~96.7% | best-of-N+repair | (small; saturated) | exec-verifier |
| MBPP | ~70.5% | best-of-N+repair | ~+10pp* | exec-verifier |
| *code best-of-N+repair lift measured on the v1 14B (+10.5pp MBPP / +8.5pp HumanEval); same mechanism, re-runnable here. |
solve("math", "<problem>") # -> {answer, confidence, votes}
solve("code", "<task asking for one ```python block>", tests="<assert lines>") # -> {code, how, passed}solve_code surfaces feedback on failure to debug this.aurelius_serve.py — self-contained serving (maj@N math + best-of-N+repair code)*.gguf — quantized weights for local serving (if present)1from aurelius_serve import AureliusServe
2s = AureliusServe()
3print(s.solve('math', 'What is 12*13?'))