Views
No views yet

Quality over quantity — and v1.1 is the receipt.
| Task | v1.1 | MiniCPM5-1B (base) | Delta | z | |
|---|---|---|---|---|---|
| BBH (CoT few-shot, n=6511) | 50.94 ± 0.55 | 60.34 ± 0.53 | -9.40 | -12.3 | significant LOSS |
| GSM8K (strict-match, n=1319) | 34.34 ± 1.31 | 40.03 ± 1.35 | -5.69 | -3.0 | significant LOSS |
| MMLU (full, n=14042) | 51.78 ± 0.40 | 53.38 ± 0.40 | -1.60 | -2.8 | significant small LOSS |
| Winogrande (n=1267) | 56.27 ± 1.39 | 56.35 ± 1.39 | -0.08 | -0.04 | noise |
| HellaSwag acc_norm (n=10042) | 48.41 ± 0.50 | 48.82 ± 0.50 | -0.41 | -0.58 | noise |
| TruthfulQA MC2 (n=817) | 44.77 ± 1.49 | 45.99 ± 1.49 | -1.22 | -0.58 | noise |
| GPQA-Main zeroshot (n=448) | 27.90 ± 2.12 | 27.01 ± 2.10 | +0.89 | +0.30 | noise |
| ARC-Challenge (n=1172) | 34.98 ± 1.39 | 34.22 ± 1.39 | +0.76 | +0.39 | noise |
saidutta69/RaceBench-MiniCPM5 (v1.0) if you want the reasoning-gain checkpoint - with its documented GSM8K cost.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained(
4 "saidutta69/RaceBench-MiniCPM5-v1.1",
5 trust_remote_code=True,
6 torch_dtype="bfloat16",
7)
8tokenizer = AutoTokenizer.from_pretrained("saidutta69/RaceBench-MiniCPM5-v1.1")1@misc{racebench-minicpm5-v11,
2 author = {Sai Dutta},
3 title = {RaceBench-MiniCPM5-v1.1 -- Premium-Agent Ablation Checkpoint},
4 year = {2026},
5 publisher = {Hugging Face},
6 howpublished = {\url{https://huggingface.co/saidutta69/RaceBench-MiniCPM5-v1.1}}
7}