


AI at Scale: The Economics Nobody Is Being Honest About
Training costs dropped 100× in four years. So why are so many companies still bleeding on compute? The gap between benchmark promises and production reality is wider than the industry wants to admit.
The Conversation Is Starting in the Wrong Place
Every “how to scale AI” article I’ve read starts with training costs. Distributed GPUs, model parallelism, mixed-precision arithmetic — all of it is real, all of it is useful, and almost none of it is where enterprise teams are actually burning money in 2025.
Here’s what I’ve seen in practice: 70–80% of enterprise AI compute spend goes to inference, not training. Probable You train a model once (or a few times). You run inference thousands of times per day, per user, indefinitely. The optimization leverage is completely inverted from what the research literature emphasizes.
This doesn’t mean training optimization is useless. It means if you’re a company that has already shipped a model, obsessing over your training pipeline is like reorganizing your kitchen while the restaurant is on fire.
The Three Levers That Actually Move the Needle
1. Inference optimization — where the money lives
The gap between a poorly configured and a well-optimized inference stack can be 3–8× in cost for the same model serving the same traffic. Probable That’s not from using a different model or cloud — it’s batching strategy, quantization, and KV cache management.
Text Generation Inference (TGI) from Hugging Face and vLLM are the two frameworks I’ve seen teams use to close this gap. vLLM’s paged attention mechanism specifically addresses the memory fragmentation problem in long-context serving — it’s not marketing, the throughput numbers hold up under real traffic.
Quantization (INT8, INT4) is real but the quality degradation is real too, and it’s task-dependent. On summarization tasks I’ve seen minimal quality loss with INT8. On reasoning chains, the errors compound in ways that matter. Always benchmark on your actual task before deploying quantized models to production.
2. Data curation quality — the multiplier nobody budgets for
The LIMA paper from Meta (2023) made a specific, verifiable claim: 1,000 carefully curated examples can match the instruction-following performance of models trained on 52,000+ examples. Established This was replicated in multiple subsequent fine-tuning studies.
What this means in practice: the teams spending weeks on data cleaning are not being precious. They’re avoiding the scenario where a model trained on 200K examples with 15% noise underperforms one trained on 30K clean examples — and costs 6× more to train.
Active learning pipelines (label uncertain examples first, not random samples) reduce annotation cost substantially. Probable The exact savings depend on dataset characteristics, and I don’t have a clean primary source with specific percentages that I trust enough to cite without flagging it.
3. Cloud commitment structure — boring, effective, underused
AWS Reserved Instances and GCP Committed Use Discounts offer 40–72% savings over on-demand pricing for steady-state workloads. Established — this is on AWS’s own pricing page. It’s not a secret. Teams still don’t use it because it requires committing to 1–3 year terms, which feels risky when the roadmap is uncertain.
The calculus: if you’ve been running a workload for 6+ months with no sign of stopping, on-demand pricing is financial waste, full stop. The risk of committing is nearly always smaller than the cost of not committing.
| Technique | Where It Applies | Realistic Savings | Confidence | Source |
|---|---|---|---|---|
| INT8 Quantization | Inference | 40–60% memory, ~2× throughput | Established | LLM.int8() paper |
| vLLM Paged Attention | Serving throughput | 2–4× vs naive serving | Established | vLLM paper (2023) |
| LoRA Fine-tuning | Training adaptation | ~3× GPU memory reduction | Established | LoRA paper (2021) |
| Cloud Committed Use | Infrastructure | 40–72% vs on-demand | Established | AWS pricing page |
| MoE Architectures | Training efficiency | Varies widely — 30–60% FLOP reduction vs dense equivalent | Probable | DeepSeek-MoE (2024) |
| Speculative Decoding | Inference latency | 1.5–3× speedup on some tasks | Probable | Google Brain (2022) |
The Failure Nobody Talks About Enough
Stability AI: When Scaling Outpaces Governance
Emad Mostaque founded Stability AI on the premise that open-source diffusion models would democratize AI. Between 2022 and 2024, the company scaled compute aggressively — hosting Stable Diffusion, building multimodal models, running DreamStudio — without matching revenue infrastructure to sustain it.
In March 2024, Mostaque resigned as CEO. Bloomberg reported the company had accumulated significant unpaid cloud computing bills — reportedly tens of millions owed to AWS — while simultaneously struggling to convert its massive open-source user base into paying customers.
The mechanism: they optimized for model quality and community growth. They did not optimize for unit economics. There was no clear path from “millions of free Stable Diffusion downloads” to “sustainable inference revenue.” The cost asymmetry was brutal: every image generated cost money; the vast majority of users paid nothing.
The lesson isn’t “don’t scale.” It’s: your inference cost per output must have a credible path to being covered by the value you capture. Stability’s technical scaling was impressive. Their economic model for that scale was not.
Infrastructure Decisions That Haunt You Later
There’s a decision teams make early — often casually — that ends up being very expensive to reverse: whether to run on spot/preemptible instances or on-demand. Spot instances on AWS or GCP can be 70–90% cheaper. Established (AWS Spot pricing.) They also get terminated with 2 minutes notice.
For training jobs with proper checkpointing, spot instances are almost always worth it. For inference serving production traffic, they’re usually not — unless you’ve built a sophisticated fallback layer that most teams haven’t. I’ve seen teams assume they can handle spot interruptions before they’ve actually tested it. They find out they can’t during a product launch.
The DeepSeek moment: what it actually proved
In early 2025, DeepSeek-R1’s training cost was widely reported as dramatically lower than comparable frontier models. Established via their technical report. The number cited most often — roughly $6M for training — generated enormous coverage.
What got less attention: that cost is for a team with extraordinary infrastructure expertise, access to high-quality data, and years of accumulated optimization knowledge. It is not a recipe most teams can replicate without the underlying prerequisites. The lesson from DeepSeek isn’t “training is now cheap.” It’s “the efficiency gap between expert and non-expert teams is widening, not narrowing.”
- The inference-first framing may not fit your situation. If you’re a research team iterating rapidly on model architecture, training costs matter much more. The 70/30 inference/training split is a production-company average, not a universal law.
- Quantization quality loss is task-dependent in ways I can’t fully characterize. I’ve cited the papers, but the practical degradation on your specific use case requires empirical testing. Don’t assume INT8 is safe without benchmarking your task.
- The DeepSeek cost figure is not fully auditable. The $6M training cost was reported, not independently verified. SemiAnalysis published a detailed breakdown with plausible methodology, but the ground truth is internal to DeepSeek.
- Cloud pricing changes frequently. The Reserved Instance discounts I cited were accurate at time of writing. Verify on AWS/GCP pricing pages before making commitments.
- I don’t have primary interviews with infrastructure engineers. This analysis is synthesized from public sources and published papers. Real-world practitioners may have significantly different numbers.
FAQ
What’s the minimum viable infrastructure to start serving an LLM in production?
Is fine-tuning always better than prompt engineering?
What metrics actually matter for tracking AI infrastructure cost?
Open-source vs. proprietary APIs — when does self-hosting actually make sense?
What does the EU AI Act actually require for general-purpose AI models?
How do I estimate training cost before committing to a run?
When should I use a mixture-of-experts model vs. a dense model?
Scaling AI is not a technology problem anymore. It’s an economics problem — and the teams winning are the ones who realized that before their AWS bill did.

