You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: evals/golden_set.jsonl
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@
19
19
{"id":"q01","question":"What are the two RAG model variants introduced in the RAG paper?","expected":"RAG-Sequence, which uses the same retrieved document to generate the whole sequence, and RAG-Token, which can use a different document for each generated token.","expected_chunks":["rag.pdf#~RAG-Sequence","rag.pdf#~RAG-Token"],"category":"factual","difficulty":"easy"}
20
20
{"id":"q02","question":"Which generator model does the RAG paper use?","expected":"BART-large, a pre-trained sequence-to-sequence transformer, is used as the parametric generator.","expected_chunks":["rag.pdf#~BART"],"category":"factual","difficulty":"easy"}
21
21
{"id":"q03","question":"What does the parameter M control in the HNSW index?","expected":"M is the number of established connections (neighbours) per element per layer — the graph's out-degree, which trades index size and build time against search quality.","expected_chunks":["hnsw.pdf#~number of established connections"],"category":"factual","difficulty":"medium"}
22
-
{"id":"q04","question":"What does ef_construction control when building an HNSW index?","expected":"It is the size of the dynamic candidate list used during index construction; larger values produce a higher-quality graph at the cost of longer build time.","expected_chunks":["hnsw.pdf#~ef_construction"],"category":"factual","difficulty":"medium"}
22
+
{"id":"q04","question":"What does ef_construction control when building an HNSW index?","expected":"It is the size of the dynamic candidate list used during index construction; larger values produce a higher-quality graph at the cost of longer build time.","expected_chunks":["hnsw.pdf#~efconstruction"],"category":"factual","difficulty":"medium"}
23
23
{"id":"q05","question":"Which pooling strategy did Sentence-BERT find worked best?","expected":"Mean pooling over the token output vectors (the MEAN strategy) outperformed both the CLS token and max pooling.","expected_chunks":["sentence-bert.pdf#~pooling"],"category":"factual","difficulty":"medium"}
24
24
{"id":"q06","question":"What is the central finding of the Lost in the Middle paper?","expected":"Model performance is highest when the relevant information appears at the very beginning or the very end of the input context and degrades substantially when it is in the middle, producing a U-shaped performance curve.","expected_chunks":["lost-in-the-middle.pdf#~middle"],"category":"factual","difficulty":"easy"}
25
25
{"id":"q07","question":"Which metrics does the RAGAS framework propose?","expected":"Faithfulness, answer relevance, and context relevance — evaluated without human-annotated ground-truth references.","expected_chunks":["ragas.pdf#~faithfulness"],"category":"factual","difficulty":"easy"}
0 commit comments