Hello @participant, in the case of RAG, are you using similarity to select the option? Since our RAG system answers questions based on the document, the predicted answer might not match the options exactly. The system will attempt to answer the question, and the answer might not be an exact match to any option but could be similar or more verbose than the options.
As per my understanding, Use RAG for retrieving relevant documents. We can pass options to LLM when predicting. So, instead of predicting answer, predicting option would be a better option. Make sure that you aren't passing options when retrieving relevant documents using RAG. This doesn't violate guidelines of the competition. Hope this helps : )
When answering multiple-choice questions, the RAG system might generate a response that doesn’t match the provided options exactly. To address this, optimizing the selection process involves using similarity measures (e.g., cosine similarity) between the generated answer and the options bitlife. This way, even if the response is more verbose or slightly different, it selects the closest matching option based on content similarity.