ConceptioArchivearXiv CS
arXiv CSopen access

Dense vs Sparse Pretraining at Tiny Scale: Active-Parameter vs Total-Parameter Matching

2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
neural-networks
machine learning, deep learning, neural networks

Dense vs Sparse Pretraining at Tiny Scale: Active-Parameter vs Total-Parameter Matching

arXiv:2605.13769v1 [cs.CL] 13 May 2026

Abdalrahman Wael Independent Researcher [email protected]

Abstract We study dense and mixture-of-experts (MoE) transformers in a tiny-scale pretraining regime under a shared LLaMA-style decoder training recipe. The sparse model replaces dense feed-forward blocks with Mixtral-style routed experts. Dense baselines are modestly width-resized to tightly match either active or total parameter budgets, while tokenizer, data, optimizer, schedule, depth, context length, normalization style, and evaluation protocol are held fixed. Our best sparse recipe uses four experts, top-2 routing, Switch-style load balancing, and router z-loss. In a three-seed full-data comparison, the dense active-match model reaches 1.6545 ± 0.0012 best validation loss, the MoE reaches 1.5788 ± 0.0020, and the dense total-match model reaches 1.5608 ± 0.0025. This yields a matchedactive gap of 0.0758 ± 0.0021 in the MoE’s favor and a matched-total gap of 0.0180 ± 0.0020 in the dense model’s favor. Across training, the matched-active advantage grows while the matched-total dense advantage narrows sharply. In this sub-25M-parameter regime, MoE therefore improves validation loss under active-parameter matching but does not surpass dense training at equal total stored capacity.

1

Introduction

Mixture-of-experts (MoE) transformers decouple total parameter count from per-token active capacity: a model can store a larger total capacity while activating only a subset of expert parameters on each token. At large scale, this is often presented as a route to better quality through conditional computation. However, much of the strongest evidence comes from distributed settings where routing behavior, communication cost, and systems design are tightly entangled, making it harder to isolate the modeling contribution itself. This paper asks a simpler empirical question: in a tiny, single-GPU-accessible regime, does replacing dense feed-forward blocks with sparse experts produce a real modeling benefit under controlled budgets? We study this question in a LLaMA-style decoder stack trained on TinyStories. The sparse model replaces dense feed-forward networks with Mixtral-style routed experts. Dense baselines are modestly width-resized to tightly match active or total parameter budgets, while the tokenizer, data pipeline, optimizer, schedule, depth, context length, normalization style, and evaluation protocol are held fixed. Dense-versus-sparse fairness is not unique. In the matched-active comparison, the dense baseline is resized so that its overall active per-token parameter count approximately matches the MoE’s active routed path. In the matched-total comparison, the dense baseline is resized so that its total stored parameter count matches the full MoE. Our central result is straightforward. In the matched-active comparison, the stabilized top-2 MoE clearly outperforms the dense baseline. In the matched-total comparison, the dense baseline remains slightly stronger, but the gap is small and narrows with training. The resulting picture is not that Preprint.

sparse training dominates dense training outright, but that conditional computation is already useful in this tiny-scale regime when fairness is defined against active per-token parameters rather than total stored parameters. The paper also clarifies which ingredients matter for sparse training at this scale. Naive top-1 routing without balancing collapses almost immediately. Adding Switch-style balancing removes that failure mode, and moving from top-1 to top-2 routing produces the main sparse quality gain. Router z-loss mostly improves routing behavior and stability diagnostics rather than serving as the primary source of the final validation gain. We treat this as a controlled empirical study rather than a new architecture paper. The main contribution is to separate matched-active and matched-total conclusions, show that they lead to different dense-versus-sparse rankings, and document that the sparse gain is accompanied by healthy routing diagnostics rather than collapsed or pathological expert usage. In a sub-25M-parameter TinyStories setting, this provides a compact case study of how dense-versus-sparse conclusions change when active-parameter and total-parameter matching are kept distinct.

2

Related Work

