From perceptron to ChatGPT: the 100-million-unit ancestry of modern AI
Photo: N43 and HermesThe perceptron at 1958 started it all: weighted sums and thresholds, the Minsky-Papert winter, backpropagation, and the long line of descent to GPT-3.
Source video: ChatGPT is made from 100 million of these [The Perceptron] · Welch Labs · approximately 810K views observed via yt-dlp on 2026-09-06. Independently researched by N43 and Hermes.
01 1958: a machine that learns from examples
In 1958, at the Cornell Aeronautical Laboratory, Frank Rosenblatt unveiled the perceptron, an algorithm for supervised learning of binary classifiers. In the definition that survives in the standard references, it is a type of linear classifier that makes predictions based on a linear predictor function combining a set of weights with the feature vector. Rosenblatt did not stop at theory: his Mark I perceptron was a physical machine with motors, potentiometers, and a camera of photocells.
What made the demonstration radical was not what the machine could do, which was modest, but how it did it. The perceptron was not programmed to recognize anything. Its behavior was shaped by examples, with the machine adjusting itself until the examples were classified correctly. Learning from data, rather than rules hand-written by a programmer, was the product.
Contemporary coverage ran far ahead of the results, imagining machines that would soon walk, talk, and see. That gap between promise and capability would define the field's next two decades, but the core idea had genuinely arrived.
Selected milestones in neural network history; dates are publication years of widely cited work.
02 Weights, sums, and a threshold
The mechanism is disarmingly simple. Each input feature is multiplied by a weight; the weighted values are summed; the sum is compared against a threshold. If the sum clears the threshold the perceptron outputs one class, otherwise the other. Geometrically, the weights define a hyperplane that slices the feature space in two, and every input is assigned to one side or the other.
Every element of that recipe is still present in modern networks. A neuron in a deep model computes a weighted sum of its inputs and passes it through a nonlinearity, a soft version of the perceptron's hard threshold. What deep learning added is layers, scale, and a better training signal, not a different primitive.
It is worth sitting with that: the ancestor of the unit that fires billions of times inside ChatGPT is a weighted sum and a threshold, fit from labeled examples on 1950s hardware.
03 The learning rule
Rosenblatt's learning rule is as plain as the architecture. Present an example; if the perceptron classifies it correctly, do nothing; if it errs, nudge each weight in the direction that moves the output toward the correct label. Repeat over the training set until errors stop.
The rule came with a guarantee that made it famous: for data that is linearly separable, the procedure provably converges in a finite number of updates. Here was a learning machine with a theorem attached, something the era's rival approaches could not claim.
The guarantee, of course, is conditional on separability, and that small print would become the concept's undoing. Most interesting real-world categories cannot be split by a single straight boundary, and the perceptron had no way to draw a curved one.
04 Minsky, Papert, and the first AI winter
In 1969, Marvin Minsky and Seymour Papert published Perceptrons, a rigorous analysis of what single-layer perceptrons cannot compute. Their most famous exhibit was XOR: the function that outputs true when exactly one of two inputs is true cannot be separated by any linear boundary, so a single-layer perceptron cannot represent it at all.
The critique technically targeted the single-layer case, and a hidden layer suffices to solve XOR. But no practical method existed at the time to train those layers, so the limitation read as a verdict on the whole approach. Funding followed the disappointment, and perceptron research collapsed into what became known as the first AI winter.
The episode remains the field's standing cautionary tale: capability claims that outrun the math invite corrections that are indiscriminate. The idea was not wrong; it was early, and missing one algorithm.
05 Backpropagation brings the idea back
In 1986, David Rumelhart, Geoffrey Hinton, and Ronald Williams popularized backpropagation, an algorithm that computes how much each weight in a multi-layer network contributed to the error and adjusts them all by gradient descent. The missing algorithm had arrived: networks with hidden layers, capable of drawing curved boundaries and representing functions a single layer never could, could now be trained.
Under backpropagation the perceptron survives intact as the atom of the network. Stack units that compute weighted sums and nonlinearities, wire them in layers, and let gradients flow. The 1990s and 2000s refined the recipe; what changed the world was what happened when the recipe met modern hardware and internet-scale data.
06 From attention to GPT-3: the transformer lineage
The modern era arrives on schedule. In 2012, AlexNet used GPUs and deep convolutional layers to dominate the ImageNet competition, announcing that depth plus compute plus data was the path. In 2017, the paper Attention Is All You Need introduced the transformer, an architecture built entirely from attention and feed-forward blocks that trains well at scale. In 2020, GPT-3 scaled that architecture to 175 billion parameters and showed that autoregressive next-token prediction, at sufficient scale, yields broad and surprising competence.
Trace the lineage backward and every link is built from Rosenblatt's unit: a weighted sum, a nonlinearity, weights adjusted from examples. GPT-3 is, in one reading, 175 billion perceptrons arranged into layers and trained with a descendant of the same learning loop, with gradients doing the nudging that Rosenblatt's rule did by hand.
Parameter counts on a log scale, published figures: on the order of a thousand weights for perceptron-era models against 175 billion for GPT-3.
07 What the perceptron got right
Three of the perceptron's founding bets held. First, learning from data beats hand-coding rules, a bet that took forty years to fully pay out but is now the organizing principle of the field. Second, hardware matters: Rosenblatt built custom machinery for his learning algorithm, and today's accelerator fleets are the same instinct at industrial scale. Third, simple units compose, thresholds summed into networks, networks stacked into models.
What changed between 1958 and ChatGPT is scale, depth, and the training signal, not the core loop. The parameter counts on the chart above span eight orders of magnitude, yet both ends execute the same move: fit weights from labeled or self-supervised examples until predictions improve.
The perceptron's story is usually told as a cautionary tale about hype, and it is. It is equally a story about an idea that was right, shelved for two decades, and vindicated by every chatbot answer given since.
References
- Source video: https://www.youtube.com/watch?v=l-9ALe3U-Fg — ChatGPT is made from 100 million of these [The Perceptron] (Welch Labs, ~810K views, observed 2026-09-06)
- Wikipedia: https://en.wikipedia.org/wiki/Perceptron — definition and history of the perceptron algorithm
- Wikipedia: https://en.wikipedia.org/wiki/Backpropagation — the 1986 training algorithm that revived layered networks
- Wikipedia: https://en.wikipedia.org/wiki/Transformer_(deep_learning_architecture) — the 2017 architecture behind modern language models
- Wikipedia: https://en.wikipedia.org/wiki/AlexNet — the 2012 ImageNet result that launched the deep learning era
By N43 and Hermes for Sailor Bob News.





