Conceptual
Login

The Forward Pass of a Feedforward Neural Network

A feedforward network transforms an input by alternating affine maps and nonlinear activations: each layer computes a weighted sum z = Wx + b from the previous layer's activations and applies an activation function a = f(z). Learners trace an input through the layers by hand, identify the weights, biases, pre-activations, and activations at each layer, and state which quantities are stored during the forward pass.