Modern sparse expert models build on the conditional-computation framing introduced by sparsely gated MoE layers Shazeer et al. [2017], which emphasized both the potential of expert specialization and the risk that routing can become imbalanced or degenerate. Switch Transformers Fedus et al. [2022] simplified this line with top-1 routing and a lightweight auxiliary balancing objective, showing that sparse models could be trained at very large parameter counts with a relatively simple routing mechanism. ST-MoE Zoph et al. [2022] then focused more directly on sparse-training stability, especially the role of router regularization terms such as the router z-loss. Mixtral Jiang et al. [2024] is the closest architectural reference point for our sparse intervention because the MoE model changes the feed-forward block inside an otherwise standard decoder block. We do not propose a new sparse architecture. Instead, we use a Mixtral-style intervention and compare it against width-resized dense baselines to ask when sparse conditional computation helps at tiny scale and how the answer depends on the fairness criterion. For broader motivation, GLaM Du et al. [2022] and large-scale autoregressive MoE studies Artetxe et al. [2022] support the view that MoEs can improve quality relative to per-token active work, while TinyStories Eldan and Li [2023] provides a deliberately small language-modeling regime suitable for controlled architectural comparisons. We use TinyStories not as a claim about broad downstream transfer, but as a way to isolate dense-versus-sparse pretraining behavior in a setting where small models can still exhibit meaningful language modeling performance. Recent scaling-law work studies MoE behavior through separate parameter and compute axes. Clark et al. Clark et al. [2022] model routed language models using both parameter count and computational requirement, while later work studies MoE granularity, active-parameter count, total-parameter count, sparsity, and training compute at larger scales Krajewski et al. [2024], Abnar et al. [2025], Ludziejewski et al. [2025]. OLMoE Muennighoff et al. [2025] provides large-scale open evidence for dropless MoE training with load balancing, z-loss, and public training artifacts. Recent equalresource studies also show that larger, tuned MoE regimes can outperform dense models under stricter total-parameter and compute constraints Li et al. [2026]. Our study is complementary: it does not derive a new scaling law or architecture, but gives a tiny-scale budget-matched comparison under a shared training recipe, with both matched-active and matched-total dense baselines reported. We treat systems-oriented sparse execution work such as MegaBlocks Gale et al. [2023] as important secondary context rather than a main modeling contribution. Likewise, we use Chinchilla Hoffmann et al. [2022] mainly as background for token-budget and undertraining considerations. The present paper is best read as an empirical fairness and training-dynamics study, not as a cluster-scale systems paper. For contrast with later large-scale sparse-design lines, recent systems-aware MoE work such as DeepSeekMoE Dai et al. [2024] and DeepSeek-V2 DeepSeek-AI [2024] explores more aggressive expert specialization and efficiency tradeoffs at a very different operating scale from the controlled tiny-scale regime studied here.

2

3

Method

We compare dense and sparse models in a decoder-only LLaMA-style training stack with the same tokenizer, dataset, optimizer, schedule, depth, context length, normalization style, and evaluation protocol. The sparse intervention replaces dense FFNs with routed MoE feed-forward modules. The dense baselines are modestly resized for active- or total-parameter matching, so dmodel , query-head count, and attention parameter counts differ across model families. Dense Block

MoE Block

Self-Attention

Self-Attention

Residual + RMSNorm

Residual + RMSNorm

Dense FFN

Router -> Top-2 Experts -> Weighted Sum

Residual + RMSNorm

Residual + RMSNorm

Dense baselines are width-resized for active/total matching; MoE swaps the FFN path. MoE uses 4 experts, top-2 routing, dropless dispatch, Switch balancing, and optional z-loss.

