2 comments

  • uberman 2 hours ago

    I'm not exactly sure what you are asking. You can however construct a RAG based on a training corpus and then if you ask questions that when vecroized have no sufficiently similar match in your corpus you tell your llm to just say it cant answer that question.

    Concretely, index the tax documents into your data base then ask a question about Mount Everest. Vectorize that question and search your vectoized corpus for something similar. Find nothing then instruct your llm to formulate a response saying it could not answer

  • swrrt 2 hours ago

    Don't think RAG is the most common method for now. In my knowledge now it is mostly about post training and reenforcement learning for adding specific knowledge to base model. RAG is mostly like an add-on to a fully trained model and not so stable or inherent?