logoalt Hacker News

A $500 RL fine-tune of a 9B open model beat frontier models on catalog review

302 pointsby ilrebtoday at 2:18 AM114 commentsview on HN

Comments

cmiles8today at 4:23 AM

The point that the major labs don’t seem to get is that the vast majority of use cases simply don’t need models that have 50 PhDs and can speak 12 languages. Most use cases are defined within constraints where costs matter a lot.

As open weight models and cheap fine tuning services become the norm the whole economic framework of these mega models the labs are in an arms race building just completely crumbles. As does the economic picture that justified the massive infrastructure building that’s now broadly funded by a complex network of debt.

This is what makes open weight models so threatening to them. The political and “it’s China” angle is mostly just a cover for the real reasons why they’re freaked out.

The fact that models are now a pure commodity is bad enough for the big labs. If small open weight models become the norm the big labs are toast.

show 14 replies
h_mirintoday at 6:55 AM

Every time I see this kind of story, two things bother me.

First, I have watched the free improvement of frontier models surpass the gains from retraining, many times now. Squeezing more out of the models that already exist, or simply doing nothing and waiting, is a real strategy and it often pays better. The fair comparison is not against today's frontier but against whatever ships while you are still maintaining your fine-tune.

Second, the $500 training bill is the cheapest line item in this story. The expensive parts are creating the data and maintaining the model afterwards. How many use cases can actually produce 177k scored episodes? Here they had to generate them synthetically from Amazon Berkeley Objects. To me, that dataset is the strongest evidence in the article of how hard fine-tuning is to apply: if the data existed naturally, nobody would need to manufacture it.

show 3 replies
himata4113today at 3:08 AM

What I really started to notice is that SOTA models are really good at putting themselves out of the job.

We can see this already with GPT how luna can do 90% of what sol is used for. The only reason why china still bothers 'distilling' models is accurate training data generation, something that oai and anthropic had to spend years collecting while trying to dodge legal challenges.

The more intelligent models get, the more people will offramp to cheaper solutions that get the job done. There's no real benefit to using a sota model when the accuracy is already 99% and I think that is the biggest danger to US labs.

show 4 replies
hermitShelltoday at 12:59 PM

I have great interest in fine-tuning open models, and I'm looking for resources that HN folks can personally recommend. This article looks good and I've bookmarked it to read more thoroughly over time.

I've gotten as far as running Nemotron-3-Nano 30b locally, and plan to target models around 30b - 120b parameters. Based on brief examination of the results I can get, I think these vanilla models are capable enough to add real value, but training could push them over the finish line for specialized tasks.

What I really appreciate is that the author is thinking about the whole process, which is also my goal. Confirmation that others are identifying the same use case, and the same strategy for adding value using this technology.

This is a long term project, so I plan to buy hardware to conduct the fine-tune. ..

nzeidtoday at 3:12 AM

I didn't read the Ramp article but this reads like a post hoc fallacy. Companies with 2x revenue have money to spend on AI. Companies with 1.15x revenue don't.

teravortoday at 7:23 PM

it helps when you first start by distilling (full distribution) domain specific workflows from a larger open model (kimi k3 would be perfect for this now, we used glm 5.2) and then apply your own private RL pipeline to the result. we did this to get a private 27B model for English -> SQL and the results were better than Fable, it lost the ability to explain however.

beating frontier models on highly specialized domains with a tiny fraction of the cost is not difficult to achieve, even when you don't have your own RL pipeline such distillation can still have major savings (27B model will become almost as good as a 3T model on the task). it probably won't work if the task is so ambitious as to not be suited for a specialist.

npntoday at 12:50 PM

fine tuning a small LLMs or even real small language models (like bert) is what the recommended way since the introduction of LLM. the benefit is pretty much obvious: faster to run, fully controlling the stack, better fit for the custom domain...

but in practice not many people do the fine tuning, for pretty much a single reason: large language models API cost are still very cheap, fast enough, and get improvement all the times. what the point of spend time (and money) to fine tune a specified model, then just when you release it a newer gen generic model is released and beat it?

but if someday the progress for LLM is slowed, or the price increased to the point calling api is not a viable approach any more, then surely the day of fine tuning and small models will come again.

JSR_FDEDtoday at 3:02 AM

I like the 2x2 grid that describes when to fine-tune a model, when to use a frontier model, etc.

From the article it’s not clear how the scorer grades every episode - was it a frontier model that assigned the grade? How does that continue to work as the model that is being fine-tuned becomes better at the task than the frontier model?

interleavetoday at 11:13 AM

