Loading...
Open-weight 428B MoE for coding and agentic work with 1M context, native multimodal input, and computer use
Take MiniMax M3 apart, layer by layer. The 3D teardown below shows its 60 transformer layers (3 dense + 57 MoE), GQA attention, and expert routing, with values from the public model config.
Founded in early 2022 and headquartered in Shanghai, MiniMax develops foundation models for text (the M series), video (Hailuo and H3), speech and music; it listed on the Hong Kong Stock Exchange in January 2026 with Alibaba and Tencent among its investors. MiniMax M3 (June 2026) is a 428B open-weight MoE with a 1M-token context, and MiniMax H3 (July 2026) is an open multimodal video model. Its consumer products include the Hailuo video app and the Talkie character app.
more about MiniMax โ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.