Figure 1: Schematic comparison of a dense FFN block and a routed MoE FFN block. In the headline experiments, all models share the same training recipe and decoder-block style, while dense baselines are width-resized for active- or total-parameter matching. Our main sparse recipe uses four experts, top-2 routing, dropless dispatch, Switch-style load balancing, and optional router z-loss stabilization. We do not use classic Switch-style token dropping or capacity truncation. This keeps the modeling comparison focused on sparse routing behavior rather than on execution-path shortcuts. In a separate appendix-side systems study, we evaluate more optimized grouped and stacked single-GPU dispatch paths, but those analyses are not the basis of the paper’s central modeling claims. The total training objective combines next-token cross-entropy with a load-balancing auxiliary term and, optionally, a router z-loss term: Ltotal = LCE + λbal Lbal + λz Lz . Here LCE is the language-model cross-entropy, Lbal encourages balanced expert usage and prevents immediate routing collapse, and Lz penalizes overly large router logit scale. In the current best sparse recipe, λbal = 10−2 and λz = 10−3 . We evaluate under two fairness criteria. In the matched-active comparison, the dense baseline is resized so that its active parameter count approximately matches the MoE model’s active routed path per token. In the matched-total comparison, the dense baseline is resized so that its total stored parameter count approximately matches the full MoE model. These comparisons answer different questions and should not be conflated. Throughout the paper, active parameters means the shared non-expert parameters plus the dense FFN or top-2 routed expert path exercised per token; router weights are negligible at the displayed precision. We use active parameter count as the primary fairness proxy for per-token routed capacity; we do not claim exact FLOP matching. Under this definition, the three headline configurations are a dense active-match baseline with approximately 14.89M parameters, a top-2 MoE with approximately 21.06M total parameters and 14.77M active parameters, and a dense total-match baseline with approximately 21.06M parameters. The budget matching is tight at this tiny scale: the active-match counts differ by less than 1%, and the total-match counts differ by less than 0.1%. Our primary metrics are held-out validation loss and perplexity. Routing diagnostics are used to show that the sparse gain is not explained by collapsed or pathological routing, while throughput and execution-layout analyses are treated as appendix-side support. Qualitative generations are included only as anecdotal checks and do not replace the main metric story. 3

Token budgets count tokens contributing to the next-token loss. With 512-token windows, each training row contributes 511 prediction targets after shifting the input and target streams by one position.

4

Results

The first result is that tiny-scale MoE does not work naively in this stack. A top-1 MoE without balancing collapses almost immediately, with most layers routing nearly all tokens to a single expert after only a short smoke run. Adding a Switch-style load-balancing auxiliary term removes this immediate failure mode and produces meaningfully spread expert fractions across layers. Once routing is stabilized, top-2 routing provides the main sparse quality gain over top-1. Router z-loss then acts primarily as a behavior-shaping refinement: it reduces router log-z and moderates later-layer sharpness, but it is not the main reason the sparse model works. Table 1: Diagnostic recipe-selection runs, not a fully budget-matched ablation sweep. Losses should only be compared directly within the same 40.5M-token setting; smoke runs are included to document routing failure and stabilization behavior. Validation loss is pure next-token cross-entropy. Variant Top-1 MoE Top-1 MoE Top-1 MoE Top-2 MoE Top-2 MoE

Budget

Balance

z-loss

Result

100-step smoke 1.64M tokens 40.5M tokens 40.5M tokens 40.5M tokens

no yes yes yes yes

no no no no yes

Collapsed routing; most layers routed nearly all tokens to one expert. Stable smoke run, val 5.3775, max busiest expert fraction 0.45. Stable longer run, final val 2.1981. Final val 2.1618; main sparse quality gain over top-1. Final val 2.1619; similar loss, lower router log-z and milder sharpness.

The headline comparison is the completed three-seed full-data study across the dense active-match baseline, the stabilized top-2 MoE, and the dense total-match baseline. The ordering is stable across all three seeds. The dense active-match model reaches 1.6545 ± 0.0012 best validation loss, the MoE reaches 1.5788 ± 0.0020, and the dense total-match model reaches 1.5608 ± 0.0025. In perplexity terms, this corresponds to 5.231 ± 0.006, 4.849 ± 0.010, and 4.763 ± 0.012, respectively. Table 2: Headline three-seed full-data result, reported as mean ± standard deviation over seeds using the best validation loss from each run. The MoE clearly beats the matched-active dense baseline, while the dense total-match baseline remains slightly stronger in absolute terms. Model

Total Params

Active Params

Val Loss

PPL

Dense active-match MoE top-2 + z-loss Dense total-match

≈14.89M ≈21.06M ≈21.06M

≈14.89M ≈14.77M ≈21.06M

