Everything K-culture — comebacks to K-beauty, straight to your inboxGet it in your inbox

METAL MEDIA

Motif 3: Technical Report

arXiv:2608.091192026-08-10

A 314-billion-parameter open-weight Mixture-of-Experts model called Motif 3 has been released, activating only 13.2 billion parameters per token

Motif 3 is a Mixture-of-Experts (MoE) language model with 314 billion total parameters but only 13.2 billion activated per token. It was pretrained on about 12.5 trillion tokens using a new attention design called GDLA plus several stability techniques, then fine-tuned through six specialist teacher models and a distillation process into one unified model. Reported results show GDLA reaching lower training loss with fewer tokens than prior attention methods, and the final model performing competitively against leading open-weight models across a broad benchmark suite.

METAL MEDIA explanatory visual

Motif 3 pipeline: architecture design, large-scale pretraining, multi-teacher distillation

Evidence statusMeasured results and planned work

  1. Sparse MoE design314B total parameters, but only 8 of 384 routed experts per layer are used, activating 13.2B parameters per token
  2. GDLA attentionCombines differential (noise-suppressing) attention with compressed latent key-value representations to lower loss and cache cost
  3. Low-precision & long-context training systemMXFP8 computation and window-aware context parallelism enable pretraining on 12.5T tokens with context lengths up to 256K
  4. Seven specialist teachersSix RL-trained specialists (agentic, professional-work, long-context/abstention, math, code-and-science, chat) plus one SFT-trained software-engineering teacher
  5. Multi-teacher On-Policy DistillationMerges the seven teachers' capabilities into a single unified student model
An explanatory diagram made by METAL MEDIA, not a figure supplied by the paper's authors.

What they did

  1. Motif 3 uses fine-grained sparse MoE: out of 384 routed experts per layer, only 8 are selected per token, activating 13.2B of the 314B total parameters.
  2. It introduces Grouped Differential Latent Attention (GDLA), combining a noise-suppressing 'differential attention' mechanism with Multi-head Latent Attention's compressed key-value cache to save memory during inference.
  3. It also adds Expert-Specific PolyNorm (per-expert learned activation coefficients), a modified manifold-constrained hyper-connection (mHC) for multi-stream residual connections, and multi-token prediction (MTP) for stability and inference efficiency.
  4. Pretraining used roughly 12.5 trillion tokens of web, STEM, code, math, multilingual, and domain-specific data, with MXFP8 low-precision computation and window-aware context parallelism enabling training at context lengths up to 256K tokens.
  5. Post-training combined general supervised fine-tuning, six RL-trained specialist teachers, one SFT-trained software-engineering teacher, and Multi-teacher On-Policy Distillation (MOPD) to merge all capabilities into a single model.