Amazing! I've been in a similar autoresearch-y rabbit-hole lately with getting Apple's 3B Foundation Model to match Sonnet 4.6 on a very specific task.

The result was: 90% parity achieved with a weird combination of a fine-tuned adapter + 1 deterministic step.

I wrote the whole thing down here: https://alexisrondeau.me/tada/research/FMDiscovery/dashboard... which includes the question, the answer, the 96 experiments and their lineage etc. etc.

show 1 reply
luciana1utoday at 9:19 AM

turns out the bottleneck was never model size, it was having someone who actually understood the problem define the reward function

show 1 reply
brainlesstoday at 5:44 AM

I want small models to win and I am constantly experimenting with them. I have never tried fine-tuning and do not have that kind of budget. My approach is to remove some of the burden from models and bring into the agent.

Tool calling is an example - in some tasks RAG works really well, including coding agents where code, git log, Epics/Tasks, dependencies sources, etc. are all available in very structured manner. You can save many extra tool calls if you can run separate prompts and retrieve the source data needed for the actual work - rather its prompt.

And I really want to focus on search - this is the key technology if we want to use RAG instead of fine-tuning. If we can present really contextual sources in the prompts using a hybrid search approach - you can see how easily we get better results - either decisions or summaries from even small models.

nltoday at 10:19 AM

A fine-tune will generally outperform just about any other method on a closed domain, non generative problem.

LLMs are great because they can handle open domain problems in part because they are generative.

heresalexandriatoday at 4:11 AM

This continuous cycle of fine-tuned open models beating frontier on (often vaguely labeled/defined) benchmarks doesn't provide an accurate comparison to the expanding generalized capabilities of the SoTA, which makes them effectively meaningless.

If we were to take these at face value, why is it that the frontier labs' models are making legitimate new discoveries (e.g. Erdős and Jacobian conjectures) and these models are not?

To me, a better signal of capability would be similarly performing novel work at the same or better level, which they presently are not. I say this as someone who very much looks forward to open models being more capable, but to deny the gap is misguided hopeful hype.

show 4 replies
binarymaxtoday at 3:51 PM

No mention of training/test/holdout dataset splits anywhere in this article - so how am I to know whether or not this is some overfit result?

mpaeppertoday at 6:26 AM

There seems to be no hold out data for test, so this is just overfitting?

_345today at 4:05 AM

"87.3%

Share of the maximum achievable score our GRPO-trained 9B open-source model reached on catalog review, vs 76.9% for the best frontier configuration: a 13.5% relative improvement over the frontier, and 36% over its own untrained base (64.2%). The five frontier models, even with optimized prompts, plateaued within a tenth of a point of each other; the trained specialist cleared that ceiling."

_______

This is hard for me to believe. I have a lot of skepticism that frontier models like GPT 5.5 that are likely 2T+ parameters in size only got about 12% more accurate than an untrained 9b parameter LLM.

show 1 reply
bfeynmantoday at 3:59 PM

is this an ad?

| Harvey's legal agent beats GPT-5.5 and Claude Opus 4.8 on its own rubrics, and Intercom's Fin Apex resolves more support issues at lower cost.

The rubric and cost argument here just casually ignores all of the other challenges and real business issues of evolving models over time

whiplash451today at 4:26 PM

Well I surely hope so. That’s the whole point of fine tuning.

mips_avatartoday at 5:26 AM

The problem i've had with finetuning models is that most of the time better prompting beats finetuning

show 2 replies
blaguitoday at 3:06 PM

A 9B beating frontiers" No! But nailing specialized tasks Yes.

sudo_cowsaytoday at 3:22 AM

What benchmark is it? Is it super niche?

show 1 reply
podgorniytoday at 1:53 PM

WTF is happening here? It's a clear marketing piece with clear bunch of bot commenting like the article is a real deal. Is this a regular the modern day HN experience?

jgalt212today at 11:28 AM

RL is the gold standard and significantly beats self learning methods, but other than coding and computer refereed games it's cost prohibitive.

KennyBlankentoday at 6:14 AM

Comparing the revenue of the top quartile of AI-using companies to the average of all non-AI-using companies is beyond intellectually dishonest.

receptopalaktoday at 6:01 AM

[flagged]

hizyyotoday at 1:09 PM

[flagged]

croemertoday at 4:21 AM

[dead]

nothrowawaystoday at 4:52 AM

Tldr: we don't know what we are doing like the rest of 99% AI teams.

madhu_ghalametoday at 7:06 AM

As AI agents become more autonomous, governance and auditability will become critical, not optional.