1.6545 ± 0.0012 1.5788 ± 0.0020 1.5608 ± 0.0025

5.231 ± 0.006 4.849 ± 0.010 4.763 ± 0.012

These numbers imply a matched-active gap of 0.0758±0.0021 in the MoE’s favor and a matched-total gap of 0.0180 ± 0.0020 in the dense model’s favor. This is the core empirical picture of the paper: sparse training gives a clear gain when fairness is defined by active per-token capacity, while dense training remains slightly stronger when given the same total stored parameter budget. The curve-level evidence sharpens that picture. Across training budgets from 40.5M to 426.3M tokens contributing to next-token loss, the matched-active advantage grows while the matched-total dense advantage narrows sharply. The sparse model consistently sits between the two dense baselines: it is better than the equal-active dense model but still slightly worse than the equal-total dense model. This pattern is exactly what one would expect if MoE’s main value in this regime is conditional use of additional stored parameters rather than absolute total-capacity superiority. Routing diagnostics support the interpretation that the sparse gain is not coming from degenerate or collapsed routing. To test whether the sparse gain arises from stable routing rather than collapse, we report compact routing diagnostics covering busiest-expert fraction, expert-usage variance, entropy by layer, and router log-z by layer. Healthy diagnostics across these views strengthen the claim that the sparse improvement reflects a real modeling gain under the matched-active comparison rather than a pathological routing artifact.

4

Full training trajectory (log y-scale)

4 × 10

Late-training zoom 1.725

Dense Active-Match MoE Top-2 + z Dense Total-Match

1.700

0

Validation Loss

Validation Loss

6 × 100

3 × 100

1.675 1.650 1.625 1.600

2 × 100

1.575 1.550 0

100

200

300

400

225

Loss-Contributing Tokens (Millions)

250

275

300

325

350

375

400

425

Loss-Contributing Tokens (Millions)

Figure 2: Validation loss versus tokens contributing to next-token loss for the three headline models on full TinyStories, with each curve showing the mean over three seeds and the shaded region showing ±1 standard deviation. The MoE consistently outperforms the matched-active dense baseline, while the matched-total dense baseline remains slightly stronger in absolute validation loss. Full training trajectory 1.0 0.8 0.6

Validation-Loss Gap

Validation-Loss Gap

Late-training zoom 0.08

Matched-active gap: dense active minus MoE Matched-total gap: MoE minus dense total

0.4 0.2 0.0 −0.2

0.06

0.04

0.02

−0.4 0.00

−0.6 0

100

200

300

400

100

Loss-Contributing Tokens (Millions)

150

200

250

300

350

400

Loss-Contributing Tokens (Millions)

Figure 3: Validation-loss gap over training for the two fairness comparisons, again using three-seed means with shaded ±1 standard deviation. The matched-active gap (dense active minus MoE) grows in the MoE’s favor with training, while the matched-total gap (MoE minus dense total) shrinks substantially but remains positive. Qualitative generations are anecdotal support only. We do not report judge-based sample-quality scores because calibration was not reliable enough to strengthen the paper.

5

Busiest Expert Fraction 0.29

Expert-Usage Variance

Layer 0

Layer 2

Layer 1

Layer 3

0.0008

0.28 0.0006 0.27

0.0004

0.26

0.25

0.0002 0.0000 0

100

200

300

400

0

100

200

300

Loss-Contributing Tokens (Millions)

Loss-Contributing Tokens (Millions)

Router Entropy by Layer

Mean log z by Layer

1.3

400

0.6

1.2 0.4 1.1 0.2 1.0 0

100

200

300

0.0

400

Loss-Contributing Tokens (Millions)

0

100

200

300

400

Loss-Contributing Tokens (Millions)

Figure 4: Routing diagnostics for the full-data MoE run, showing busiest-expert fraction, expert-usage variance, router entropy, and mean log-z over training. Expert loads remain balanced while deeper layers become more selective, indicating that the sparse gain is achieved in a stable routing regime rather than through collapse or pathological imbalance.

5

Limitations