Figure 2: Attention training-loss comparison. GDLA achieves lower loss than GDA and MLA and reaches a loss of 3.2 with 9.2% fewer training tokens than MLA.
Figure 2: Attention training-loss comparison. GDLA achieves lower loss than GDA and MLA and reaches a loss of 3.2 with 9.2% fewer training tokens than MLA.
Table 1: Summary of the principal architectural configuration and model dimensions used in Motif 3, including its hybrid attention pattern, fine-grained expert structure, and long-context support.
PropertyConfiguration
Total parametersApproximately 314B
Activated parametersApproximately 13.2B per token
Transformer layers53 (2 dense and 51 MoE)
Hidden dimension4,096
Attention mechanismGrouped Differential Latent Attention with output gating
Attention patternHybrid GDLA (1 full / 3 sliding-window)
Query / KV heads80 / 16
Signal / noise query heads64 / 16
Query-key / Value head dim192 / 128
FFN dimension (dense / expert)12,288 / 1,280
Routed experts384, with top-8 routing
Shared experts1
Expert activationExpert-Specific PolyNorm
Residual architectureModified manifold-constrained hyper-connections
MTP head1 layer for self-speculative decoding
Maximum context length262,144 tokens (256K)
Figure 3: Overall low-precision training recipe. Color encodes numerical precision: teal for MXFP8, blue for BF16, and peach for FP32. Dashed borders mark collectives that cross ranks. Only the row-wise MXFP8 weight is All-Gathered; the column-wise copy required by Dgrad is produced locally by a fused row-to-column transcode kernel. Expert activations are quantized once before EP dispatch, allowing the dispatch itself to use MXFP8. Gradient synchronization exchanges BF16 shards while performing each reduction locally in FP32.
Figure 3: Overall low-precision training recipe. Color encodes numerical precision: teal for MXFP8, blue for BF16, and peach for FP32. Dashed borders mark collectives that cross ranks. Only the row-wise MXFP8 weight is All-Gathered; the column-wise copy required by Dgrad is produced locally by a fused row-to-column transcode kernel. Expert activations are quantized once before EP dispatch, allowing the dispatch itself to use MXFP8. Gradient synchronization exchanges BF16 shards while performing each reduction locally in FP32.
Table 3: Principal expert-health signals monitored during Motif 3 pretraining.
MetricFailure mode indicated
Dispatch min/medianStarvation or a dead expert caused by routing imbalance
Maximum expert-token countConcentrated traffic and possible expert overload
Output-weight min/medianHidden collapse in which an expert receives tokens but its output projection contributes increasingly little
Routed/shared RMS, mean, and maximumDominance of shared experts, routed-expert collapse, or a change in the routed-output distribution
Maximum expert-output cosine similarityFunctional collapse in which nominally distinct experts learn similar representations
Routed and shared abs-max/RMSActivation outliers and early warning signs of numerical instability
Figure 6: MoE component training comparisons from controlled experiments using models with approximately 10 billion parameters. (a) Expert-Specific PolyNorm maintains a higher mean effective rank in the expert gate weights than SwiGLU across layers, indicating a more evenly distributed singular-value spectrum. (b) Decaying router noise reduces the maximum number of tokens assigned to an expert more rapidly and guides the routing distribution toward the median-load regime early in training.
Figure 6: MoE component training comparisons from controlled experiments using models with approximately 10 billion parameters. (a) Expert-Specific PolyNorm maintains a higher mean effective rank in the expert gate weights than SwiGLU across layers, indicating a more evenly distributed singular-value spectrum. (b) Decaying router noise reduces the maximum number of tokens assigned to an expert more rapidly and guides the routing distribution toward the median-load regime early in training.
Table 4: Evaluation results for the Motif 3 pretrained base model. CoT denotes chain-of-thought prompting.
MMLU 5-shotMMLU-Pro 5-shot CoTARC-C 25-shotWinoGrande 5-shotHellaSwag 10-shotPIQA 0-shotGSM8K 8-shot CoTMATH 4-shot CoTHumanEval 0-shotMBPP 3-shot
86.2068.5694.7180.9088.3085.1493.9370.5873.7084.60
(b) Maximum expert load.
(b) Maximum expert load.
Table 5: The seven specialist teachers and their capability coverage.
TeacherCoverage
Agentic tool useInteractive shell and tool environments; multi-step task execution
Professional workOpen-ended occupational deliverables graded by comparison
Software engineeringRepository-level modifications verified through test execution
Long-context reasoning & abstentionRetrieval and synthesis over very long inputs; calibrated abstention
MathematicsCompetition and proof-style problems; symbolic and judged answer checking
Code and scienceProgram synthesis, scientific computing, and physical reasoning
ChatDialogue quality, instruction following, and safety
Figure 7: Mean reward over cumulative RL compute for the six GRPO-trained specialist teachers. The lighter curves show the per-update reward measurements, and the darker curves show their smoothed trends.
Figure 7: Mean reward over cumulative RL compute for the six GRPO-trained specialist teachers. The lighter curves show the per-update reward measurements, and the darker curves show their smoothed trends.
Table 6: Evaluation results for Motif 3. An asterisk (*) indicates that the corresponding result for Motif 3 is evaluated on the public subset only.
BenchmarkMotif 3 314B-A13BMiniMax-3 428B-A23BGLM-5.1 744B-A40BKimi-K2.6 1T-A32BQwen-3.7 MaxDS-v4-Pro 1.6T-A49B
[0pt][0pt] Agentic
GDPval-AA v238.744.437.834.439.040.2
τ2-Bench Telecom94.788.997.795.994.796.2
τ3-Banking35.315.313.623.312.030.1
ITBench-AA51.5∗-40.331.242.538.3
[0pt][0pt] Coding
SWE-bench Verified76.275.076.476.280.477.4
Terminal-Bench 2.174.965.261.865.975.064.0
SciCode40.645.443.853.553.550.0
[0pt][0pt] Reasoning and Knowledge
IMO-AnswerBench83.2-83.881.890.089.8
Apex Shortlist75.5-71.177.444.585.8
GPQA Diamond83.492.986.891.192.488.8
HLE37.039.030.137.541.437.5
CritPt6.63.74.68.011.412.9
AA-Omniscience Accuracy30.116.723.732.631.042.9
AA-Omniscience Non-Hallucination71.681.670.159.574.05.9
[0pt][0pt] Long Context and Instruction Following
AA-LCR72.380.368.076.775.070.0
IFBench78.282.976.376.079.176.5

