cd /news/artificial-intelligence/evolution-of-llms · home topics artificial-intelligence article
[ARTICLE · art-134913] src=pub.towardsai.net ↗ pub= topic=artificial-intelligence verified=true sentiment=· neutral

Evolution of LLMs

Anthropic CEO Dario Amodei called on the AI industry to "slow down" and let safety measures "catch up" as of September 2026, with OpenAI CEO Sam Altman agreeing the field needed to "pace the frontier" and xAI CEO Elon Musk posting "Dario is right." The three executives, whose companies compete fiercely, publicly converged on the view that the technology they are racing to build may be moving too fast to fully control. The agreement caps a trajectory that began with Alan Turing's 1950 paper proposing the Imitation Game, later known as the Turing Test, which framed conversation as the benchmark for machine intelligence.

by read15 min views3 publishedSep 20, 2026

We are living in interesting times,As of September 2026, the CEOs of Anthropic, OpenAI, and xAI companies that are otherwise locked in fierce competition with each other,did something unusual, they publicly agreed on the same thing. Anthropic’s Dario Amodei called on the AI industry to “slow down” and let safety measures “catch up”. Sam Altman responded that he agreed they needed to “pace the frontier,” and Elon Musk simply posted, “Dario is right.” Three people who rarely agree on anything, suddenly agreeing that the technology they’re all racing to build might be moving too fast for anyone including them to fully control.

But this moment didn’t arrive overnight. In late 2022, ChatGPT launched, and the world didn’t stay the same afterward. People assumed it came out of nowhere a sudden invention, dropped on the world,It wasn’t. How seven decades of “small” ideas quietly built the biggest technology of our time is the real story and it started with a philosophical question, not a product launch.

In this article, we’re going to trace that question through decades of research, papers, and quiet breakthroughs that most people never heard about up until the point where machines could actually do something with language. Somewhere in the middle of that story, the field became significant enough that Geoffrey Hinton often called the “Godfather of AI” won the Nobel Prize in Physics for foundational work that helped physics itself, long before anyone called what he built a “large language model.”

contents 1. The Philosophical Genesis (1950)

Before there was a single line of NLP code, there was a question “can machines think?”

In 1950, the mathematician Alan Turing published a paper that sidestepped the messy debate of “can machines think?” entirely. His argument was simple “that question is too philosophical to ever settle”. Instead, we should ask something we can actually test ,can a machine hold a conversation well enough that a human can’t tell it apart from another person?

He called this the Imitation Game. Today, most people know it as the Turing Test.It’s worth sitting with how unusual this framing was at the time. Turing wasn’t trying to build a mind ,he was trying to define what it would even mean to succeed. And by choosing conversation as the benchmark, he made an implicit bet that language is the clearest window we have into intelligence. If a machine could use language the way a person does, that would be evidence enough.

That single framing decision quietly set the destination for the next seventy years of AI research. Long before neural networks, before anyone had the compute to train on billions of words, the field already knew what “success” would eventually look like “a machine that could talk like us.” It would take until the 2020s for anything to come close to passing that test convincingly. But the target had already been drawn in 1950.