This study is intentionally narrow. It focuses on TinyStories, a tiny-scale decoder-only training regime, and a budget-matched dense-versus-sparse comparison rather than an iso-width backbone swap. The sparse model changes the feed-forward sublayer, while the dense baselines are modestly width-resized to hit the active- and total-parameter budgets. We therefore do not claim that the observed matched-active advantage or matched-total near-parity automatically extends to broader corpora, larger parameter regimes, or downstream transfer settings. We also do not claim a wall-clock sparse-training win from the main modeling experiments. Systemsoriented throughput analyses, including grouped and stacked dispatch variants, are reported in the appendix as useful context, but the central claims of the paper come from the canonical denseversus-sparse training runs rather than from optimized sparse kernels or deployment measurements. Likewise, we do not claim that the sparse model overtakes dense training at matched total parameters; the evidence supports narrowing, not crossover. Finally, the paper presents evidence consistent with dormant-capacity use under conditional computation, but not a causal proof of that mechanism. The main contribution is a controlled mapping of how dense-versus-sparse conclusions depend on the fairness criterion in a tiny-scale regime.

6

Conclusion

We presented a controlled tiny-scale study of dense and mixture-of-experts transformers in a LLaMAstyle pretraining stack. Routed feed-forward experts produced a stable and competitive sparse model only after explicit routing regularization: naive routing collapsed, Switch-style balancing stabilized training, top-2 routing gave the main sparse quality gain, and router z-loss mainly improved router behavior. The core result is that the fairness criterion changes the answer. At matched active parameters, sparse MoE consistently outperforms the dense baseline; at matched total parameters, dense remains slightly stronger. Across token budgets, the matched-active advantage grows and the matched-total dense advantage narrows, suggesting an active-parameter-matched conditional-capacity advantage rather than a raw total-capacity advantage. 6

A

Appendix Overview

This appendix collects secondary but useful supporting material: a per-seed breakdown of the full-data result, compact routing diagnostics, single-GPU throughput context for alternative sparse dispatch paths, qualitative notes, and brief reproducibility notes. A.1

Reproducibility Details

Table 3: Architecture details for the headline full-data runs. Dense baselines are modestly widthresized for tight active- or total-parameter matching. Item

Details

Base architecture

Decoder-only LLaMA-style stack with RoPE, RMSNorm (ϵ = 10−5 ), SwiGLU FFNs, GQA, tied input/output embeddings, no linear biases. 4 layers, context length 512, dropout 0.1 for attention output and FFN paths, PyTorch SDPA attention, AMP enabled on CUDA. dmodel = 320, 10 query heads, 2 KV heads, FFN hidden size 1120. dmodel = 256, 4 query heads, 2 KV heads, 4 experts, expert hidden size 1024, top-2 token-choice routing, dropless dispatch. dmodel = 384, 6 query heads, 2 KV heads, FFN hidden size 1728. LCE + 10−2 Lbal + 10−3 Lz ; dense runs use LCE only.

Common run settings Dense active-match MoE top-2 + z-loss Dense total-match MoE objective

Table 4: Training and data details for the headline full-data runs. The same tokenizer, data shards, optimizer, schedule, evaluation code, and seed list are used across the three model families unless noted. Item

Details

Optimizer/schedule

AdamW, betas (0.9, 0.95), weight decay 0.1, max LR 3×10−4 , min LR 3×10−5 , 3% warmup then cosine decay. Batch size 16, gradient accumulation 2, 26,073 optimizer steps for full-data runs, gradient clipping 1.0. TinyStories train split, SentencePiece BPE vocabulary 30,008, fixed nonoverlapping 512-token windows, 95/5 train/val split with sharding seed 1337. 834,322 train windows and 43,934 validation windows; 426.3M train tokens and 22.5M validation tokens contribute to next-token loss. Evaluation every 250 optimizer steps plus epoch end; headline values use best validation loss per run. 1337, 1338, 1339; seeds control Python, NumPy, PyTorch, data-loader shuffling, and model initialization. Single local NVIDIA RTX 3060 12GB GPU; full-data training runs took roughly 8.8–9.6 hours per model including evaluation overhead.