Findings

  • In controlled experiments with roughly 10-billion-parameter models, GDLA achieved lower training loss than both GDA and MLA, reaching a loss of 3.2 with 9.2% fewer training tokens than MLA.
  • In the same scale of controlled experiments, Expert-Specific PolyNorm maintained a higher effective rank (a measure of how evenly singular values are distributed) in expert gate weights than SwiGLU.
  • Decaying router noise reduced the maximum number of tokens assigned to a single expert more quickly and pushed the routing load distribution toward the median early in training.
  • Across the full evaluation suite, Motif 3 was reported to perform competitively against leading open-weight models, with particularly strong results on long-horizon agentic tasks, mathematical reasoning, scientific knowledge, and hallucination-sensitive evaluation.

Where it can be used

  • The GDLA and stability techniques (mHC scale annealing, expert-balancing methods) can serve as reference designs for teams building or scaling their own MoE architectures.
  • The unified model's coverage of reasoning, coding, tool use, professional document work, and long-context understanding makes it a candidate for teams looking to consolidate multiple capabilities into one deployable model.
  • The low-precision (MXFP8) training recipe and context-parallel strategy for handling sequences up to 256K tokens can inform infrastructure design for training very large or long-context models.

Limits and open work

  • Performance comparisons against other open-weight models rely on leaderboard-reported scores rather than a fully controlled, identical re-evaluation of all models.
  • Key architectural components like GDLA and PolyNorm were validated only in controlled experiments at roughly 10-billion-parameter scale, not through direct ablations on the full 314-billion-parameter model.
  • Some benchmark results for Motif 3 are marked as evaluated only on a public subset, making direct comparison with full benchmark scores of other models imprecise for those entries.
  • Certain post-training components, such as the Korean-focused chat teacher rubric, were designed and validated primarily for Korean-language behavior and may need further generalization checks for broader multilingual use.

Why it matters

This report gives a detailed, large-scale engineering account of how a compact team built and stabilized a 300B+-parameter MoE model, which is valuable as a reference point for teams working on open-weight foundation models. It also documents concrete low-precision and long-context training techniques that other groups can study when scaling their own systems.

Terms in this paper

  • Mixture-of-Experts (MoE) · An architecture where only a subset of many expert sub-networks is used per input, allowing large total capacity with lower per-token compute
  • GDLA · Grouped Differential Latent Attention, this paper's new attention design combining differential (noise-canceling) attention with compressed latent key-value representations
  • MXFP8 · An 8-bit low-precision numerical format used to reduce memory and computation costs
  • MOPD (Multi-teacher On-Policy Distillation) · A distillation method that transfers knowledge from multiple specialist teacher models into one student model
  • GRPO · A reinforcement learning method used to train the specialist teacher models

Original abstract (English)

We introduce Motif 3, a decoder-only Mixture-of-Experts language model with 314 billion total parameters and 13.2 billion activated per token. Each sparse MoE layer contains 384 routed experts, with eight selected per token. This fine-grained sparsity provides substantial expert capacity while limiting computation. Motif 3 is built around Grouped Differential Latent Attention (GDLA), which integrates grouped differential attention with the compressed key-value representation of Multi-head Latent Attention. The architecture further incorporates modified manifold-constrained hyper-connections, Expert Specific PolyNorm activations, and multi-token prediction to improve optimization stability, expert specialization, and inference efficiency. We pretrain Motif 3 on approximately 12.5 trillion tokens spanning web documents, STEM, code, mathematics, multilingual content, and domain-specialized corpora. Expert-balancing and numerical-stabilization techniques support stable training at scale, while selective MXFP8 computation and communication, memory-efficient fused kernels, and window-aware context parallelism enable training with context lengths up to 256K tokens. Our post-training pipeline combines general supervised fine-tuning, six specialist teachers trained with reinforcement learning, a software-engineering teacher trained with supervised fine-tuning, and Multi-teacher On-Policy Distillation. The resulting unified model consolidates complementary capabilities in reasoning, coding, tool use, professional work, long-context understanding, calibrated abstention, and instruction following. Across a broad evaluation suite, Motif 3 demonstrates competitive performance against leading open weight models, including strong results on long-horizon agentic tasks, mathematical reasoning, scientific knowledge, and hallucination-sensitive evaluation.

Authors · Junghwan Lim, Joon Son Chung, Sungmin Lee, Wai Ting Cheung, Gihun Cho, Minsu Ha, Sangho Kang, Beomgyu Kim, Dongseok Kim, Jangwoong Kim, Taehyun Kim, Taewhan Kim, Jeesoo Lee, Jeongdoo Lee, Junhyeok Lee, Dongpin Oh, Hyeyeon Cho, Dahye Choi, Jaeheui Her, Hanbin Jung, Changjin Kang, Minjae Kim, Youngrok Kim, Hyukjin Kweon, Hongjoo Lee, Yeongjae Park, Bokki Ryu

Read on arXiv

Latest papers

All papers →

Latest from METAL MEDIA

Figures: Junghwan Lim et al., arXiv:2608.09119, arxiv-nonexclusive