lambada_cloze.py 1.46 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
The LAMBADA dataset: Word prediction requiring a broad discourse context∗
https://arxiv.org/pdf/1606.06031.pdf

Cloze-style LAMBADA dataset.
LAMBADA is a dataset to evaluate the capabilities of computational models for text
understanding by means of a word prediction task. LAMBADA is a collection of narrative
passages sharing the characteristic that human subjects are able to guess their last
word if they are exposed to the whole passage, but not if they only see the last
sentence preceding the target word. To succeed on LAMBADA, computational models
cannot simply rely on local context, but must be able to keep track of information
in the broader discourse.

Homepage: https://zenodo.org/record/2630551#.X4Xzn5NKjUI
"""
Leo Gao's avatar
Leo Gao committed
16
from lm_eval.tasks.lambada import LAMBADA
17
18


19
20
_CITATION = """
@misc{
Fabrizio Milo's avatar
Fabrizio Milo committed
21
    author={Paperno, Denis and Kruszewski, Germán and Lazaridou, Angeliki and Pham, Quan Ngoc and Bernardi, Raffaella and Pezzelle, Sandro and Baroni, Marco and Boleda, Gemma and Fernández, Raquel},
22
23
24
25
26
27
28
    title={The LAMBADA dataset},
    DOI={10.5281/zenodo.2630551},
    publisher={Zenodo},
    year={2016},
    month={Aug}
}
"""
29
30


Leo Gao's avatar
Leo Gao committed
31
class LAMBADA_cloze(LAMBADA):
Leo Gao's avatar
Leo Gao committed
32
    VERSION = 0
Jonathan Tow's avatar
Jonathan Tow committed
33

34
    def doc_to_text(self, doc):
Fabrizio Milo's avatar
Fabrizio Milo committed
35
        return doc["text"].rsplit(" ", 1)[0] + " ____. ->"
36

37
38
39
40
    def should_decontaminate(self):
        return True

    def doc_to_decontamination_query(self, doc):
Fabrizio Milo's avatar
Fabrizio Milo committed
41
        return doc["text"]
42

43
    def doc_to_target(self, doc):
Fabrizio Milo's avatar
Fabrizio Milo committed
44
        return " " + doc["text"].rsplit(" ", 1)[1]