The foundational MoE paper — the core ideas now in DeepSeek, Mixtral, and others.
Many “expert” networks plus a gating network that routes each input to a few (typically 1-2). Enormous total capacity, fractional active compute. Introduces noisy top-k gating and load-balancing losses to handle the hard parts.
Key takeaway: MoE = many specialists + a router. More capacity without proportional compute — the basis of modern efficient models.
MoE applied outside language — scientific computing for partial differential equations (NeurIPS 2025).
Routes different PDE types (heat, wave, fluid) to specialized experts (4 of 16 routed + 2 shared per layer), so one pre-trained model handles heterogeneous equations and fine-tunes per family. ~40% lower zero-shot error at fewer active parameters.
Key takeaway: MoE is a general architectural principle, not just for language — capacity scaling plus specialization.
Understanding training-data composition is critical — “data is the new oil” for LLMs.
825GB from 22 diverse sources (papers, code, books, web, legal, patents). The key result: source diversity beats scaling up a single source like Common Crawl. Documents construction, deduplication, and per-source filtering.
Key takeaway: Training data should be diverse across domains — composition directly shapes what a model learns.
A broad survey of the full landscape — good for filling gaps.
Connects deep-learning fundamentals (layers, training loops, loss functions), the RNN → Transformer → LLM evolution, and AutoML (architecture search, HPO, feature engineering) into one narrative. Broad rather than deep.
Key takeaway: A good “zoom out” if you want to see how the individual techniques fit together.
#31
Recent Advances in Optimization Methods for ML
2025Covers the optimizer landscape (SGD, Adam, AdamW) that underpins all training.
From SGD to adaptive methods like Adam (per-parameter step sizes from gradient history) and AdamW (fixes Adam's weight-decay bug), plus learning-rate schedules and warmup. The optimizer/LR choice can decide whether training converges or diverges.
Key takeaway: Optimizers update the weights. Adam/AdamW is standard, but choice and tuning materially affect training success.
Introduced Multi-head Latent Attention (MLA), which slashes the KV-cache bottleneck — still used downstream.
MLA compresses the key/value matrices into a small latent space during pre-training and decompresses to compute attention, massively reducing the KV cache in large autoregressive models — a core efficiency primitive reused in later architectures.
Key takeaway: MLA attacks the KV-cache bottleneck — a foundational efficiency idea for long-context inference.
Kimi Delta Attention (KDA) — a linear-attention design that beats full attention across short, long, and RL regimes.
A layerwise hybrid pairing three KDA layers with one MLA layer. KDA extends Gated DeltaNet with fine-grained channel-wise gating, selectively “forgetting” irrelevant memory for fast decoding and ~75% less KV-cache memory at 1M context.
Key takeaway: Fine-grained gated linear attention can outperform full attention while slashing memory — a live frontier direction.
~3-bit KV cache (6× less memory, faster attention) via vector quantization — the KV-efficiency frontier.
Two stages: PolarQuant rotates each key/value vector so its coordinates look Gaussian and quantize cleanly, then a 1-bit Quantized Johnson-Lindenstrauss (QJL) transform corrects the residual error. Big memory wins at near-zero accuracy loss.
Key takeaway: Quantization + a JL error-corrector compresses the KV cache hard — part of the multi-year push on KV efficiency.
A million-token-context MoE that stays cheap — the payoff of the whole KV-efficiency line of work.
Combines Compressed Sparse Attention (CSA, ~4× KV compression + top-k block selection) with Heavily Compressed Attention (HCA). At 1M tokens, V4-Pro needs ~27% of the per-token FLOPs and ~10% of the KV cache of DeepSeek-V3.2.
Key takeaway: Hybrid compressed-attention makes million-token context practical by trading granular detail for scale.