Aryanp088 commited on
Commit
53c6b1b
·
verified ·
1 Parent(s): 2e52e7f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md CHANGED
@@ -159,6 +159,41 @@ hotpot = load_dataset("hotpot_qa", "distractor")
159
 
160
  ---
161
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
162
  ## Limitations
163
 
164
  - **English only** — inherited from HotpotQA
 
159
 
160
  ---
161
 
162
+
163
+ ---
164
+
165
+ ## Benchmark Results
166
+
167
+ Evaluated on the validation split (n=200) using three retrieval strategies.
168
+
169
+ ### Overall Results
170
+
171
+ | Retriever | Recall@1 | Recall@2 | Recall@5 | MRR | NDCG@5 |
172
+ |-----------|----------|----------|----------|--------|--------|
173
+ | Random | 0.0525 | 0.1425 | 0.3300 | 0.3190 | 0.2336 |
174
+ | BM25 | 0.3950 | 0.6000 | 0.8150 | 0.8732 | 0.7624 |
175
+ | Dense (MiniLM-L6-v2) | 0.4175 | 0.6500 | 0.8600 | 0.9035 | 0.8087 |
176
+ | **Hybrid (BM25 + Dense)** | **0.4400** | **0.6975** | **0.9050** | **0.9310** | **0.8543** |
177
+
178
+ > Hybrid retriever uses equal-weight (α=0.5) min-max normalized score fusion.
179
+
180
+ ### Hybrid Retriever — By Question Type
181
+
182
+ | Question Type | n | Recall@2 | MRR | NDCG@5 |
183
+ |---------------|-----|----------|--------|--------|
184
+ | bridge | 171 | 0.6696 | 0.9281 | 0.8418 |
185
+ | comparison | 17 | 0.8824 | 0.9706 | 0.9473 |
186
+ | yes-no | 12 | 0.8333 | 0.9167 | 0.9007 |
187
+
188
+ **Key findings:**
189
+ - Hybrid retrieval consistently outperforms sparse and dense individually across all metrics
190
+ - Dense retrieval outperforms BM25 on all metrics, highlighting the importance of semantic matching for multi-hop questions
191
+ - Bridge questions are the hardest retrieval type (Recall@2 = 0.67), as they require cross-document reasoning without strong lexical overlap
192
+ - Comparison and yes-no questions benefit more from BM25's keyword matching (higher Recall@2)
193
+ - Recall@5 of 0.905 for Hybrid shows that 90% of the time, both gold documents appear in the top 5 — a strong upper bound for downstream generation
194
+
195
+ ---
196
+
197
  ## Limitations
198
 
199
  - **English only** — inherited from HotpotQA