Views
No views yet
n=100)| Metric | Score |
|---|---|
| AIME 2024 accuracy / empirical pass@1 | 35.42% |
| AIME 2024 pass@8 | 63.33% |
| AIME 2025 accuracy / empirical pass@1 | 28.75% |
| AIME 2025 pass@8 | 46.67% |
| MATH-500 thinking | 88.20% |
| MATH-500 no-thinking | 64.40% |
| GSM8K strict | 58.68% |
| MMLU 5-shot | 53.64% |
| NIAH multikey 16K | 97.00% |
| NIAH multikey 32K | 85.00% |
full_eval/.
Generation dumps and optimizer/trainer recovery state are intentionally omitted.auto_map are bundled, so the
checkpoint can be loaded without access to the private training repository:1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4repo = "arianraje/mimo-7b-gdn-hybrid-200M-OPD"
5tokenizer = AutoTokenizer.from_pretrained(repo)
6model = AutoModelForCausalLM.from_pretrained(
7 repo,
8 trust_remote_code=True,
9 torch_dtype=torch.bfloat16,
10 device_map="auto",
11)requirements.txt. For vLLM 0.11.2, download
the repository snapshot, put it on sys.path, call
vllm_mimo_gdn.register(), then construct vllm.LLM from that snapshot.