logoalt Hacker News

yonatan8070yesterday at 7:19 PM2 repliesview on HN

Speaking as someone who isn't really well versed in this, does 18B active parameters mean that you could potentially hold only the 18B parameters in RAM and stream the rest from a fast NVMe SSD for acceptable performance similar to how Colibri works?

https://github.com/JustVugg/colibri


Replies

Alpha3031yesterday at 10:25 PM

Normal MoE is switch-weights-per-token so you would se substantial slowdowns that way. Apple did a More that switches weights per prompt (instruction-following pruning, https://arxiv.org/abs/2501.02086) but you have to design the model that way which I don't think the have.

Wheenyesterday at 7:32 PM

Sorta, but you're off by one layer. You can store the 18B in VRAM and stream the rest from RAM. There's still a performance hit relative to storing it all in VRAM, but it's tolerable.

Generally, for local consumer use, these large MOE models are best for unified RAM systems like DGX Spark or Mac Studio.