Every stalk lands in a tight, similar range. Signal variance stays roughly constant layer to layer โ nothing explodes, nothing vanishes.
๐ฒ He โ the dense forest
Taller than the wheat field, still evenly distributed
std = โ(2 / fan_in) = โ(2/64) โ 0.177
โ
Why it matters
ReLU zeroes out half of every layer's output, so He compensates with roughly double Xavier's variance โ trees grow taller to make up for the half that gets cut down.
๐ด Random Normal (unscaled) โ the wild jungle
Some bonsai, some redwoods breaking through the canopy
std = 1.0 โ not scaled to layer size at all
โ
Why it matters
Ignore fan-in and fan-out and you get chaos: some weights near zero (vanishing), some huge (exploding) โ the ๐ฅ flags mark redwoods breaking the canopy.
๐๏ธ Zero init โ barren land
Nothing grows. Nothing can.
std = 0 โ every weight starts identical
โ
Why it matters
Identical weights get identical gradients โ every neuron in the layer learns the exact same thing forever. Symmetry never breaks.
All four, same soil
Same seed count per field โ only the formula changes