References:-[Computing Machinery and Intelligence](https://courses.cs.umbc.edu/471/papers/turing.pdf)

For nearly two decades after Turing’s paper, the dominant belief was that language could be engineered that if you wrote down the rules of grammar precisely enough, a computer could process language the way a compiler parses code. **Noam Chomsky’s** 1957 **theory of *generative grammar*** gave this idea real academic weight, arguing that language has an underlying formal structure a finite set of rules capable of generating infinite valid sentences, and it shaped how the first generation of language systems were designed.That belief inspired **ELIZA**, built by **Joseph Weizenbaum** in 1966 ,widely considered the world’s first chatbot. It understood nothing,it simply used pattern matching to mimic a therapist, reflecting a user’s own words back as questions. What unsettled Weizenbaum was how easily people were fooled by it, forming real emotional attachments to a program doing almost nothing underneath. It was an early preview of a question that still follows LLMs today, what’s the difference between a system that understands you and one that just sounds like it does? ,However rule based systems like ELIZA had a hard ceiling, they couldn’t scale to the genuine messiness of human language, and by the 1970s, that ceiling was about to cause a much bigger problem for the field.

References:-Syntactic Structures ,ELIZA: A Computer Program for the Study of Natural Language Communication Between Man and Machine

By the early 1970s, the optimism of the rule based era had collided with reality. Machines built on hand written grammar rules couldn’t handle the ambiguity, exceptions, and context dependence that make up real human language ,a sentence could mean entirely different things depending on tone, situation, or shared knowledge that no rulebook could capture. Government funding bodies, most notably in the UK and US, grew skeptical of AI’s inflated promises versus its actual results. Major reports like the 1973 Lighthill Report in Britain concluded that AI research had failed to deliver on its claims. Funding dried up almost overnight. This period, stretching through much of the 1970s and into the 1980s, became known as the AI Winter a stretch where research slowed, labs shut down, and “artificial intelligence” became something of a discredited term in serious computer science circles.

References :-https://www.chilton-computing.org.uk/inf/literature/reports/lighthill_report/p001.htm , https://achievements.ai/milestone/lighthill-report-by-sir-james-lighthill

The revival that ended the AI Winter began with a single question: could a machine learn on its own, rather than being told explicit rules? In 1986, David Rumelhart, Geoffrey Hinton, and Ronald Williams answered that with backpropagation a method for training Multi Layer Perceptrons (MLPs), networks with hidden layers between input and output. Instead of hand coding grammar, an MLP could be shown examples, make a prediction, measure how wrong it was, and adjust its internal weights layer by layer to do better next time. This was a genuinely different philosophy from everything before it .Due to backpropagation language, or any pattern, didn’t need to be explained to the machine ,it could be learned from data. But the idea arrived ahead of its time. Computers in the late 1980s simply didn’t have the processing power, and there wasn’t nearly enough digitized text available, for neural networks to outperform simpler methods. So while the theory was sound, practical progress moved elsewhere for the next decade and a half.

That “elsewhere” was statistics. Through the 1990s, researchers largely abandoned both hand written rules and neural networks in favor of a much simpler idea predict the next word based on the probability of word sequences seen in large amounts of text. These n-gram models counted how often words appeared together and used those frequencies to estimate what should come next ,no understanding required, just probability. IBM’s statistical machine translation work in the early 1990s pushed this approach further, treating translation itself as a probability problem, given a sentence in one language, what’s the most statistically likely sentence in another? This was a major practical improvement over rule based systems,

but it came with limitations that would eventually force the field to move on.

i)out-of-vocabulary words:- any word the model hadn’t seen during training simply didn’t exist to it, there was no way to reason about a new or rare term.

ii)data sparsity:-as n-grams grew longer to capture more context, the number of possible word combinations exploded, and most of them were never seen often enough in training data to produce a reliable probability ,a problem known as the curse of dimensionality. iii)

The bridge back to neural networks came from Yoshua Bengio in 2003. Their paper on neural probabilistic language modeling addressed these exact weaknesses by combining the strengths of both worlds it used a neural network, trained with backpropagation, to predict word sequences the way statistical models did, but instead of raw word counts, it represented each word as a dense numerical vector. This meant unseen or rare words could still be placed near related words in vector space (softening the out-of-vocabulary and zero-probability problems), sparsity stopped being a hard wall since the network generalized instead of counting exact matches, and the model could, in principle, be extended to consider more context than a fixed n-gram window ever could. It was a modest paper by today’s standards, but it quietly reintroduced the idea that started in 1986 that language could be learned, not just counted and set the stage for the deep learning era that would follow.

References :-Learning representations by back-propagating errors ,Statistical Approach To Machine Translation, A Neural Probabilistic Language Model

By 2013, the pieces from Bengio’s 2003 paper representing words as dense vectors instead of raw counts were ready to scale. Tomas Mikolov and his team at Google introduced Word2Vec, a method that could train high quality word embeddings efficiently across enormous text corpora, something far too computationally expensive with earlier neural approaches. What made Word2Vec remarkable wasn’t just speed ,it was that the resulting vector space captured relationships between words with almost precision. The famous example, Vector(“King”) − Vector(“Man”) + Vector(“Woman”) ≈ Vector(“Queen”), showed that meaning itself had a kind of geometry: analogies, gender, plurality, and even tense could be captured as consistent directions in vector space. For the first time,understanding a word’s meaning was something a model could compute rather than memorize.

