Perceptrons
Unit 4 Navigation
← Appropriate Problems for NN Learning | Next → Multilayer Networks and Backpropagation
4.4 Perceptrons
What Is a Perceptron?
A perceptron is a single computational unit that takes a vector of real-valued inputs x₁, x₂, …, xₙ, computes their weighted sum, and outputs +1 if the sum exceeds a threshold, -1 otherwise.
Output o(x₁, ..., xₙ):
= +1 if w₀ + w₁x₁ + w₂x₂ + ... + wₙxₙ > 0
= -1 otherwise
Each wᵢ is a real-valued weight. The quantity −w₀ is the threshold that the weighted sum must exceed.