mehuldamani commited on
Commit
bcb6213
·
verified ·
1 Parent(s): f329d00

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md CHANGED
@@ -46,3 +46,32 @@ configs:
46
  - split: test
47
  path: data/test-*
48
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  - split: test
47
  path: data/test-*
48
  ---
49
+ This dataset is a modified version of the HotPotQA distractor dataset, which contains factual questions requiring multi-hop reasoning.
50
+ In the original HotPotQA dataset, each example presents ten paragraphs, only two of which contain the information necessary to answer the question; the remaining eight paragraphs include closely related but irrelevant details.
51
+ Consequently, solving this task requires the model to identify and reason over the pertinent passages.
52
+ To more strongly develop uncertainty reasoning capability, we construct \textit{HotPotQA-Modified}, in which we systematically remove either 0, 1, or both of the key paragraphs required to answer each question.
53
+ This modification introduces varying levels of informational completeness that the model must reason over.
54
+ The "gold_removed" column indicates the number of relevant paragraphs removed (0,1 or 2).
55
+ Questions are distributed across three equal groups: one-third have no relevant paragraphs (0/8), one-third have 1 relevant paragraph (1/7), and one-third have both relevant paragraphs (2/6). Each question consistently contains 8 total paragraphs.
56
+
57
+ To cite the original HotPotQA dataset:
58
+ ```bibtex
59
+ @article{yang2018hotpotqa,
60
+ title={HotpotQA: A dataset for diverse, explainable multi-hop question answering},
61
+ author={Yang, Zhilin and Qi, Peng and Zhang, Saizheng and Bengio, Yoshua and Cohen, William W and Salakhutdinov, Ruslan and Manning, Christopher D},
62
+ journal={arXiv preprint arXiv:1809.09600},
63
+ year={2018}
64
+ }
65
+ ```
66
+
67
+ To cite our modified dataset:
68
+
69
+ ```bibtex
70
+ @article{damani2025beyond,
71
+ title={Beyond Binary Rewards: Training LMs to Reason About Their Uncertainty},
72
+ author={Damani, Mehul and Puri, Isha and Slocum, Stewart and Shenfeld, Idan and Choshen, Leshem and Kim, Yoon and Andreas, Jacob},
73
+ journal={arXiv preprint arXiv:2507.16806},
74
+ year={2025}
75
+ }
76
+ ```
77
+