Embeddings solved the problem of representing individual words, but language isn’t just a bag of words ,it’s a sequence, where order and context matter. This is where Recurrent Neural Networks (RNNs) became central. Unlike a standard feedforward network, an RNN processes input one step at a time while carrying a “hidden state” forward ,a running memory of everything it has seen so far in the sequence. In principle, this made RNNs a natural fit for language, they could take a sentence word by word and build up context as they went. In practice, standard RNNs struggled badly with long sequences, since the influence of early words tended to fade or destabilize by the time the network reached the end of a long sentence ,a limitation that would soon push researchers toward gated architectures like LSTMs.

Around the same time, a very different breakthrough was reshaping how the entire field thought about training. In 2012, AlexNet a deep convolutional neural network trained by Alex Krizhevsky, Ilya Sutskever, and Geoffrey Hinton dramatically outperformed every competing approach on the ImageNet image classification benchmark, and did so using GPUs for large-scale training. The result itself was about vision, not language, but its implications rippled into NLP in a crucial way,it proved that a model pretrained on a large, general dataset could be fine-tuned for specific downstream tasks far more effectively than training from scratch .The core idea behind transfer learning. That principle “pretrain big and general, then fine-tune small and specific” would later become the exact blueprint for how every modern LLM, from BERT to GPT, gets built.

References:-Efficient Estimation of Word Representations in Vector Space ,Long Short-Term Memory , ImageNet Classification with Deep Convolutional Neural Networks

By 2014, RNNs (and their more stable cousin, LSTMs) had become the standard tool for sequence tasks, but machine translation exposed a structural weakness in how they were being used. The dominant approach, introduced by Ilya Sutskever, Oriol Vinyals, and Quoc V. Le, was the Sequence-to-Sequence (Seq2Seq) architecture an encoder decoder setup where one RNN “encoder” reads an entire input sentence and compresses it into a single fixed size vector called context vector, and a second RNN “decoder” generates the output sentence from that vector alone. It was a genuinely elegant idea, it let models map an input of any length to an output of any length, which is exactly what translation requires.

The problem was that single vector. No matter how long or complex the input sentence was ,(five words or fifty )the encoder had to squeeze all of it into one fixed size representation before the decoder ever started generating output. This became known as the bottleneck problem, for short sentences it worked reasonably well, but as sentences grew longer, critical information from earlier words got diluted or lost entirely by the time it needed to be used. The model wasn’t forgetting due to a training flaw ,it was forgetting because the architecture itself only gave it one shot to remember everything at once.

The fix came from Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio in (2014–2015), and it was conceptually simple, instead of forcing the decoder to rely on a single compressed vector, let it look back at all of the encoder’s intermediate states at every step, and learn which parts of the input sentence to focus on when generating each word of the output. This was the “Attention Mechanism” a way for the model to dynamically “attend” to the most relevant words in the input, rather than depending on everything being pre-compressed into one fixed memory. Translation quality improved immediately and substantially, especially on longer sentences. But attention’s real significance wouldn’t become clear for a few more years ,it had just introduced the one idea that, once separated entirely from RNNs, would become the foundation of the Transformer.

References:-Sequence to Sequence Learning with Neural Networks ,Neural Machine Translation by Jointly Learning to Align and Translate

By 2017, attention had already made a real difference RNN based models equipped with it were producing noticeably better translations, especially on long sentences. But a deeper inefficiency was still sitting underneath everything. RNNs processed text sequentially, one word at a time, because each step depended on the hidden state from the step before it. That dependency made a certain kind of sense linguistically, but it meant training couldn’t be fully parallelized on a GPU ,step 10 simply couldn’t start until step 9 finished. As datasets and model sizes grew, this sequential bottleneck became the thing actually limiting progress.

