narinzar commited on
Commit
cb4aaf7
·
verified ·
1 Parent(s): 78d493a

Upload qa.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. qa.json +77 -0
qa.json ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "description": "Hand-written retrieval eval set. Each query has one or more answer substrings that must appear verbatim (case- and whitespace-insensitive) in a relevant passage. A retrieved chunk is judged relevant if it contains any of the substrings. Substrings are short canonical phrases from the bundled public-domain corpus to stay stable across editions; if scripts/00_prepare_corpus.py warns that a substring is missing, adjust it to match your fetched edition.",
3
+ "queries": [
4
+ {
5
+ "id": "alice_rabbit_hole",
6
+ "question": "What did Alice fall down at the start of her adventure?",
7
+ "answers": ["down the rabbit-hole"],
8
+ "source": "alice_in_wonderland.txt"
9
+ },
10
+ {
11
+ "id": "alice_white_rabbit",
12
+ "question": "What was the White Rabbit worried about being?",
13
+ "answers": ["I shall be late"],
14
+ "source": "alice_in_wonderland.txt"
15
+ },
16
+ {
17
+ "id": "alice_eat_me",
18
+ "question": "What was written on the little cake Alice found?",
19
+ "answers": ["EAT ME"],
20
+ "source": "alice_in_wonderland.txt"
21
+ },
22
+ {
23
+ "id": "alice_curiouser",
24
+ "question": "What did Alice exclaim when she started growing?",
25
+ "answers": ["Curiouser and curiouser"],
26
+ "source": "alice_in_wonderland.txt"
27
+ },
28
+ {
29
+ "id": "timemachine_traveller",
30
+ "question": "What name is given to the man explaining time travel?",
31
+ "answers": ["Time Traveller"],
32
+ "source": "the_time_machine.txt"
33
+ },
34
+ {
35
+ "id": "timemachine_dimension",
36
+ "question": "How does the Time Traveller describe time relative to space?",
37
+ "answers": ["Fourth Dimension"],
38
+ "source": "the_time_machine.txt"
39
+ },
40
+ {
41
+ "id": "timemachine_eloi",
42
+ "question": "What are the small, gentle future people called?",
43
+ "answers": ["Eloi"],
44
+ "source": "the_time_machine.txt"
45
+ },
46
+ {
47
+ "id": "timemachine_morlocks",
48
+ "question": "What are the underground creatures in the future called?",
49
+ "answers": ["Morlocks"],
50
+ "source": "the_time_machine.txt"
51
+ },
52
+ {
53
+ "id": "scarlet_meeting",
54
+ "question": "How does Watson describe first meeting Holmes over a discovery?",
55
+ "answers": ["I’ve found it"],
56
+ "source": "a_study_in_scarlet.txt"
57
+ },
58
+ {
59
+ "id": "scarlet_afghanistan",
60
+ "question": "Where had Watson served as an army doctor before meeting Holmes?",
61
+ "answers": ["Afghanistan"],
62
+ "source": "a_study_in_scarlet.txt"
63
+ },
64
+ {
65
+ "id": "scarlet_rache",
66
+ "question": "What word was written in blood on the wall at the crime scene?",
67
+ "answers": ["RACHE"],
68
+ "source": "a_study_in_scarlet.txt"
69
+ },
70
+ {
71
+ "id": "scarlet_baker_street",
72
+ "question": "What is the address of the rooms Holmes and Watson share?",
73
+ "answers": ["Baker Street"],
74
+ "source": "a_study_in_scarlet.txt"
75
+ }
76
+ ]
77
+ }