In 1958 psychologist Frank Rosenblatt built a machine called the Mark I Perceptron â a room-sized device wired with potentiometers that could adjust their own resistance. It was the first hardware implementation of a learning algorithm, and it caused a sensation. The New York Times predicted it would "walk, talk, see, write, reproduce itself, and be conscious of its existence."
The promise was grand, but the actual algorithm is wonderfully simple. A perceptron takes a list of numbers â the inputs â multiplies each by a weight, sums them up, and compares the result to a threshold. If the sum exceeds the threshold, it says "class A"; otherwise "class B." That single comparison is its entire decision.
What makes it special is the learning rule: whenever the perceptron gets an example wrong, it nudges the weights in the direction of the correct answer. Nothing more. And yet Frank Rosenblatt proved â and Novikoff formalized in 1962 â that if the two classes can be separated by a straight line (or hyperplane), this naĂŻve rule will always find that line in a finite number of steps.
That guarantee, the Perceptron Convergence Theorem, was the first rigorous proof that a machine could reliably learn from examples. Every modern neural network is its direct descendant.
Comments
Loading comments...