Aryanp088 commited on
Commit
01b271c
·
verified ·
1 Parent(s): f4f618d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -3
README.md CHANGED
@@ -1,3 +1,49 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ ---
4
+ # RAG-Adapt Mini v0.1
5
+
6
+ ## Overview
7
+ RAG-Adapt Mini is a small multi-hop retrieval dataset constructed from HotpotQA (distractor version).
8
+
9
+ Each example contains:
10
+ - Query
11
+ - Reference Answer
12
+ - Candidate document pool (BM25-generated hard negatives + gold docs)
13
+ - Gold document indices
14
+
15
+ ## Intended Use
16
+ - Retrieval evaluation (Recall@k, MRR)
17
+ - Adaptive retrieval policies
18
+ - Multi-hop RAG experimentation
19
+ - Reinforcement learning for retrieval strategy selection
20
+
21
+ ## Format
22
+ Each JSONL record contains:
23
+
24
+ {
25
+ id: string,
26
+ query: string,
27
+ reference_answer: string,
28
+ doc_pool: [
29
+ { doc_id, text, source }
30
+ ],
31
+ gold_doc_indices: [int],
32
+ metadata: dict,
33
+ created_at: string,
34
+ provenance: dict
35
+ }
36
+
37
+ ## Dataset Size
38
+ - Train: 2000 examples
39
+ - Validation: 200 examples
40
+ - Documents per example: 15
41
+
42
+ ## Source
43
+ Derived from:
44
+ HotpotQA (Yang et al., 2018)
45
+
46
+ ## Limitations
47
+ - Gold matching based on title-level alignment.
48
+ - Negatives generated using BM25 only.
49
+ - No dense retrieval used in this mini version.