Zenaique
Glossary · Architecture

Layer Normalization

Also known as: LayerNorm, RMSNorm

Per-sample, per-position normalization. The glue that keeps transformer training stable.

A normalization technique that rescales activations within a single sample across the feature dimension. Stabilizes transformer training. Modern variants like RMSNorm drop the mean-subtraction step for ~10% speedup.

In practice

Critical for understanding training stability. Senior interviews probe pre-norm vs post-norm and why LLaMA uses RMSNorm.

Related topics

Questions that mention this term

Related terms