You probably don’t need to fine-tune an LLM
11–20 of 75 posts
Re: You probably don’t need to fine-tune an LLM
#12Re: You probably don’t need to fine-tune an LLM
#13RAG sucks. Microsoft is the force behind it because they don't allow training on their chatgpt models. Fine-tuning even Lora on the open source models is nearly always better than these other approaches
What do you mean? https://platform.openai.com/docs/guides/fine-tuning
Re: You probably don’t need to fine-tune an LLM
#14RAG sucks. Microsoft is the force behind it because they don't allow training on their chatgpt models. Fine-tuning even Lora on the open source models is nearly always better than these other approaches
Is Lora used on language models?
Re: You probably don’t need to fine-tune an LLM
#15Re: You probably don’t need to fine-tune an LLM
#16If it is just text corpora, probably not worth it
Re: You probably don’t need to fine-tune an LLM
#17The future is likely > 90% of developers relying on the best frontier models and using the context to specialise, and 10% of specialised developers who have the expertise, budget, and time, customising LLMs for very specific use cases where there is no other option.
Re: You probably don’t need to fine-tune an LLM
#18RAG sucks. Microsoft is the force behind it because they don't allow training on their chatgpt models. Fine-tuning even Lora on the open source models is nearly always better than these other approaches
A model's weights are inherently lossy and opaque. If a model asserts some fact, it is impossible to tell whether that fact was true or hallucinated just from the model, because the model has no notion of "fact" or "truth", it's just probabilities.
Generating an answer solely from model weights is like asking a random person to answer a question from memory. Sure, you might get the right answer, but there's no guarantee.
Using RAG is like handing them a book and asking them what the book says the answer is. With the benefit that LLMs can "read" much faster than a human.
My take is that LLMs are actually much better at "reading" than they are at "writing", and RAG plays to that strength.
Re: You probably don’t need to fine-tune an LLM
#19OpenAI removed the base GPT-3.5 model a while ago and never made it available for GPT-4.
Re: You probably don’t need to fine-tune an LLM
#20We're using LLMs (OpenAI) to generate SQL queries to search customer data, and the current approach using chat API frequently generates queries using the wrong record/column names. I'm exploring use of fine tuning to improve accuracy on a customer/customer basis to train on their set of data, isn't that a good use case?
This means you're easily looking at a 1 Million dollar project in order to be successful. Even once you're done, the odds of success are mixed - and Claude-3 may beat your fine-tuned model. These economics aren't hard for research shops, but startups are going to struggle with this approach.