Fine tuning by pretraining over a RL tuned model is dumb AF. RL task tuning works quite well.
You may have no choice in how the model you are fine tuning was trained, and may have no interest in verticals it was RL tuned for. In any case, platforms like tinker.ai support both SFT and RL.
The case for the return of fine-tuning
11–20 of 85 posts
Re: The case for the return of fine-tuning
#12Earlier quoted context omitted.
You may have no choice in how the model you are fine tuning was trained, and may have no interest in verticals it was RL tuned for. In any case, platforms like tinker.ai support both SFT and RL.
Why would you choose a model where the trained in priors don't match your use case? Also, keep in mind that RL'd in behavior includes things like reasoning and how to answer questions correctly, so you're literally taking smart models and making them dumber by doing SFT. To top it off, SFT only produces really good results when you have traces that closely model the actual behavior you're trying to get the model to d…
Re: The case for the return of fine-tuning
#13Curious to hear others’ thoughts on this
Re: The case for the return of fine-tuning
#14A couple of examples I have seen recently which makes me agree with OP: - PaddleOCR, a 0.9B model that reaches SOTA accuracy across text, tables, formulas, charts & handwriting. [0] - A 3B and 8B model which performs HTML to json extraction at GPT-5 level accuracy at 40-80x less cost, and faster inference. [1] I think it makes sense to fine tune when you're optimizing for a specific task. [0] https://huggingface.co/p…
I've played around with doc recognition quite a bit, and as far as I can tell those two are best-in-class.
Re: The case for the return of fine-tuning
#15Fine-tuning is a good technique to have in a toolbox, but in reality, it is feasible only in some use cases. On one hand, many NLP tasks are already easy enough for LLMs to have near perfect accuracy and fine tuning is not needed. On the other hand, really complex tasks are really difficult to fine-tune and clevem data collection might be pretty expensive. Fine-tuning can help with the use cases somewhere in the midd…
Re: The case for the return of fine-tuning
#16Fine-tuning is a good technique to have in a toolbox, but in reality, it is feasible only in some use cases. On one hand, many NLP tasks are already easy enough for LLMs to have near perfect accuracy and fine tuning is not needed. On the other hand, really complex tasks are really difficult to fine-tune and clevem data collection might be pretty expensive. Fine-tuning can help with the use cases somewhere in the midd…
What would you say is an example of one of those “middle” tasks it can help with?
Naturally I reached for CLIP+ViT which got me a ~60% success rate out of the box. Then based on that, I created a tiny training script that read `dataset/{slide,no_slide}` and trained a new head based on that. After adding ~100 samples of each, the success rate landed at 95% which was good enough to call it done, and circle back to iterate once I have more data.
I ended up with a 2.2K large "head_weights.safetensors" that increased the accuracy by ~35% which felt really nice.
Re: The case for the return of fine-tuning
#17There is growing emphasis on efficiency as more companies adopt and scale with LLMs in their products.
Developers might be fine paying GPT-5-Super-AGI-Thinking-Max prices to use the very best models in Cursors, but (despite what some may think about Silicon Valley), businesses do care about efficiency.
And if you can fine-tune an 8b-parameter Llama model on GPT-5 data in < 48 hours and save $100k/mo, you're going to take that opportunity.
Re: The case for the return of fine-tuning
#18A couple of examples I have seen recently which makes me agree with OP: - PaddleOCR, a 0.9B model that reaches SOTA accuracy across text, tables, formulas, charts & handwriting. [0] - A 3B and 8B model which performs HTML to json extraction at GPT-5 level accuracy at 40-80x less cost, and faster inference. [1] I think it makes sense to fine tune when you're optimizing for a specific task. [0] https://huggingface.co/p…
Re: The case for the return of fine-tuning
#19Fine-tuning is a good technique to have in a toolbox, but in reality, it is feasible only in some use cases. On one hand, many NLP tasks are already easy enough for LLMs to have near perfect accuracy and fine tuning is not needed. On the other hand, really complex tasks are really difficult to fine-tune and clevem data collection might be pretty expensive. Fine-tuning can help with the use cases somewhere in the midd…
Yes, 100s of housands of them
Re: The case for the return of fine-tuning
#20I don't think anyone thought fine tuning was dead.