maorivgi
commited on
Commit
•
76c0162
1
Parent(s):
96c758b
updated bibtex file
Browse files
README.md
CHANGED
@@ -136,7 +136,7 @@ Those are accessible via the following configurations:
|
|
136 |
- hotpotqa_second_only - In each example, the input contains only the second gold passage
|
137 |
|
138 |
## Citation
|
139 |
-
If you use this dataset, **please make sure to cite all the original dataset papers as well SCROLLS.** [[bibtex](
|
140 |
```
|
141 |
@inproceedings{Ivgi2022EfficientLU,
|
142 |
title={Efficient Long-Text Understanding with Short-Text Models},
|
|
|
136 |
- hotpotqa_second_only - In each example, the input contains only the second gold passage
|
137 |
|
138 |
## Citation
|
139 |
+
If you use this dataset, **please make sure to cite all the original dataset papers as well SCROLLS.** [[bibtex](https://drive.google.com/uc?export=download&id=1IUYIzQD9DPsECw0JWkwk4Ildn8JOMtuU)]
|
140 |
```
|
141 |
@inproceedings{Ivgi2022EfficientLU,
|
142 |
title={Efficient Long-Text Understanding with Short-Text Models},
|
sled.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
# coding=utf-8
|
2 |
# Lint as: python3
|
3 |
"""Data for SLED, based on the SCROLLS benchmark."""
|
4 |
-
import itertools
|
5 |
import json
|
6 |
import os
|
7 |
import random
|
@@ -230,12 +229,12 @@ archivePrefix = {arXiv},
|
|
230 |
}
|
231 |
"""
|
232 |
_HOTPOTQA_CITATION = """
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
"""
|
240 |
|
241 |
|
|
|
1 |
# coding=utf-8
|
2 |
# Lint as: python3
|
3 |
"""Data for SLED, based on the SCROLLS benchmark."""
|
|
|
4 |
import json
|
5 |
import os
|
6 |
import random
|
|
|
229 |
}
|
230 |
"""
|
231 |
_HOTPOTQA_CITATION = """
|
232 |
+
@inproceedings{yang2018hotpotqa,
|
233 |
+
title={{HotpotQA}: A Dataset for Diverse, Explainable Multi-hop Question Answering},
|
234 |
+
author={Yang, Zhilin and Qi, Peng and Zhang, Saizheng and Bengio, Yoshua and Cohen, William W. and Salakhutdinov, Ruslan and Manning, Christopher D.},
|
235 |
+
booktitle={Conference on Empirical Methods in Natural Language Processing ({EMNLP})},
|
236 |
+
year={2018}
|
237 |
+
}
|
238 |
"""
|
239 |
|
240 |
|