Batching Data/tokenizer Token counts Eval/checkpointing Seeds Hardware

Table 5: Parameter accounting used for the fairness comparisons. Active parameters include shared non-expert parameters plus the dense or routed top-2 FFN path exercised per token; router weights are below the displayed rounding. Model Dense active-match MoE top-2 + z-loss Dense total-match

Embedding

Non-FFN Blocks

FFN/Expert Total

Total / Active

9.60M 7.68M 11.52M

0.99M 0.79M 1.58M

4.30M 12.58M 7.96M

14.89M / 14.89M 21.06M / 14.77M 21.06M / 21.06M

7

A.2

Per-Seed Full-Data Breakdown

Table 6: Per-seed full-data validation losses for the three headline models. The gap sizes are close across seeds, which argues against the main result being a lucky-seed artifact.

A.3

Seed

Dense Active

MoE Top-2 + z

Dense Total

Active Gap

Total Gap

1337 1338 1339

1.6554 1.6532 1.6551

1.5774 1.5779 1.5811

1.5615 1.5580 1.5629

0.0780 0.0753 0.0740

0.0159 0.0199 0.0183

Routing Diagnostics

Table 7: Illustrative routing diagnostics from the 150M-token run. Early layers remain more diffuse while later layers become more selective, consistent with stable specialization rather than collapse. Layer

Entropy

Gate

Top1–Top2 Margin

Logz Trend

L0 L1 L2 L3

1.243 1.127 0.938 0.940

0.443 0.533 0.644 0.645

0.175 0.289 0.441 0.451

0.623 → 0.094 0.373 → 0.057 0.403 → 0.038 0.348 → 0.073

Busiest Expert Fraction 0.29

Expert-Usage Variance

Layer 0

Layer 2

Layer 1

Layer 3

0.0008

0.28 0.0006 0.27

0.0004

0.26

0.25

0.0002 0.0000 0

100

200

300

400

0

100

200

300

Loss-Contributing Tokens (Millions)

Loss-Contributing Tokens (Millions)

Router Entropy by Layer

Mean log z by Layer

1.3

400

0.6

1.2 0.4 1.1 0.2 1.0 0

100

200

300

0.0

400

Loss-Contributing Tokens (Millions)

0

100

200

300

400

Loss-Contributing Tokens (Millions)

Figure 5: Routing diagnostics for the full-data MoE run. Expert loads remain balanced while deeper layers become more selective, indicating that the sparse gain is achieved in a stable routing regime rather than through collapse or pathological imbalance.

8

A.4

Single-GPU Throughput Context

Table 8: Single-GPU training throughput context. Optimized grouped and stacked dropless dispatch materially improve sparse throughput relative to the original naive path, but the main paper’s core claim remains modeling rather than an end-to-end wall-clock win. Config

Training Throughput

Source

MoE naive MoE grouped MoE stacked Dense active-match MoE top-2 + z-loss Dense total-match

42.8k–48.4k tok/s 54.4k–57.6k tok/s 61.0k–61.7k tok/s 58.1 ± 0.1k tok/s 54.7 ± 0.4k tok/s 59.3 ± 1.2k tok/s

parity/throughput notes trainer probes supplementary measurement three full seeds three full seeds three full seeds

Training Throughput

Throughput (k tok/s)

62

Cached Decode Throughput dense active-match

357.1

60 stacked

261.3

grouped decode-small fast path

257.6

58 56 54

grouped inference-fast

52 Naive Grouped Stacked

50 0.50

0.75

1.00

1.25

220.3

grouped first path

1.50

149.6

0

Train-Loss Tokens (Millions)

100

200

300

tok/s

Figure 6: Single-GPU sparse throughput under naive, grouped, and stacked dispatch. Grouped and stacked dispatch materially improve sparse throughput, and these results are included as appendixside context rather than the basis of the main modeling claim. A.5

Qualitative Notes

Qualitative generations broadly line up with the metric ordering, but they remain anecdotal. The dense total-match model is usually the strongest absolute model, the dense active-match model is the weakest, and the MoE model typically falls between them. We do not report judge-based sample-quality scores because the current judge calibration was not reliable enough to strengthen the paper. A.6

