Loading...
Open-weight 428B MoE for coding and agentic work with 1M context, native multimodal input, and computer use
[interactive architecture โ]Founded in 2022 and headquartered in Shanghai, MiniMax is a private Chinese AI lab developing foundation models for text, voice, and video. Its MiniMax M family powers conversational AI products including the Hailuo consumer assistant. The lab competes with Moonshot, Zhipu, and DeepSeek in China's crowded frontier-model market.
more about MiniMax โTake MiniMax M3 apart, layer by layer. The 3D teardown below shows its 60 transformer layers (0 dense + 60 MoE), GQA attention, and expert routing, with values from the public model config.
6144-dim vectors over a large 200K-token vocabulary, sized for broad multilingual coverage.
Pre-norm blocks where each layer's MLP can be dense (12,288 intermediate) or sparse MoE (3,072 intermediate) via a per-layer selector, letting MiniMax trade capacity for speed layer by layer.
GQA (64 query / 4 KV heads) wrapped in a block-sparse scheme: a lightning indexer with 4 index heads and 128-token blocks selects which KV blocks each query attends to, making the 1M context affordable. (Rendered as the GQA block.)
A router scores 128 experts and activates 4 per token, spending ~23B of ~428B. The low active count keeps inference cheap relative to the stored knowledge.
Final RMSNorm then 200K logits. M3 is a native-multimodal model built to use its full 1M context.