-
Notifications
You must be signed in to change notification settings - Fork 190
/
task013_mctaco_answer_generation_absolute_timepoint.json
3005 lines (3005 loc) · 130 KB
/
task013_mctaco_answer_generation_absolute_timepoint.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Contributors": [
"Swaroop Mishra",
"Daniel Khashabi"
],
"Source": [
"mctaco"
],
"URL": [
"https://github.com/CogComp/MCTACO"
],
"Categories": [
"Question Answering"
],
"Reasoning": [
"Temporal Reasoning",
"Commonsense Reasoning"
],
"Definition": [
"In this task, we ask you to write an answer to a question about when an event happened. For example, \"going to school\" usually happens during the day (not at 2 A.M). Note that a lot of the questions could have more than one correct answer. We only need a single most-likely answer. Please try to keep your \"answer\" as simple as possible. Concise and simple \"answer\" is preferred over those complex and verbose ones."
],
"Input_language": [
"English"
],
"Output_language": [
"English"
],
"Instruction_language": [
"English"
],
"Domains": [
"News",
"Wikipedia",
"Law",
"Justice",
"History",
"History -> 9/11 Reports",
"Anthropology",
"School Science Textbooks",
"Fiction"
],
"Positive Examples": [
{
"input": "Sentence: Jack played basketball after school, after which he was very tired. \nQuestion: When did Jack play basketball?",
"output": "4 PM.",
"explanation": "This event likely happened between 3PM to 8PM. This is a good answer."
},
{
"input": "Sentence: He was born in China, so he went to the Embassy to apply for a U.S. Visa. \nQuestion: What time of the day was he doing this?",
"output": "2 PM.",
"explanation": "We know when embassies typically work, just need to give one plausible answer. Answers similar to \"2 AM\" are definitely wrong."
},
{
"input": "Sentence: Princes and princesses judged the merits of birds, insects, flowers, roots, or seashells. \nQuestion: When did they judge the merits of birds, insects, flowers, roots, or seashells?",
"output": "Centuries ago",
"explanation": "Your answer can be an explanation of a time. It doesn't need to be a certain date or time."
}
],
"Negative Examples": [
{
"input": "Sentence: Jack played basketball after school, after which he was very tired. \nQuestion: When did Jack play basketball?",
"output": "2 AM.",
"explanation": "This event likely happened between 3PM to 8PM, definitely not 2AM. So, this is a bad answer."
},
{
"input": "Sentence: They also liked to go through the small forest behind the house, making a game of hide and seek. \nQuestion: What time did they play hide and seek?",
"output": "At midnight",
"explanation": "It's very unlikely that people play in the forest at midnight, so this is not a good answer."
}
],
"Instances": [
{
"id": "task013-c8f32af5e910440a8ba9d7f223e72b79",
"input": "Sentence: It's hail crackled across the comm, and Tara spun to retake her seat at the helm. \nQuestion: What time of day was the storm?",
"output": [
"7:00 PM.",
"it was morning.",
"5:00 PM.",
"7:00 AM.",
"it was evening.",
"3:00 PM."
]
},
{
"id": "task013-6c15ea2da0e54051b1d191b6af1dcc89",
"input": "Sentence: Still , Preetam vows to marry Nandini if she meets him again . \nQuestion: What day did they meet?",
"output": [
"saturday.",
"friday."
]
},
{
"id": "task013-7f8f40f09f1a4f219c0261ee157671aa",
"input": "Sentence: Carl Laemmle, head of Universal Studios, gave Einstein a tour of his studio and introduced him to Chaplin. \nQuestion: At what time did Einstein return home?",
"output": [
"8:00 PM.",
"a hour later."
]
},
{
"id": "task013-4362553f86ec4157bcb88b94dfa21c5a",
"input": "Sentence: His counter-attack with Dayak warriors drove the Chinese out of Bau and across the Sarawak border. \nQuestion: What time did the battle end?",
"output": [
"7:00 PM.",
"7:00 AM.",
"midnight.",
"5:00 AM."
]
},
{
"id": "task013-6c3f8c1540214d178de3f22685f027d0",
"input": "Sentence: The Spanish immediately began subjugating the Arawak population, many of whom died under the yoke of oppression and of diseases carried by the Europeans. \nQuestion: What time did the Spanish arrive?",
"output": [
"at dawn."
]
},
{
"id": "task013-47ab2869c4774c92b4653b21a2df47e8",
"input": "Sentence: The 300-millimeter silicon wafers -- about the size of a standard pizza -- are shuttled around the facility in enclosed plastic pods, which ride on overhead tracks. \nQuestion: At what time do the wafers get placed on tracks?",
"output": [
"2:00 PM.",
"1:00 PM.",
"3:00 PM.",
"10:00 AM.",
"5:00 PM.",
"about 10 am.",
"12:00 PM."
]
},
{
"id": "task013-2cb822123e7b494d8fb385f5c88a5d9f",
"input": "Sentence: But he told us that he could not drum up much interest in or money for such a purpose from Washington, partly, he thought, because these countries had dictatorial governments. \nQuestion: When did he first pursue financial interests in those countries?",
"output": [
"once he got to washington."
]
},
{
"id": "task013-6fb6a8183f3b4f7b8ec5dab0b10b0d7d",
"input": "Sentence: Bailey received the award for his three years of volunteer work at Indiana Pro Bono Commission. \nQuestion: When did Bailey receive their award?",
"output": [
"1:00 PM."
]
},
{
"id": "task013-92a6d4bf0d4b4481af47f213cf1d9374",
"input": "Sentence: In 1930, the poet Muhammad Iqbal proposed a separate Muslim homeland in the northwest of India. \nQuestion: What time of the day was the proposal made?",
"output": [
"5:00 PM.",
"1:00 PM.",
"3:30 PM.",
"4:00 PM.",
"noon."
]
},
{
"id": "task013-2f03339be4c64c98939ac56ecff231d2",
"input": "Sentence: There was even a tiny room in the back of one of the closets. \nQuestion: What time was the room usually occupied?",
"output": [
"2:00 PM.",
"6:00 PM.",
"8:00 PM."
]
},
{
"id": "task013-89be02eb6a20404fa8637264d8ad3d67",
"input": "Sentence: Joe did and after he got a bandage on his arm, he and his father rode in the field on the tractor. \nQuestion: What time did Joe and his father ride in the field?",
"output": [
"4:00 PM.",
"10:00 AM.",
"3:00 PM."
]
},
{
"id": "task013-2550d801613840d6a235df01e49db11d",
"input": "Sentence: The resolution creating the new intelligence committee structure should grant subpoena authority to the committee or committees. \nQuestion: When will the subpoena be granted?",
"output": [
"the subpoena will be granted after the committee is granted authority to grant subpoenas."
]
},
{
"id": "task013-da3872e61a994c6ca656de8ce59c64eb",
"input": "Sentence: Pushkin gradually became committed to social reform and emerged as a spokesman for literary radicals. \nQuestion: What time of day would Pushkin most likely speak?",
"output": [
"4:00 PM.",
"pushkin liked to speak at high noon usually.",
"5:00 PM.",
"12:00 PM."
]
},
{
"id": "task013-5e795a874fee4ccfb41ef40d88482027",
"input": "Sentence: Yonggary is then sent to the city and does some damage , where some jets attack him . \nQuestion: What time did the jets attack Yonggary?",
"output": [
"8:00 PM.",
"1:00 PM.",
"5:00 AM.",
"3:00 AM.",
"4:00 PM.",
"9:00 AM.",
"1:00 AM.",
"noon.",
"3:00 PM.",
"at 16:00.",
"10:00 AM.",
"5:00 PM.",
"midnight."
]
},
{
"id": "task013-91cf6537bb224e4a9451e4811c3a70d2",
"input": "Sentence: She ordered the tastiest kind of each vegetable and the prettiest kind of each flower. \nQuestion: When did she order them?",
"output": [
"at 5 pm.",
"in the afternoon."
]
},
{
"id": "task013-5b1cf663f3f7499da6a8bd2187543e1e",
"input": "Sentence: I clapped her shoulder to show I was not laughing at her. \nQuestion: When did they clap her shoulder?",
"output": [
"four minutes ago."
]
},
{
"id": "task013-102ea743ece3454fbba402c6a8027d45",
"input": "Sentence: In 1996 the WHO found that much of the population existed in a state of ``semi-starvation.''. \nQuestion: What day did the WHO discover this fact?",
"output": [
"monday.",
"tuesday.",
"on monday."
]
},
{
"id": "task013-fb11707aae354b36823010d181f54d9a",
"input": "Sentence: An indictment filed in the case detailed interactions between group members as they swapped and commented on images. \nQuestion: What time of day did the group members most likely meet?",
"output": [
"4:00 PM.",
"in the evening.",
"in the morning.",
"6:00 PM.",
"1:00 PM.",
"3:00 PM."
]
},
{
"id": "task013-c7e3a4bdca53426589aa27d0029a6f5d",
"input": "Sentence: Pushkin published his first poem at the age of fifteen, and was widely recognized by the literary establishment by the time of his graduation from the Tsarskoye Selo Lyceum. \nQuestion: At what age did Pushkin graduate from Tsarskoye Selo Lyceum?",
"output": [
"age 19."
]
},
{
"id": "task013-3d3472fadf7d4806b592179f563acada",
"input": "Sentence: Search \"Emiliano Malaquez\" and you'll find he's a master of the \"captured moment\" school of sculpture. \nQuestion: When did Emiliano Malaquez finish his sculpture?",
"output": [
"3 week before he turned 39 years old.",
"1 week before he turned 39 years old.",
"1 week after he turned 39 years old."
]
},
{
"id": "task013-f323c02a362447c195080da249853bf3",
"input": "Sentence: The fossils that are very distinct at certain times of Earths history are called index fossils. \nQuestion: When were the fossils found?",
"output": [
"4 years ago.",
"10 years ago.",
"20 years ago."
]
},
{
"id": "task013-aa767580c9984df999b64a128853e975",
"input": "Sentence: Tim knew if the bike was going to be in any of the presents it was going to be in this box. \nQuestion: What time of the day did Tim seize the box?",
"output": [
"9:00 AM."
]
},
{
"id": "task013-8a275ad9bbf94e89a29fbe1a6b7480b7",
"input": "Sentence: Ana studied very hard to be the best she could be at spelling. \nQuestion: What time of the day did Ana usually study?",
"output": [
"at 8 in the morning.",
"around 7 pm.",
"2:00 PM.",
"around 6:00 pm.",
"at 8 in the evening."
]
},
{
"id": "task013-da904b2c2a0b4198b2c8ab213c139372",
"input": "Sentence: Jerry swims in circles until Tom's head has done a 360 , and is then grabbed again . \nQuestion: What time did Jerry swim?",
"output": [
"1:00 PM.",
"9:00 AM."
]
},
{
"id": "task013-1dbee356451c44c5b294b7b71769313d",
"input": "Sentence: So really, that's what many of the people are doing now,\" he said. \nQuestion: When did they begin doing it?",
"output": [
"a few days ago.",
"a few weeks ago."
]
},
{
"id": "task013-1b247ccf4a7e4041ab9307bb729ea345",
"input": "Sentence: Mama kept her mink jacket, a family hand-me-down, safe from time in a stopbox, and lent the capturador to my uncle for his stamp collection. \nQuestion: When did Mama put the jacket in the stopbox?",
"output": [
"last year.",
"last season."
]
},
{
"id": "task013-a04bc099998343d2b4147d27d035a5e9",
"input": "Sentence: Grants of tax-free land over the years had been made to Buddhist temples and members of the court aristocracy. \nQuestion: When were the grants introduced?",
"output": [
"100 years ago.",
"1900."
]
},
{
"id": "task013-03fe317ccc614af18fb38634ba8f81bc",
"input": "Sentence: Convicted murderer Seth Baxter awakens chained to a table beneath a pendulum blade . \nQuestion: When did he get chained to the table?",
"output": [
"while he was unconscious."
]
},
{
"id": "task013-2c0225b989f1425bbc506c75a569c72a",
"input": "Sentence: The Shang Dynasty gave rise to the concept of one Chinese nation under one government. \nQuestion: What year did the Shang Dynasty begin?",
"output": [
"1600 bce."
]
},
{
"id": "task013-f41ec4abd1d543cd9b483d830a83b0ef",
"input": "Sentence: But Judge Thornton declared in court, \"When these orders are entered, you don't just do whatever you damn well please and ignore them.\". \nQuestion: When did court start?",
"output": [
"7:00 AM.",
"8:00 AM.",
"9:00 AM.",
"11:00 AM."
]
},
{
"id": "task013-7d9097055b774268bc0762aff5bbdbee",
"input": "Sentence: He said that Oliver North of Iran-Contra notoriety thought he had erased his computer but that the information was later retrieved for congressional committees to read. \nQuestion: When did they retrieve the data from the computer?",
"output": [
"in summer of last year.",
"in spring of last year.",
"last year."
]
},
{
"id": "task013-6faa14e831e54d3db8ed1a756f95fda7",
"input": "Sentence: They like to play hopscotch or jump rope but that day they wanted to play tag. \nQuestion: When did they start playing?",
"output": [
"at 2 pm.",
"they started playing at 10am.",
"3:00 PM."
]
},
{
"id": "task013-8cd2519616cc45a8890229936a5fcece",
"input": "Sentence: He jumped on his favorite chair and looked down as Maggie ran under it. \nQuestion: At what time were these people playing around the chair?",
"output": [
"7:00 PM.",
"2:00 PM.",
"6:00 PM."
]
},
{
"id": "task013-2e4051b0deab4b91ad53fd7f93b8b8fc",
"input": "Sentence: Radio Televizioni Shqiptar (RTSH) is the public radio and TV broadcaster of Albania, founded by King Zog in 1938. \nQuestion: How old was King Zog when he founded RTSH?",
"output": [
"32.",
"king zog was only 45.",
"king zog was 35 years old."
]
},
{
"id": "task013-9fe821e1102e49d9a0b334dd1e2f03f7",
"input": "Sentence: Lucrezia is an honorable woman and does not at first agree to meet with the stranger . \nQuestion: What time did she meet with the stranger?",
"output": [
"5:00 PM.",
"2:00 PM.",
"6:00 PM."
]
},
{
"id": "task013-4f89a3620e22491aac9605fb16598ab0",
"input": "Sentence: In another major paper from this era, Einstein gave a wave equation for de Broglie waves, which Einstein suggested was the Hamilton-Jacobi equation of mechanics. \nQuestion: What time did Einstein publish his wave equation?",
"output": [
"noon."
]
},
{
"id": "task013-386db91b0ed34949aa0d1eda33898980",
"input": "Sentence: Advocating civil disobedience, he led his famous Salt March to the sea, to scoop up salt and circumvent the hated British salt tax. \nQuestion: What time did he reach the shore of the sea?",
"output": [
"4:00 PM."
]
},
{
"id": "task013-036015818ddb40d38e0ff19ce9ffe92b",
"input": "Sentence: The new novel takes place in a morally gray and often violent world. \nQuestion: When did the violence begin?",
"output": [
"at the beginning of the novel."
]
},
{
"id": "task013-454579148e4149d094991a94bd4a5dff",
"input": "Sentence: At Christie's, a folio of 21 prints from Alfred Stieglitz's \"Equivalents\" series sold for $396,000, a single-lot record. \nQuestion: When did the prints sell?",
"output": [
"1:00 PM.",
"4:00 PM.",
"12:00 PM.",
"friday.",
"sunday.",
"tuesday."
]
},
{
"id": "task013-c01daba271b3460ca089478f2b7087db",
"input": "Sentence: The Minangkabau custom of freely electing their leaders provided the model for rulership elections in modern federal Malaysia. \nQuestion: What time do the elections occur?",
"output": [
"11:00 AM."
]
},
{
"id": "task013-de561e6ce96c43a79ea20081b7abae9c",
"input": "Sentence: They packed up the car and drove to the library, ready for a fun morning. \nQuestion: When did they get to the library?",
"output": [
"10:00 AM.",
"8:00 AM.",
"9:00 AM."
]
},
{
"id": "task013-23ac49ee89ae4b3a821fdc043465c24b",
"input": "Sentence: Having damaged the enemy's cohesion, Philip ordered his troops to press forward and quickly routed them. \nQuestion: What time did Philip's troops start moving?",
"output": [
"7:00 AM.",
"5:00 AM.",
"12:00 PM.",
"9:00 AM.",
"6:00 AM."
]
},
{
"id": "task013-241c0aa558124adfb71247ac27e605bd",
"input": "Sentence: Tumble liked to walk around outside in the garden and dig small holes to sleep in. \nQuestion: What time did Tumble go outside?",
"output": [
"in the evening.",
"in the afternoon.",
"in the morning."
]
},
{
"id": "task013-1f83c46cdec841529b091f521fea2f41",
"input": "Sentence: A thin, washed-out, pretty woman stood up, and clasped her hands in front of her. \nQuestion: When did she clasp her hands?",
"output": [
"7:00 PM."
]
},
{
"id": "task013-58ddd37befd94d4f852f05049ae4629a",
"input": "Sentence: When he's not working for a Washington defense attorney, Lucas recovers stolen property for a 40% cut. \nQuestion: What time does he arrive for work as a defense attorney?",
"output": [
"9:00 AM."
]
},
{
"id": "task013-4cd3d2d4c99a47c8904869eccf1881b9",
"input": "Sentence: The state has been first to pass major public health initiatives that have spread throughout the country. \nQuestion: What day did the health initiatives pass?",
"output": [
"monday.",
"on a wednesday.",
"yesterday."
]
},
{
"id": "task013-6ecdfee041c949119e264f6a4e00a546",
"input": "Sentence: Diggler became a prominent model and began appearing in pornographic films , after Which his career took off . \nQuestion: When did Diggler start modeling?",
"output": [
"in his early 20's.",
"in his late 20's.",
"in the year 1995."
]
},
{
"id": "task013-daa116c0e48a4ad580dff07f300170ba",
"input": "Sentence: Boston Center TMU [Traffic Management Unit], we have a problem here. \nQuestion: What time was the problem discovered?",
"output": [
"9:00 PM.",
"7:00 AM.",
"7:00 PM.",
"1:00 PM.",
"9:00 AM.",
"3:00 PM.",
"6:00 AM."
]
},
{
"id": "task013-a6ca299ff56e4455996fe76488a137fd",
"input": "Sentence: Atta and Omari boarded a 6:00 A.M. flight from Portland to Boston's Logan International Airport. \nQuestion: What day did they fly on the plane?",
"output": [
"christmas day.",
"wednesday."
]
},
{
"id": "task013-08935f0563c94b15a673379ce5ca5c82",
"input": "Sentence: The person may walk a half mile in the wrong direction!. \nQuestion: When did the person start walking in the wrong direction?",
"output": [
"3 minutes ago.",
"10 minutes ago."
]
},
{
"id": "task013-52a5d4af14b14bae8105a3bf80fb2b76",
"input": "Sentence: After finally sleeping with Lucrezia , Callimaco confesses everything . \nQuestion: When did Callimaco sleep with Lucrezia?",
"output": [
"the night before."
]
},
{
"id": "task013-1990b26324aa4629aaae07454fd3bb76",
"input": "Sentence: Because then they feel like they are forced to stay in that situation.\". \nQuestion: When did they start feeling forced to stay?",
"output": [
"two weeks ago.",
"last month."
]
},
{
"id": "task013-a474dc18a43b4b1e831fda4b2572237c",
"input": "Sentence: She later adopted the stage name Fontaine -- the name of her mother's second husband. \nQuestion: What time of the day did her mother marry the second husband?",
"output": [
"11:00 AM."
]
},
{
"id": "task013-2e4daf83803542259508ed51bcb512d8",
"input": "Sentence: California was first to require smog checks for clean air, pass anti-tobacco initiatives and bike helmets laws. \nQuestion: When was the anti-tobacco initiative passed?",
"output": [
"in the year 1990."
]
},
{
"id": "task013-34e8adad67c74f64aa904cbd273536f8",
"input": "Sentence: Third, no middle ground exists in what Qutb conceived as a struggle between God and Satan. \nQuestion: What day did the struggle begin?",
"output": [
"monday.",
"sunday.",
"tuesday."
]
},
{
"id": "task013-7f73b33d05f444969f9e3c731cd8ec2f",
"input": "Sentence: Einstein's affiliation with the Institute for Advanced Study would last until his death in 1955. \nQuestion: When did Einstein become a faculty member at the Institute for Advanced Study?",
"output": [
"in 1933."
]
},
{
"id": "task013-29f30f4c9f344f8ba0e0fa5e36aad9e1",
"input": "Sentence: Estimates of his date of birth vary by well over a century. \nQuestion: What time was his birth?",
"output": [
"7:00 AM.",
"8:31 AM.",
"12:00 PM.",
"4:00 PM.",
"4:00 AM.",
"8:31 PM."
]
},
{
"id": "task013-b546ce1dd17b4bde956775ccb61ef295",
"input": "Sentence: Those in the shelter wondered if the aircraft had been shot down pursuant to this authorization. \nQuestion: What time was the aircraft shot down?",
"output": [
"4:00 PM.",
"9:00 PM.",
"3:00 AM.",
"10 p.m.",
"3.33 p.m.",
"6:00 PM.",
"12:00 AM.",
"1:00 AM.",
"3 a.m.",
"9 a.m.",
"9:00 AM.",
"1 a.m.",
"4:00 AM."
]
},
{
"id": "task013-4c8baa42f4f449d6a7ab592c330c7ca4",
"input": "Sentence: The fiction of Japanese imperial power had become infinitely extendable. \nQuestion: When did the fiction of Japanese imperial power take root?",
"output": [
"before the meiji era.",
"after the meiji era.",
"1750."
]
},
{
"id": "task013-9d49a1cc9da641e09fac7cb5f5027967",
"input": "Sentence: In Malaysia, Powell met with Prime Minister Mahathir Mohamad, who has led the country since 1981. \nQuestion: When did Powell and the Prime Minister meet ?",
"output": [
"the prime minister and powell met after 1981.",
"powell and the prime minister met after 1981."
]
},
{
"id": "task013-99a96fe45be3443e8827e0fd923207bf",
"input": "Sentence: Police Captain Richard Brookwell calls Cross and his partner , Tommy Kane , to the crime scene . \nQuestion: What time did they go to the crime scene?",
"output": [
"4:00 PM.",
"at 11 am.",
"noon today.",
"noon yesterday."
]
},
{
"id": "task013-2ee27681dc134bad96d80f4470952651",
"input": "Sentence: Charlie decides to rob the train with the help of imprisoned Don and con-artist Victor Braganza . \nQuestion: What time did the robbery occur?",
"output": [
"it occurred around noon.",
"12:00 AM.",
"7:00 PM.",
"3:00 AM.",
"7:00 AM.",
"9:00 AM.",
"1:00 PM.",
"1:00 AM.",
"it occurred around midnight.",
"12:00 PM.",
"4:00 AM."
]
},
{
"id": "task013-e71ea65b1d99489795e2b67b6bfb5b13",
"input": "Sentence: It was huge and inefficient, and she should never have spent so many pesos on a toy, but Papa would not let her return it. \nQuestion: What time did she purchase the toy at the store?",
"output": [
"she purchased this toy at the store at 5pm.",
"she purchased the toy at the market at 5pm.",
"she purchased the toy from the store at 5pm.",
"she purchased the toy at the store at 5pm.",
"she bought the toy at the store at 5pm."
]
},
{
"id": "task013-bfbca26ee4904d78b6ec0a64e3145731",
"input": "Sentence: Zarco and Teixeira were appointed co-governors of Madeira, while Perestrelo was awarded Porto Santo. \nQuestion: When did the ceremony take place?",
"output": [
"1:00 PM.",
"3:00 PM.",
"the ceremony took place on inauguration day."
]
},
{
"id": "task013-781a40ace42f460a8a0adb68687d6bdb",
"input": "Sentence: At this early stage in its history Japan was already (for the most part) only nominally ruled by the emperor. \nQuestion: What time of day does the emperor most likely wake up?",
"output": [
"6:00 AM."
]
},
{
"id": "task013-64723f87bcbf4dde9b75a451cf1a68cc",
"input": "Sentence: Alexander the Great's accomplishments and legacy have been depicted in many cultures. \nQuestion: When did Alexander the Great reign?",
"output": [
"331 bc.",
"336 to 323 bc."
]
},
{
"id": "task013-9589503e1c974f4eac84c68da66673da",
"input": "Sentence: Joey spent the afternoon looking for his German Shepherd where they often played, like the field and forest. \nQuestion: What time did Joey find his German Shepherd ?",
"output": [
"6:00 PM."
]
},
{
"id": "task013-8777b11af9024cbab6bd7484d984d437",
"input": "Sentence: A plant uses a lot of energy to produce nectar. \nQuestion: What time of day does the plant produce nectar?",
"output": [
"4:00 PM.",
"3 p.m.",
"1 p.m.",
"3:00 PM.",
"12:00 PM."
]
},
{
"id": "task013-e6824c14c50e43f49f3161dc9b03f0e2",
"input": "Sentence: If you have ever heard, \"Eat a good breakfast\", thats why. \nQuestion: What time do you eat a good breakfast?",
"output": [
"8:00 AM.",
"i eat breakfast at 10am.",
"i eat breakfast at 6am in the morning.",
"7:00 AM."
]
},
{
"id": "task013-7b7fc4080e124472849dee632f6199fe",
"input": "Sentence: Other times, they play a game with Quack where they wave at Quack and laugh. \nQuestion: When do they play games?",
"output": [
"4:00 PM.",
"early evening.",
"weekends.",
"early morning.",
"2:00 PM.",
"12:00 PM.",
"at 5 pm everyday."
]
},
{
"id": "task013-c9ec087a34df42ada05fc2ebb5a1697c",
"input": "Sentence: The two become close friends but do not reveal the secrets . \nQuestion: What time would the friends most likely meet for lunch?",
"output": [
"3:00 PM."
]
},
{
"id": "task013-8dd99a5b47a44a1f8f6529bd4c5e6120",
"input": "Sentence: He also promises to `` come to '' him . \nQuestion: What time will he come?",
"output": [
"at 7 pm.",
"6:00 PM.",
"in a hour.",
"at 4 pm."
]
},
{
"id": "task013-77fd8e9d6c1a44ebb1b37eced03626fd",
"input": "Sentence: After the second World Trade Center crash, Boston Center managers recognized that both aircraft were transcontinental 767 jetliners that had departed Logan Airport. \nQuestion: What time did the planes crash into the World Trade Center?",
"output": [
"9:00 AM."
]
},
{
"id": "task013-8d0555c098d14373b312f9bf9712985d",
"input": "Sentence: Alexander II's death caused a great setback for the reform movement. \nQuestion: When did Alexander II die?",
"output": [
"March 13, 1881.",
"1881."
]
},
{
"id": "task013-f4b6ca0ae7c14407baff38e1c2713ae1",
"input": "Sentence: These organs all work together to help you gain energy from the food you eat. \nQuestion: When did the organs last convert food into energy?",
"output": [
"after breakfast this morning.",
"after breakfast this day."
]
},
{
"id": "task013-e4f8bb6d4738455ebd52e1247af623ab",
"input": "Sentence: Mintie, her colleagues say, could have made a lot of money in private practice. \nQuestion: When does Mintie start making money?",
"output": [
"next week when the business opens.",
"a week from now."
]
},
{
"id": "task013-9bf0844fc2694de8ae4503ad65ec020c",
"input": "Sentence: Another example is, I am at the corner of Maple Street and Main Street. Both streets may be a good reference for anyone living in your town. \nQuestion: When did they move to the town?",
"output": [
"this year.",
"this week.",
"this month.",
"last year.",
"last week."
]
},
{
"id": "task013-5f3bfe5e4a2443a986ab764ea2b5481d",
"input": "Sentence: The Portuguese Crown, delighted with its first important discovery, immediately embarked on a program of colonization. \nQuestion: What year did the Portuguese first attempt colonization of the new territory?",
"output": [
"the portuguese first attempted colonization of the new territory in the year 1500.",
"1507."
]
},
{
"id": "task013-fd287d79ad984511962dd32c53c85370",
"input": "Sentence: With this, it became impossible for me to stay upstairs, he said, pointing to the scars on his forearm. \nQuestion: When did he decide to move out?",
"output": [
"he moved out after he was cut on his forearms, within 3 month.",
"two months after the accident.",
"he moved out after he was cut on his forearms, within 1 month."
]
},
{
"id": "task013-5afd9fb5e7b74c2db9b74fe12c53d154",
"input": "Sentence: Khallad helped in Yemen until he was arrested in a case of mistaken identity and freed with Bin Laden's help, as we also mentioned earlier. \nQuestion: What year was Khallad arrested?",
"output": [
"1996.",
"1999."
]
},
{
"id": "task013-ea504bda300349abb49141ae756de77a",
"input": "Sentence: The hordes of people who attended Hoover Dam's 1935 dedication set the city's now-formidable public relations machine into action. \nQuestion: What time did the dedication occur?",
"output": [
"the dedication began at 12pm.",
"the dedication occurred at 12pm.",
"11 a.m.",
"the dedication occurred at 12 noon.",
"the dedicated occurred at 12pm.",
"3:00 PM."
]
},
{
"id": "task013-eb13f36f0571454aa448431e5b24e1b2",
"input": "Sentence: Jerry goes out to the pier and casts his favorite bait : cheese . \nQuestion: When did Jerry go to the pier?",
"output": [
"8:00 AM.",
"9:00 AM.",
"he went at 07:00 am."
]
},
{
"id": "task013-2bdb7b6402df4081a31e59271356b61a",
"input": "Sentence: Logs indicate that it began at 9:25 and included the CIA; the FBI; the departments of State, Justice, and Defense; the FAA; and the White House shelter. \nQuestion: When did the event end?",
"output": [
"at noon.",
"10:10 AM."
]
},
{
"id": "task013-e5c20dd722b84ed783daa837bf267f3d",
"input": "Sentence: He ran all around the pond, barking at the ducks. \nQuestion: What time did he bark at the ducks?",
"output": [
"4:00 PM.",
"9:00 AM.",
"12:00 PM.",
"at 3pm."
]
},
{
"id": "task013-1289a3cc8579420aa6a8e20d4b3f2f4e",
"input": "Sentence: When everything was ready, she removed the seedlings from their trays and planted them in her garden. \nQuestion: At what time of the day did she start getting everything ready?",
"output": [
"10:00 AM.",
"8:00 AM.",
"11:00 AM.",
"at 9 am."
]
},
{
"id": "task013-20a4bcebeb6c4522ace982bf2f80ff40",
"input": "Sentence: Nibras and Quso delivered money to Khallad in Bangkok during Khallad's January 2000 trip to Kuala Lumpur and Bangkok. \nQuestion: What time did Khallad leave for his trip?",
"output": [
"10:00 AM.",
"10:00 PM.",
"3:00 PM.",
"7:00 AM.",
"7:00 PM.",
"9:00 AM."
]
},
{
"id": "task013-125d69b73d974ec99b835f0f5295ccc3",
"input": "Sentence: Tumble would see Billy and walk up to him as fast as a turtle can go. \nQuestion: What time did the turtle see Billy?",
"output": [
"1:00 PM.",
"4:00 PM.",
"around 6 pm.",
"3:00 PM."
]
},
{
"id": "task013-869ae5b09c434b6c8c0a7306118bfec1",
"input": "Sentence: The two suicide operatives chosen were Hassan al Khamri and Ibrahim al Thawar, also known as Nibras. \nQuestion: At what time did the suicide operatives act?",
"output": [
"9:00 AM.",
"in the afternoon.",
"in the morning."
]
},
{
"id": "task013-e1c229f1e17e443ba77af348e13acd2a",
"input": "Sentence: The girl was a little scared and was thinking of turning back, but yet they went on. \nQuestion: What time did the girl stop to think about turning back?",
"output": [
"12:00 PM.",
"2:00 PM."
]
},
{
"id": "task013-9f420e2141a648a28062310b8d7855b7",
"input": "Sentence: Then they laid down on some towels and enjoyed the sun. \nQuestion: At what time did they lay down on the towels?",
"output": [
"afternoon."
]
},
{
"id": "task013-41f828fc7438441ba3c39b54c1b1d535",
"input": "Sentence: Ratners's chairman, Gerald Ratner, said the deal remains of \"substantial benefit to Ratners.\". \nQuestion: What time of day did he speak?",
"output": [
"4:00 PM.",
"9:00 AM.",
"morning.",
"early morning.",
"2:00 PM.",
"3:00 PM.",
"afternoon."
]
},
{
"id": "task013-54f0eb753e224c459adc7d369b667556",
"input": "Sentence: If I cannot carry my groceries or my laundry, how can I live?. \nQuestion: When did he do the laundry?",
"output": [
"saturday.",
"today.",
"yesterday."
]
},
{
"id": "task013-06d467319e4e429f8c741f94a18a9bd8",
"input": "Sentence: Lgurio informs Callimaco that Nicia and Lucrezia are anxious to have a child . \nQuestion: When did Lgurio inform Callimaco?",
"output": [
"two weeks ago.",
"during their morning walk.",
"during their afternoon walk."
]
},
{
"id": "task013-450941b39f0e4c8fbf78eebe2d072d81",
"input": "Sentence: She explained that Frank 's father was an alcoholic and that his mother worked as a toll booth operator . \nQuestion: When did Frank's father become an alcoholic?",
"output": [
"when his father was 21.",
"2001.",
"30 years ago."
]
},
{
"id": "task013-3c2c0359bff24c0296e7fc086640bbc9",
"input": "Sentence: These specific animals might be more likely to visit only flowers of the same species. \nQuestion: What time of day do they collect pollen?",
"output": [
"2:00 PM.",
"10:00 AM.",
"in the afternoon.",
"about noon.",
"8:00 AM."
]
},
{
"id": "task013-0851a6f9534e49e2affc1430f4f259a4",
"input": "Sentence: Our emphasis has been on having our potential clients know about us and deliver services to them, Dudovitz said. \nQuestion: What is the best time to call potential clients?",
"output": [
"about 10 am.",
"around 10 am.",
"9:00 AM."
]
},
{
"id": "task013-4ba334a87c9e45a0862f93dc1d8c819a",
"input": "Sentence: He then starred in a TV show Which was a failure both critically and commercially . \nQuestion: Which year did the TV show in which he starred release?",
"output": [
"1995.",
"2017.",
"2015."
]
},
{
"id": "task013-00a541f5e0974fa9b0d0614d1bbb9dd2",
"input": "Sentence: A thwarted Mongol invasion in 1274 weakened the Kamakura regime. \nQuestion: What day did the invasion occur?",
"output": [
"monday.",
"sunday.",
"a tuesday."
]
},
{
"id": "task013-556a7b8c8d8f487b9ad2138b59469afa",
"input": "Sentence: He accents the illusion of reality --I paraphrase his entry in La Enciclopedia Humanica --by doing life-size scenes in \"The full round,\" never the easier frontal or three-quarters view. \nQuestion: When did he publish La Enciclopedia Humanica?",
"output": [
"during the 18th century.",
"in the 18th century.",
"in 1942.",
"in 1785.",
"in 1830.",
"in 1923.",
"in 1955."
]
},
{
"id": "task013-c4e76081774d41bf8e2085b9ee74d389",
"input": "Sentence: Ruling that the order was mutually binding, Judge Thornton also cited the men for contempt. \nQuestion: When did the hearing begin?",
"output": [
"1:00 PM.",
"3:00 PM.",
"at 8am.",
"10:00 AM."
]
},
{
"id": "task013-58361aa692894b9e987bd8dc08800eb8",
"input": "Sentence: By 1930 raw-material production had tripled the figure of 1900, manufactured goods had increased twelve-fold, and heavy industry was galloping towards maturity. \nQuestion: At what time of the day was manufacturing occurring?",
"output": [
"1:00 PM.",
"2:00 PM.",