The same network, a different input
numeric▲△△Using the network of I.1.B01 unchanged, compute the forward pass for . Before computing, predict how many hidden units will be switched off, and say what that prediction rests on.
Hint
The first hidden unit’s pre-activation is . Ask what sign that takes when .
Solution
Prediction. The first unit computes , which is positive whenever . Here , so it stays on. The second computes , positive when ; here , so it also stays on. Prediction: no dead units, unlike I.1.B01 where the first died.
Step 1 — pre-activations.
Step 2 — ReLU. Both entries are positive, so ReLU is the identity here:
Step 3 — output.
Answer. , , and no unit is dead — as predicted.
What this shows. The set of active units is a function of the input, not of the weights alone. The same network is, for each input, effectively a different linear map — the one obtained by deleting the dead units. A ReLU network is a piecewise-linear function, and which piece you are on is decided at the input. That observation is the whole of Proposition I.3.P01.