File size: 936 Bytes
b224b8d
 
0cbfa10
 
 
 
b224b8d
0cbfa10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
license: mit
task_categories:
- question-answering
language:
- en
---

# Data

### Original source
All question-answer pairs were obtained from the [DPR](https://github.com/facebookresearch/DPR) repository.

### Data format

The expected data format is a list of entry examples, where each entry example is a dictionary containing
- `question`: question text
- `reference`: list of answer text for evaluation
- `ctxs`: a list of passages

Entry example:
```
{
  'question': 'who got the first nobel prize in physics',
  'answers': ['Wilhelm Conrad Röntgen'],
  'ctxs': [
            "Wilhelm Conrad Röntgen won first Nobel Prize in Physics.",
            "Wilhelm Conrad Röntgen won it for discovery of X-rays",
            "Albert Einstein was awarded the 1921 Nobel Prize in Physics",
            "The Nobel Prize in Physics is a yearly award.",
            "First law of thermodynamics was stated by William"
          ]
}
```