Step through the perceptron — the simplest neural network unit — computing a weighted sum and applying a threshold to classify inputs.
Linear Threshold Unit
The perceptron computes z = w·x + b, then outputs 1 if z > 0, else 0. It can learn any linearly separable function and is the building block of every neural network.