CoolFace
Modelpublic

modrill/math-nothink-o7b-20260908

sourceHugging Faceapache-2.0updated 17d agoView on Hugging Face
0likes234downloads
README.md50 linesDownload Raw Back to root
1---2license: apache-2.03base_model: allenai/Olmo-3-1025-7B4library_name: transformers5tags:6  - math7  - sft8  - lora9  - task-vector10  - iclr202711---12 13# math-nothink-o7b-2026090814 15Public freeze of Math NoThink **source expert** θ_s for ICLR 2027 task-vector transfer.16Not a chatbot. Endpoint is the score. Do not promote milestones.17 18`run_id=math_six_arms_train_v3_eot_20260908`. Replaces the private 20260902 src freeze for this v3 EOT recipe; does not overwrite `nothink-src-*-20260902`.19 20## Score (Exact-240)21 22AIME24+25 × seeds 42–45, EvalScope reviews, n=240.23 24| Model | Official /240 |25|---|---:|26| This endpoint | **38** |27| Same-run Base | 24 |28 29τ_s = θ_s − θ_0. θ_0 is `allenai/Olmo-3-1025-7B` rev `996971efdc504b81f0a6caf73a6c92f976254b9c`.30 31## Identity32 33| Field | Value |34|---|---|35| Arm | `O7B-NOTHINK-EP-X` |36| Updates / tokens | 175 / 11,441,234 |37| Recipe | LoRA r64/α128, TPU 65536, 2ep row-matched, seed 42, Qwen tail `151643` / O7B tail `100257`, B-rows both sides [100257] |38| Merged `model.safetensors` sha256 | `7374e4595494492ff9a077251e9bb502c53558e9cbea539a9bb5e361be0ef458` |39| Endpoint adapter sha256 | `f455b0193d3b8065e86b9cd31c5a61f234eaf795c1a60d0d3def1bee0da4aa89` |40 41Root of merged weights is this repo. Endpoint LoRA is in `adapter/`. `MERGE_RECEIPT.json` is the merge audit.42 43## Load44 45```python46from transformers import AutoModelForCausalLM, AutoTokenizer47m = AutoModelForCausalLM.from_pretrained("modrill/math-nothink-o7b-20260908", torch_dtype="bfloat16", device_map="auto")48tok = AutoTokenizer.from_pretrained("modrill/math-nothink-o7b-20260908")49```50