The interesting claim in colibri isn’t “744B model on a laptop” — it’s the observation that makes it possible: in a sparse MoE, only ~11 GB of the activated weights actually change from token to token. Keep the dense attention and shared experts resident at int4, leave the 21,504 routed experts on disk, and stream them on demand with an LRU cache and the OS page cache as a free second tier. That’s a memory-hierarchy argument dressed up as an inference engine, and it reframes what “model size” costs you at serving time.

None of this makes disk-streamed inference fast enough for production serving. But the Show HN thread is a good reminder that the expensive part of a giant MoE is mostly cold — and cold weights belong on cheap storage, not in your latency budget.

If routed experts are effectively cold storage, why are we still pricing these models as if every parameter is hot?