Downloads · 30 days
9
38% of all-time downloads
Aurelien33/aurelius-v2
aurelius-v2 is a machine learning model from Aurelien33. 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.
Base: Qwen/Qwen3-Coder-30B-A3B-Instruct (Apache-2.0, MoE 30.5B total / 3.3B active). Clean-teacher provenance ✓. What v2 is: the strong open base + a thin, MEASURED serving layer — one lever per axis, each the one tha…
Downloads · 30 days
9
38% of all-time downloads
All-time downloads
24
Public
Repo size
18.6 GB
Likes
0
Public
Click a slice to open those files.
.gguf18.6 GB · 100%
From the Hugging Face model README
Base: Qwen/Qwen3-Coder-30B-A3B-Instruct (Apache-2.0, MoE 30.5B total / 3.3B active). Clean-teacher provenance ✓. What v2 is: the strong open base + a thin, MEASURED serving layer — one lever per axis, each the one that actually worked.
| 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. |
30B-A3B vs 14B, zero training: MATH-500 +33pp, GSM8K +20pp, MATH-L5 greedy 65.7 vs ~47. The base swap is the capability gain; the serving layer cashes the cheap selection/repair headroom on top.
solve("math", "<problem>") # -> {answer, confidence, votes}
solve("code", "<task asking for one ```python block>", tests="<assert lines>") # -> {code, how, passed}
maj@N: no verifier needed (ships anywhere). Code best-of-N: needs caller-supplied tests as the verifier. Compute ~Nx greedy. Math max_new=4096 (think=1 needs room; check no-box). Apache → public-release-eligible (keep private until gated). Future work (gated on compute): trained verifier / RLVR-for-selection for the residual ~7.4pp.
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)from aurelius_serve import AureliusServe
s = AureliusServe()
print(s.solve('math', 'What is 12*13?'))