A learned control system that selectively regulates information flow through a neural network.
Title: Gating mechanism
A gating mechanism is a learned, differentiable control structure within a neural network that determines how much information passes between computational units at each step. Instead of allowing all signals to flow freely, gates apply sigmoid or similar activation functions to produce values between 0 and 1, which act as soft switches. These switches suppress, amplify, or blend signals based on the current input and the network's internal state. This selective routing lets the network decide what to remember, what to discard, and what to update, giving it more expressiveness than architectures with fixed, uncontrolled information pathways.
Gating mechanisms became central to machine learning with the introduction of Long Short-Term Memory (LSTM) networks by Sepp Hochreiter and Jürgen Schmidhuber in 1997. LSTMs use three gates: input, forget, and output. They manage a persistent cell state across time steps and directly address the vanishing gradient problem that had made earlier recurrent networks difficult to train on long sequences. Gated Recurrent Units (GRUs), introduced in 2014, reduced this design to two gates while retaining much of the performance, showing that the gating principle transferred across architectures.
Gating ideas have also spread through other parts of deep learning. Highway networks and residual connections use gating-like mechanisms to control gradient flow in very deep feedforward architectures. Mixture-of-experts models use learned gates to route inputs to specialized subnetworks. Attention mechanisms in Transformers can be viewed through a gating lens as well, since softmax-weighted sums selectively emphasize relevant context. These examples show how general the gating principle is for selective information routing in learned systems.
The practical effects of gating mechanisms are large. They made it possible to train deep sequential models reliably, which led to advances in machine translation, speech recognition, language modeling, and time-series forecasting through the 2010s. By giving networks a way to manage memory and context, gating mechanisms turned recurrent architectures from tools that worked in theory but failed in practice into widely used components of applied AI.
Wikipedia
Signals turns a topic into a sourced research record you can inspect and rerun. Your first scan is free, and this one starts with Gating Mechanism already loaded, so edit it or scan as is.