Step through a residual (skip) connection — watch the input bypass a sublayer and add directly to its output, enabling very deep networks.
Skip Connection
A residual connection computes output = F(x) + x, letting gradients flow directly to early layers without passing through F. This solves vanishing gradients in deep networks.