Bridgewater Fine-Tuned a Model and Beat GPT, Claude, Gemini
Ricardo Argüello — July 6, 2026
CEO & Founder
General summary
Bridgewater fine-tuned a Qwen3-235B model with Tinker, from Thinking Machines Lab, and hit 84.7% accuracy filtering financial documents, 13.8x cheaper than the best frontier model with the best prompts anyone could write. The same week, Anthropic revealed its own internal Claude usage went from 21% to over 95% accuracy, not from a better model, but from building its own layer of definitions on top.
- With generic prompts, frontier models (Gemini, Claude, GPT) averaged 47.2% accuracy filtering financial documents for Bridgewater; with the best possible prompts they reached 78.2%. The threshold investors required was 80%.
- Bridgewater fine-tuned Qwen3-235B (Alibaba's open-weight model) using Tinker, Thinking Machines Lab's fine-tuning API, and hit 84.7% accuracy: 29.8% fewer mistakes than the best frontier model, at 13.8x lower inference cost.
- GPT-5.4 cost 43% more than GPT-5.2 and barely improved accuracy, according to the same Thinking Machines research.
- Anthropic reported its own internal Claude usage for analytics questions went from 21% to over 95% accuracy (99% in some domains), and that letting a model generate the definition layer on its own performed worse than having no layer at all.
- AI Maestro's discovery phase measures which tasks already clear the accuracy threshold a business needs with a frontier model, and which ones require fine-tuning a model or building a definition layer before the output can be trusted.
Imagine handing a brand-new hire, with zero training, a hundred contracts and asking them to decide which ones to sign. They get half right. You give them more detailed instructions and they climb to eight out of ten, but your policy requires at least eight out of ten to trust the call unsupervised, so you still can't rely on them alone. You can spend months training them in exactly how your business works, or you can write a manual so precise about your business that they stop having to guess. Bridgewater chose the first path. Anthropic, with its own product, chose the second. Both arrived at the same conclusion: hiring the most expensive person on the market doesn't fix anything if you never train them for your specific case.
AI-generated summary
With generic prompts, frontier models averaged 47.2% accuracy filtering financial documents for Bridgewater’s analysts. A coin flip. With the best prompts an expert could write, that accuracy climbed to 78.2%. The threshold Bridgewater’s investors required before trusting the filter inside a real workflow was 80%. No frontier model, with any prompt, crossed it. And GPT-5.4 cost 43% more than GPT-5.2 without meaningfully improving accuracy.
Bridgewater didn’t wait for a smarter model to ship. Mira Murati announced it plainly: “Bridgewater used their unique financial knowledge and partnered with us on @tinkerapi to fine-tune a model that helps their analysts focus on what’s important. Experts improving AI that empowers experts.” They fine-tuned a Qwen3-235B model, Alibaba’s open-weight model, and reached 84.7% accuracy: 29.8% fewer mistakes than the best frontier model, at 13.8x lower inference cost.
How Bridgewater beat the most expensive models on the market
Thinking Machines’ technical writeup breaks down three pieces that stacked into the improvement: interleaved batching (+12.1 points), a CISPO loss function with asymmetric clipping (+10.1 points), and on-policy distillation with teacher models that get dynamically promoted during training (+3.1 points), all running on GRPO as the reinforcement-learning backbone. None of those three pieces is a smarter model. They’re adjustments to how training happens, not to how big the model is.
The part that actually generalizes to any company sitting on its own data isn’t the training technique. It’s how they handled the fact that their own labeled data was noisy. They trained a first model on the labels they already had, then ran that same model back over its own training set. Every time the model disagreed with a label, that example got routed to a senior investor for review, because either the example was genuinely hard or the original label was wrong. The model’s own confusion became the tool for catching bad labels, instead of paying an expert to manually re-check ten thousand examples one by one.
Anthropic had the exact same problem with its own product
The same week, Anthropic published how it uses Claude internally so its own team can answer data analytics questions without pulling in a human analyst every time. The starting point was 21% accuracy: one in five attempts, Claude got it right. After building a layer of business definitions (what “weekly active user” means exactly at this company, which table is the source of truth for each metric, which analytical workflows are already encoded as reusable steps), accuracy climbed past 95%, and to 99% in some specific domains. InfoQ covered the detail that matters most: Anthropic tested letting a model generate that definition layer automatically from raw tables and logs, and the result was worse than having no layer at all. The definitions had to come from someone who understands the business, not from a model reading a database schema.
It’s the same conclusion Bridgewater reached, by a completely different path. Bridgewater changed the weights of a smaller model using its own examples. Anthropic left the model alone and built a layer of its own context on top. Neither company solved the problem by asking the frontier model to guess better. Aaron Levie put it well this same week, in a line that applies to both cases: the battle in AI is a battle for context, not for which lab has the biggest model.
The threshold decides, not the preference
Neither company made its call out of ideology. Bridgewater had volume: thousands of financial documents its own analysts had already classified over the years, enough to fine-tune a model on real examples, even partially mislabeled ones. Anthropic had something else: an internal business understood well enough to write down, precisely, what each metric means and where each piece of data lives. Neither recipe works without the input that feeds it.
What the two stories share is the starting diagnosis: calling the frontier model’s API with the smartest prompt possible has a ceiling, and that ceiling is measurable. 78.2% for Bridgewater. 21% for Anthropic with no context layer. Both companies measured the ceiling before deciding what to build on top of it, instead of assuming the next model version would solve it on its own.
What we do at IQ Source
Most companies we talk to never measure that ceiling. They try a prompt, decide it “sort of works,” and ship it to production without knowing whether they’re sitting at 47% or 84%. In the discovery phase of AI Maestro, we measure that number for every candidate process before recommending anything: how well a frontier model with the best possible prompt actually handles the task, against the accuracy threshold the business genuinely needs to trust the output without constant human review.
When the frontier model already clears that threshold, there’s nothing to build. Using it directly is the right call, and the cheapest one. When it doesn’t, the question stops being which model is smarter and becomes which of two paths applies: if there’s volume of proprietary examples, fine-tune a smaller model the way Bridgewater did; if what’s missing is well-defined business context, build that layer the way Anthropic did. I’ve argued before that charging for the outcome forces the change to actually happen: that same Go/No-Go gate is what decides whether a process is ready to automate, or needs one of these two paths first.
No lab is going to tell you what percentage your process sits at today. That measurement is yours to take, and it’s the first number you should know before signing any AI contract.
Measure your process’s real ceiling before you automate itFrequently Asked Questions
Tinker is Thinking Machines Lab's fine-tuning API, built by Mira Murati's company, which reached general availability on December 12, 2025. Bridgewater used it to fine-tune a Qwen3-235B model on its own labeled examples, reaching 84.7% accuracy filtering financial documents, beating the best frontier models even with the best possible prompts.
Bridgewater's fine-tuned Qwen3-235B reached 84.7% accuracy, a 29.8% reduction in mistakes versus the best frontier model, which topped out at 78.2% with expert-written prompts. The fine-tuned model's inference cost was 13.8x lower than the frontier models on the same task.
Anthropic reported its internal analytics accuracy with Claude went from 21% to over 95% (99% in some domains), not by switching models but by building a human-authored layer of business definitions on top. They tested letting a model generate that layer automatically, and the result was worse than having no layer at all.
It makes sense when there's a repeated task with a measurable accuracy threshold that the frontier model can't clear even with the best prompts, and the company has enough of its own examples, even imperfectly labeled ones, to fine-tune a smaller model. If there isn't enough proprietary volume, building a definition and context layer usually pays off faster than fine-tuning a model from scratch.
Related Articles
Frontier Company Named Accenture. Wall Street Cut It Anyway.
Microsoft committed $2.5B to Frontier Company and named Accenture a launch partner. Two weeks earlier, TD Cowen downgraded Accenture for the exact same reason.
Karp Attacked AI Pricing on CNBC. A Bill Proved Him Right.
Alex Karp accused OpenAI and Anthropic of extracting value through token pricing. Days later, Pylon's CEO watched his Anthropic bill jump from $400K to $1.4M without using more AI.