naturalqs.py 5.3 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
Natural Questions: a Benchmark for Question Answering Research
https://storage.googleapis.com/pub-tools-public-publication-data/pdf/1f7b46b5378d757553d3e92ead36bda2e4254244.pdf

The Natural Questions (NQ) corpus is a question-answering dataset that contains
questions from real users and requires QA systems to read and comprehend an entire
Wikipedia article that may or may not contain the answer to the question. The
inclusion of real user questions, and the requirement that solutions should read
an entire page to find the answer, cause NQ to be a more realistic and challenging
task than prior QA datasets.

TODO: NaturalQS has a *really* large train set that huggingface just automatically
downloads even if you dont use it. we should try and only download the val set and
not even bother with the train set. 

Homepage: https://ai.google.com/research/NaturalQuestions
"""
Jonathan Tow's avatar
Jonathan Tow committed
18
from lm_eval.base import Task
Leo Gao's avatar
Leo Gao committed
19
from itertools import islice
20

21

22
23
24
25
26
27
28
29
30
_CITATION = """
@article{47761,
    title={Natural Questions: a Benchmark for Question Answering Research},
    author={Tom Kwiatkowski and Jennimaria Palomaki and Olivia Redfield and Michael Collins and Ankur Parikh and Chris Alberti and Danielle Epstein and Illia Polosukhin and Matthew Kelcey and Jacob Devlin and Kenton Lee and Kristina N. Toutanova and Llion Jones and Ming-Wei Chang and Andrew Dai and Jakob Uszkoreit and Quoc Le and Slav Petrov},
    year={2019},
    journal={Transactions of the Association of Computational Linguistics}
}
"""

Leo Gao's avatar
Leo Gao committed
31

Jonathan Tow's avatar
Jonathan Tow committed
32
class NaturalQs(Task):
Leo Gao's avatar
Leo Gao committed
33
    VERSION = 0
34
35
36
37
38
39
40
41
42
43
44
45
    DATASET_PATH = "natural_questions"
    DATASET_NAME = None

    def has_training_docs(self):
        return True

    def has_validation_docs(self):
        return True

    def has_test_docs(self):
        return False

46
47
48
    def training_docs(self):
        # Cache training for faster few-shot.
        # Data is too large to fit in memory.
Jonathan Tow's avatar
Jonathan Tow committed
49
50
51
52
53
54
        if self._training_docs is None:
            self._training_docs = list(self.dataset["train"])
        return self._training_docs

    def validation_docs(self):
        return self.dataset["validation"]
55

56
    def fewshot_examples(self, k, rnd):
Leo Gao's avatar
Leo Gao committed
57
        # Data is too large to fit in memory. We just sample from the first bit.
58
59
        if self._training_docs is None:
            self._training_docs = list(islice(self.training_docs(), 0, 100000))
Leo Gao's avatar
Leo Gao committed
60

Leo Gao's avatar
Leo Gao committed
61
        return rnd.sample(self._training_docs, k)
Leo Gao's avatar
Leo Gao committed
62

63
    def doc_to_text(self, doc):
Leo Gao's avatar
Leo Gao committed
64
        return 'Q: ' + doc['question']['text'] + '\n\n' + 'A:'
65

66
67
68
69
70
71
    def should_decontaminate(self):
        return True

    def doc_to_decontamination_query(self, doc):
        return doc['question']['text']

72
73
74
75
76
77
78
79
80
81
    def doc_to_target(self, doc):
        # There's a short answer and a long answer. Based on the paper, I'm using the long answer.
        short_answer = doc['annotations']['short_answers'][0]['text']
        long_answer_start = doc['annotations']['long_answer'][0]['start_token']
        long_answer_end = doc['annotations']['long_answer'][0]['end_token']
        long_answer_span = doc['document']['tokens']['token'][long_answer_start:long_answer_end]
        long_answer_is_html = doc['document']['tokens']['is_html'][long_answer_start:long_answer_end]
        long_answer_chars = [tok for (tok, is_html) in zip(long_answer_span, long_answer_is_html) if not is_html]
        long_answer = " ".join(long_answer_chars)
        return long_answer # Replace with short_answer[0] for short answer
82

Leo Gao's avatar
Leo Gao committed
83
84
85
    def construct_requests(self, doc, ctx):
        """ Uses RequestFactory to construct Requests and returns an iterable of 
        Requests which will be sent to the LM.
86

Leo Gao's avatar
Leo Gao committed
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
        :param doc:
            The document as returned from training_docs, validation_docs, or test_docs.
        :param ctx: str
            The context string, generated by fewshot_context. This includes the natural 
            language description, as well as the few shot examples, and the question
            part of the document for `doc`. 
        """
        # TODO: implement evaluation.
        raise NotImplementedError('Evaluation not implemented')
    
    def process_results(self, doc, results):
        """Take a single document and the LM results and evaluates, returning a 
        dict where keys are the names of submetrics and values are the values of 
        the metric for that one document

        :param doc:
            The document as returned from training_docs, validation_docs, or test_docs.
        :param results:
            The results of the requests created in construct_requests.
        """
        # TODO: implement evaluation.
        raise NotImplementedError('Evaluation not implemented')

    def aggregation(self):
        """
        :returns: {str: [float] -> float}
            A dictionary where keys are the names of submetrics and values are 
            functions that aggregate a list of metrics
        """
        # TODO: implement evaluation.
        raise NotImplementedError('Evaluation not implemented')

    def higher_is_better(self):
        """
        :returns: {str: bool}
            A dictionary where keys are the names of submetrics and values are 
            whether a higher value of the submetric is better
        """
        # TODO: implement evaluation.
Leo Gao's avatar
Leo Gao committed
126
        raise NotImplementedError('Evaluation not implemented')