After Attention — Reading the Architecture Roadmap Honestly
A practitioner's assessment of what succeeds the transformer, why the successor matters less than the infrastructure around it, and why most roadmaps should not wait for either.
The honest position
The transformer has proved unusually durable. Predictions of its replacement have been made continuously for several years and have so far been wrong, not because the alternatives lack merit but because the ecosystem advantage compounds. Kernels, tooling, quantisation methods, serving infrastructure and institutional familiarity all favour the incumbent architecture.
That does not mean the position is permanent. It means displacement requires a margin large enough to overcome an accumulated ecosystem, and most proposed successors do not currently demonstrate one.
What the alternatives are actually solving
The credible lines of work are mostly attacking the same constraint from different directions: attention costs scale badly with context length, and inference memory grows with the sequence being attended to.
State-space and recurrent-style approaches trade some recall fidelity for linear scaling. Mixture-of-experts approaches leave attention intact and reduce the active parameter count per token. Retrieval-based designs sidestep long context by fetching only what is needed. Each buys something real, and each pays for it somewhere — usually in recall precision, training stability, or serving complexity.
The likely outcome is not a single successor but a hybridisation: attention retained where precision matters, cheaper mechanisms substituted where it does not, and routing between them handled inside the model.
Why the architecture is not your bottleneck
For almost every enterprise and government deploying AI, architecture is not the binding constraint. The binding constraints are data quality, evaluation capability, integration into existing systems, and the organisational ability to act on a model's output.
An organisation that solves those will benefit automatically from whatever architecture wins, because the improvement arrives as a drop-in upgrade. An organisation that has not solved them will not benefit from any architecture, because the failure is downstream of the model.
This is the practical argument for architectural indifference. Build the surrounding capability, keep the model layer replaceable, and let the research question resolve itself.
The one thing worth tracking
There is a single development that would justify revisiting a roadmap: a durable order-of-magnitude reduction in inference cost at equivalent capability. That would change which applications are economically viable, and it would change them quickly.
Everything else in the architecture discussion is, for the operator, a matter of watching rather than acting.