Reproducibility Notes

The main seeded results come from the canonical three-seed full-data runs used throughout the paper. The corresponding configs, logs, and exported metrics were maintained for analysis and figure generation during the study. The paper’s central modeling claims are based on those canonical runs, while throughput and dispatch comparisons remain secondary appendix-side context.

9

References Samira Abnar, Harshay Shah, Dan Busbridge, Alaaeldin Mohamed Elnouby Ali, Josh Susskind, and Vimal Thilak. Parameters vs FLOPs: Scaling laws for optimal sparsity for mixture-of-experts language models. arXiv preprint arXiv:2501.12370, 2025. Mikel Artetxe, Shruti Bhosale, Naman Goyal, Todor Mihaylov, Myle Ott, et al. Efficient large scale language modeling with mixtures of experts. Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing, 2022. Aidan Clark, Diego de las Casas, Aurelia Guy, Arthur Mensch, Michela Paganini, Jordan Hoffmann, et al. Unified scaling laws for routed language models. In Proceedings of the 39th International Conference on Machine Learning, pages 4057–4086, 2022. Damai Dai, Wenbin Li, Nuo Xu, et al. DeepSeekMoE: Towards ultimate expert specialization in mixture-of-experts language models. arXiv preprint arXiv:2401.06066, 2024. DeepSeek-AI. DeepSeek-V2: A strong, economical, and efficient mixture-of-experts language model. arXiv preprint arXiv:2405.04434, 2024. Nan Du, Yanping Huang, Andrew Dai, et al. GLaM: Efficient scaling of language models with mixture-of-experts. Proceedings of the International Conference on Machine Learning, 2022. Ronen Eldan and Yuanzhi Li. TinyStories: How small can language models be and still speak coherent english? arXiv preprint arXiv:2305.07759, 2023. William Fedus, Barret Zoph, and Noam Shazeer. Switch transformers: Scaling to trillion parameter models with simple and efficient sparsity. Journal of Machine Learning Research, 23(120):1–39, 2022. Trevor Gale, Deepak Narayanan, Cliff Young, et al. Megablocks: Efficient sparse training with mixture-of-experts. Proceedings of Machine Learning and Systems, 2023. Jordan Hoffmann, Sebastian Borgeaud, Arthur Mensch, et al. Training compute-optimal large language models. arXiv preprint arXiv:2203.15556, 2022. Albert Q Jiang, Alexandre Sablayrolles, Arthur Roux, et al. Mixtral of experts. arXiv preprint arXiv:2401.04088, 2024. Jakub Krajewski, Jan Ludziejewski, Kamil Adamczewski, Maciej Pióro, Michał Krutul, et al. Scaling laws for fine-grained mixture of experts. arXiv preprint arXiv:2402.07871, 2024. Houyi Li, Ka Man Lo, Shijie Xuyang, Ziqi Wang, Wenzhen Zheng, et al. Mixture-of-experts can surpass dense LLMs under strictly equal resource. In International Conference on Learning Representations, 2026. Jan Ludziejewski, Maciej Pióro, Jakub Krajewski, Maciej Stefaniak, Michał Krutul, et al. Joint MoE scaling laws: Mixture of experts can be memory efficient. arXiv preprint arXiv:2502.05172, 2025. Niklas Muennighoff, Luca Soldaini, Dirk Groeneveld, Kyle Lo, Jacob Morrison, et al. OLMoE: Open mixture-of-experts language models. In International Conference on Learning Representations, 2025. arXiv:2409.02060. Noam Shazeer, Azalia Mirhoseini, Krzysztof Maziarz, Andy Davis, Quoc Le, Geoffrey Hinton, and Jeff Dean. Outrageously large neural networks: The sparsely-gated mixture-of-experts layer. arXiv preprint arXiv:1701.06538, 2017. Barret Zoph, William Fedus, Denny Zhou, et al. ST-MoE: Designing stable and transferable sparse expert models. arXiv preprint arXiv:2202.08906, 2022.

10

Record · ID 180655 · SHA-256 17e7c2e5386d218c
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.