Datasets:
tau
/

Languages:
English
ArXiv:
Uri commited on
Commit
044da35
1 Parent(s): d0b75cd

Update zero_scrolls.py

Browse files
Files changed (1) hide show
  1. zero_scrolls.py +28 -8
zero_scrolls.py CHANGED
@@ -7,7 +7,14 @@ import os
7
  import datasets
8
 
9
  _ZERO_SCROLLS_CITATION = """
10
-
 
 
 
 
 
 
 
11
  Note that each ZeroSCROLLS task has its own citation. Please see the source to
12
  get the correct citation for each one.
13
  """
@@ -19,13 +26,26 @@ https://zero.scrolls-benchmark.com/
19
  """
20
 
21
  _SCROLLS_CITATION = """
22
- @misc{shaham2022scrolls,
23
- title={SCROLLS: Standardized CompaRison Over Long Language Sequences},
24
- author={Uri Shaham and Elad Segal and Maor Ivgi and Avia Efrat and Ori Yoran and Adi Haviv and Ankit Gupta and Wenhan Xiong and Mor Geva and Jonathan Berant and Omer Levy},
25
- year={2022},
26
- eprint={2201.03533},
27
- archivePrefix={arXiv},
28
- primaryClass={cs.CL}
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  }
30
  """
31
 
 
7
  import datasets
8
 
9
  _ZERO_SCROLLS_CITATION = """
10
+ @misc{shaham2023zeroscrolls,
11
+ title={ZeroSCROLLS: A Zero-Shot Benchmark for Long Text Understanding},
12
+ author={Uri Shaham and Maor Ivgi and Avia Efrat and Jonathan Berant and Omer Levy},
13
+ year={2023},
14
+ eprint={2305.14196},
15
+ archivePrefix={arXiv},
16
+ primaryClass={cs.CL}
17
+ }
18
  Note that each ZeroSCROLLS task has its own citation. Please see the source to
19
  get the correct citation for each one.
20
  """
 
26
  """
27
 
28
  _SCROLLS_CITATION = """
29
+ @inproceedings{shaham-etal-2022-scrolls,
30
+ title = "{SCROLLS}: Standardized {C}ompa{R}ison Over Long Language Sequences",
31
+ author = "Shaham, Uri and
32
+ Segal, Elad and
33
+ Ivgi, Maor and
34
+ Efrat, Avia and
35
+ Yoran, Ori and
36
+ Haviv, Adi and
37
+ Gupta, Ankit and
38
+ Xiong, Wenhan and
39
+ Geva, Mor and
40
+ Berant, Jonathan and
41
+ Levy, Omer",
42
+ booktitle = "Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing",
43
+ month = dec,
44
+ year = "2022",
45
+ address = "Abu Dhabi, United Arab Emirates",
46
+ publisher = "Association for Computational Linguistics",
47
+ url = "https://aclanthology.org/2022.emnlp-main.823",
48
+ pages = "12007--12021",
49
  }
50
  """
51