Reputation: 483
Excuse my nubish question but:
Imagine I have a Neural Network with 3 Layers. If all Neurons in the 2nd Layer compute the very same function: σ[Σ(wi*xi) + b] Doesn't that mean that all neurons in that layer compute the same result?
Upvotes: 0
Views: 142
Reputation: 362
No, because each neuron has different weights. w
and b
are different for each neuron.
Upvotes: 1