ch 05 / 12Deep learning foundations
slide 01 / 11
1958 · Rosenblatt

The perceptron

Inputs xix_i are multiplied by weights wiw_i, summed with a bias bb, and passed through an activation:

y=σ ⁣(i=1nwixi+b)y = \sigma\!\Big(\sum_{i=1}^{n} w_i x_i + b\Big)
  • · Inputs xix_i — the features.
  • · Weights wiw_i — what the neuron learns.
  • · Bias bb — shifts the boundary.
  • · Activation σ\sigma — non-linear squash.
x₁x₂x₃w₁w₂w₃1bΣz = Σ wᵢ xᵢ + bzσactivationyoutputinputs
one neuron · y = σ(Σ wᵢ xᵢ + b)