|
|
|
|
|
by ralusek
13 days ago
|
|
If you want an LLM to have knowledge about something, the knowledge has to either exist in its weights or be provided to it in its context. Because context is expensive and limited, and models tend to get dumber the more their context is filled, there is usually more that you'd need to put into context than can reasonably fit in it in order for the model to answer questions about your data. So your options are basically 1.) stuff it into context 2.) figure out a way to determine what to put into context based off of what is being asked of the model (RAG) 3.) change the weights of the model to have knowledge of your data baked into it (fine tuning) |
|