1957
The Perceptron
Frank Rosenblatt develops the Perceptron: the first learning artificial neural network that recognizes patterns based on examples.
The first learning machine
In 1957, psychologist Frank Rosenblatt at the Cornell Aeronautical Laboratory introduced the Perceptron — a machine learning model inspired by the McCulloch-Pitts neuron but with one crucial addition: it could learn. The Perceptron adjusted its own weights based on examples, without being explicitly programmed with rules. This was a fundamental shift: instead of encoding knowledge, the machine derived it from data.
How the Perceptron works
A Perceptron receives input signals, multiplies each by a weight, sums the results, and fires if the sum exceeds a threshold. During training, if the output is wrong, the weights are adjusted — slightly increased for inputs that should have caused firing, slightly decreased for those that shouldn't. Rosenblatt proved that for linearly separable problems, this algorithm always converges to the correct solution. The New York Times reported in 1958 that the Navy expected the Perceptron to "walk, talk, see, write, reproduce itself, and be conscious of its existence."
The fall: Minsky and Papert
The euphoria was short-lived. In 1969, Marvin Minsky and Seymour Papert published Perceptrons, a rigorous mathematical analysis showing that a single-layer Perceptron could not solve the XOR problem — a simple non-linearly separable task. While multilayer networks could in theory solve this, Minsky and Papert doubted efficient training algorithms existed. The book contributed significantly to the first AI winter and a decade-long decline in neural network research.
Rehabilitation and legacy
The invention of backpropagation in the 1980s solved exactly the problem Minsky and Papert had identified. Multilayer Perceptrons — neural networks with hidden layers — proved capable of learning complex non-linear patterns. The Perceptron is today the textbook starting point for every course on neural networks and deep learning. Rosenblatt himself died in 1971 at age 43 in a boat accident, without seeing the full flowering of his ideas.
Sources
- Rosenblatt, F. (1958). The Perceptron: A Probabilistic Model for Information Storage and Organization in the Brain. Psychological Review, 65(6), 386–408.
- Minsky, M. & Papert, S. (1969). Perceptrons. MIT Press.
- Wikipedia — Perceptron