A team at Google Research and Google Brain Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz Kaiser, and Illia Polosukhin asked a question that sounds almost reckless in hindsight, what if recurrence wasn’t necessary at all?

Their answer, published in the now legendary 2017 paper “Attention Is All You Need,” was the Transformer. Instead of processing a sentence word-by-word, it used self-attention to let every word look at every other word simultaneously, in a single parallel operation with position information added back explicitly through positional encodings, since removing recurrence meant losing the built in sense of order. The importance of this paper is hard to overstate,by eliminating sequential dependency entirely, it made it possible to train on internet-scale datasets using modern GPU hardware, and every major language model built since,BERT, GPT-1 through GPT-5, Claude, Gemini, Llama is at its core, a variation on the architecture this single paper introduced.

References: Attention Is All You Need The Transformer itself was just an architecture a way of processing sequences efficiently. What turned it into what we now call an LLM was scale,researchers took that architecture and trained it on enormous amounts of text, with billions and eventually trillions of parameters, until it stopped being a narrow translation tool and became a general purpose reasoning engine for language. That’s the real shift between 2017 and today the Transformer didn’t just get used, it became the brain at the center of everything else being built. Search, coding assistants, customer support, and increasingly agentic systems that don’t just answer questions but take actions, use tools, and complete multi-step tasks on their own are all systems built around an LLM, with the model as the reasoning core and everything else wired in as supporting infrastructure. More recently, reasoning models pushed this further, training LLMs to think through problems step-by-step before answering rather than generating a response in one pass trading speed for accuracy on harder problems.

This single architecture also turned into geopolitics. In early 2025, a Chinese lab released DeepSeek, a reasoning model that reportedly matched frontier Western models at a fraction of the training cost and the market reaction was immediate and severe, wiping out hundreds of billions of dollars in value from AI linked stocks like Nvidia in a single day. The “DeepSeek effect” made something clear that had been building for a while,this was no longer just a research race between labs, it was a competitive race between countries, where compute, chip export controls, and national AI strategy had become matters of state policy, not just corporate roadmaps.

That race is also now reaching into territory once reserved for elite human mathematicians. In September 2026, OpenAI announced that an internal, unreleased model running roughly 10,000 AI agents in parallel over 88 hours had produced a proof for the Navier-Stokes existence and smoothness problem, one of the seven Millennium Prize Problems that has resisted a complete solution for nearly two centuries.

If verified, it would be one of the most significant demonstrations yet of AI directly solving unsolved mathematical research rather than just assisting with it. But the achievement was immediately shadowed by a credit dispute, mathematicians Tristan Buckmaster and Levent Alpöge, who had been working on a closely related approach before OpenAI’s announcement, alleged the company may have built on their unpublished work, raising uncomfortable questions about what “solving” a problem even means when the system doing the solving was trained on humanity’s own accumulated research and whether the humans whose ideas it absorbed along the way get remembered at all. That tension and extraordinary capability paired with real, unresolved questions about credit, verification, and control is exactly what sits underneath the warning we opened with. When Dario Amodei writes that “we must slow the pace at which we improve the capabilities of AI models,” and Sam Altman and Elon Musk his direct competitors publicly agree with him, they’re not describing some distant, hypothetical risk. They’re describing the system this entire history built, a brain seventy years in the making, now embedded in agents, reasoning models, and national strategies, moving faster than the institutions meant to evaluate it can keep up.

Turing’s question in 1950 can a machine convince us it understands language has been answered, decisively. But every generation defining technology eventually outgrows the question that started it and hands humanity a harder one to answer. Fire, electricity, the atom, the internet,each began as a spark of curiosity and ended up testing the judgment of the people who wielded it.

Language models are no different. We spent seventy years teaching a machine to understand us. What happens next depends on something Turing never had to test for, whether the people who built the machine understand themselves well enough to know when to slow down. We are, still, living in interesting times.

Evolution of LLMs was originally published in Towards AI on Medium, where people are continuing the conversation by highlighting and responding to this story.

── more in #artificial-intelligence 4 stories · sorted by recency
── more on @anthropic 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/evolution-of-llms] indexed:0 read:15min 2026-09-20 ·