Date: July 2026
Scope: Learning Paradigms, Foundation Models, AI Safety & Interpretability
Audience: ML researchers with strong fundamentals
RLHF typically proceeds in three stages: supervised fine-tuning (SFT), reward model (RM) training from human preferences, and policy optimization (often PPO) against the learned reward. The reward model takes a prompt+response pair and outputs a scalar reward, trained via a Bradley-Terry preference model.
Key challenge: Reward overoptimization. The policy exploits the learned RM in ways that do not reflect true human preferences. Gao et al. (2023, arxiv:2210.10760) showed the gap between RM reward and true reward grows as a power law in KL divergence.
PPO constrains policy updates via a clipped surrogate objective. In RLHF, PPO is applied as a bandit problem with a KL penalty from the SFT model. Open debate: Whether clipping is necessary or simpler KL-regularized reward maximization suffices (Ramanurthy et al., 2022, arxiv:2210.01241).
Eliminates the explicit reward model by reparameterizing the RLHF objective in terms of the policy. Key insight: Under Bradley-Terry, the optimal reward is a log-ratio of policies, so the policy implicitly represents the reward.
Extensions: IPO (Azar et al., 2024, arxiv:2310.12024), KTO (Ethayarajh et al., 2024, arxiv:2402.01306), Iterative DPO (Xiong et al., 2024, arxiv:2312.11456), TIS-DPO (Liu et al., 2024, arxiv:2410.04350).
Used in DeepSeek-R1 (2025, arxiv:2501.12948). Eliminates the need for separate RM and reference model. Groups multiple sampled completions per prompt, computes advantages within the group, updates policy without a critic network. Recent variants: Scaf-GRPO (arxiv:2510.19807), MO-GRPO (arxiv:2509.22047), CoDistill-GRPO (arxiv:2605.08873), N-GRPO (arxiv:2606.10768).
Replaces human preference labelling with AI-generated feedback guided by a written constitution. Two phases: supervised revision + RL from AI feedback. Extended to self-rewarding (Yuan et al., 2024, arxiv:2401.10020).
Key methods: DPO (policy=implicit reward), IPO (direct regression on odds), KTO (prospect-theoretic, no pairs), ORPO, SimPO. No consensus on which is superior across settings.
Learns an initialization for fast adaptation via few gradient steps. Differentiates through inner gradient descent (second-order). FOMAML often works nearly as well.
First-order: updates initialization toward post-adaptation parameters without inner-loop differentiation.
Model-based (memory-augmented), Metric-based (Prototypical Networks, Matching Networks), Optimization-based (MAML, Reptile, LEO).
Too few inner steps = high bias; too many = high variance (meta-overfitting). Formalized by Chen et al. (2019), Bai et al. (2021).
Current frontier: Increasingly absorbed into LLM ICL paradigm. Still important for robotics, drug discovery.
Sequential training overwrites prior knowledge due to shared representational capacity.
Quadratic penalty on Fisher-diagonal-weighted parameters. Diagonal approximation misses off-diagonal interactions.
New column per task; prior columns frozen. Solves forgetting at linear parameter cost. Influenced adapters/LoRA.
Online importance estimation without task boundaries.
Inherent tension between retaining old knowledge and integrating new information.
Replay: Experience Replay (simplest, most effective), Generative Replay (diffusion), Dark Experience Replay. Regularization: Weight (EWC, SI, MAS), Functional (LwF, KD), Representation (contrastive).
Current frontier: LLM continual learning via LoRA, activation steering, knowledge editing. Task boundary problem unsolved.
For linear models, ICL = ridge regression or gradient descent. Non-linear picture incomplete.
Prefix-matching heads: find previous token occurrences, attend to following token. Appear spontaneously at scale threshold (phase change), explaining ICL emergence. Compose from previous-token head + pairing mechanism.
Function vectors (Todd et al., 2023, arxiv:2310.15213), error correction mechanisms, task-specific attention patterns.
Current debate: ICL as learning vs. pattern retrieval. Both mechanisms operate at different complexity levels.
Cross-entropy loss scales as power law with compute, data, and parameters. Optimal allocation: N_opt ~ C^0.71, D_opt ~ C^0.28. No plateauing across seven orders of magnitude.
Revised optimal allocation: N_opt ~ C^0.5, D_opt ~ C^0.5. Models should be smaller but trained on more data. Chinchilla 70B matched GPT-3 175B with 4x less compute. Discrepancy with Kaplan arises from methodology.
Subsequent: Llama 3 suggests compute-optimal ratio shifts at very large budgets. Data quality vs. quantity scaling is frontier. Multi-modal scaling laws actively studied (Cherti et al., 2023, arxiv:2307.13223).
CoT prompting adds intermediate reasoning steps, improving arithmetic, commonsense, and symbolic reasoning. Key questions: Why does it work? (externalizes working memory). Is reasoning faithful? (often post-hoc rationalization). Variants: Zero-shot CoT, Self-consistency, Complexity-based prompting.
Extends CoT to tree search with heuristic evaluation. Connection to classical AI (Newell & Simon). Best on verifiable puzzles.
Open debate: Does extended reasoning generalize beyond math/code? Scale vs. architecture innovation.
Sparsely-activated expert modules with noisy top-k gating, load balancing loss, capacity factor. Inherent load imbalance.
MoE + automatic sharding across TPU pods. Expert parallelism with all-to-all. 600B parameter translation model.
Top-1 routing, up to 1.6T params (2048 experts), 7x speedup over dense.
Experts select tokens instead. Perfect load balance, no capacity factor. Dropped tokens via residual.
Mixtral 8x7B/8x22B, DeepSeek-V2/V3, Gemini, Llama 4.
Open directions: Expert specialization vs. redundancy, dynamic allocation, routing-aware LoRA, expert merging.
Alignment tax: Capability degradation during RLHF/alignment. Causes: KL constraint, reward over-optimization, preference bias, mode collapse. Evidence in InstructGPT, Claude, Llama 2. Mitigated by rejection sampling, mixed training, multi-objective RLHF.
Post-Training Pipeline (Llama 3, 2024, arxiv:2407.21783): SFT -> RLHF/DPO -> rejection sampling -> multistage training -> data iteration.
Open debate: Is alignment tax inevitable or suboptimal methodology? Evidence suggests it can be nearly eliminated.
Architectures: Connector-based (CLIP + LLM), Fusion-based (cross-attention), Unified (joint training). Key models: GPT-4V/o, Gemini, Claude 3 Vision, LLaVA family, Idefics2, Qwen-VL, InternVL.
Challenges: Resolution/detail loss, alignment without forgetting, saturating benchmarks.
Scaling: Similar power-law scaling to text-only (Cherti et al., 2023). Compute-optimal allocation across modalities unknown.