-
Notifications
You must be signed in to change notification settings - Fork 189
/
task005_mctaco_wrong_answer_generation_event_duration.json
5745 lines (5745 loc) · 234 KB
/
task005_mctaco_wrong_answer_generation_event_duration.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": [
"Wrong Candidate Generation"
],
"Reasoning": [
"Temporal Reasoning",
"Commonsense Reasoning"
],
"Definition": [
"In this task, we ask you to write an implausible answer to a question that involves “event duration\", based on a given sentence. Here, event duration is defined as the understanding of how long events typically last. For example, “brushing teeth”, usually takes a few minutes. Even though there exist multiple wrong answers, we only need a single wrong 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: How long did Jack play basketball?",
"output": "22 hours.",
"explanation": "Typically we play basketball for a couple of hours. So any answer beyond that range is unlikely."
},
{
"input": "Sentence: He was born in China, so he went to the Embassy to apply for a U.S. Visa. \nQuestion: How long did it take for him to get the Visa?",
"output": "12 seconds.",
"explanation": "Usually it takes 1 - 4 hours to get a U.S. Visa. 12 seconds is too short and so an unlikely answer."
}
],
"Negative Examples": [
{
"input": "Sentence: Jack played basketball after school, after which he was very tired. \nQuestion: How long did Jack play basketball?",
"output": "1 hour.",
"explanation": "Typically we play basketball for 1-2 hours. '1 hour' is a correct answer here. Note that the task is to generate an incorrect answer."
}
],
"Instances": [
{
"id": "task005-f892bc15ed5941ce81c546ccd4198aed",
"input": "Sentence: Islam later emerged as the majority religion during the centuries of Ottoman rule, though a significant Christian minority remained. \nQuestion: How long has a significant Christian minority remained?",
"output": [
"a month.",
"a billion weeks.",
"400 hours.",
"1000 seconds.",
"a billion years.",
"a billion hours.",
"hundreds of hours."
]
},
{
"id": "task005-172d859dd52a4fbe8ff2f57073aa4d2b",
"input": "Sentence: It's hail crackled across the comm, and Tara spun to retake her seat at the helm. \nQuestion: How long was the storm?",
"output": [
"an year.",
"an week.",
"2 seconds.",
"an second.",
"2 weeks.",
"a second.",
"a year."
]
},
{
"id": "task005-352586cf13124aababf0f515985afea3",
"input": "Sentence: Still , Preetam vows to marry Nandini if she meets him again . \nQuestion: How long had they known each other?",
"output": [
"only a few minutes.",
"10 seconds.",
"only a few centuries.",
"30 years.",
"a second.",
"90 years.",
"i asked if she wanted a jim beam."
]
},
{
"id": "task005-6d541f5bd23c4d5c9ea3160f60a56689",
"input": "Sentence: Max and Joey would often run through fields in a game of chase. \nQuestion: How long would they run through the fields?",
"output": [
"2 seconds."
]
},
{
"id": "task005-ae64b96b75e34cb487b3d21e94802efc",
"input": "Sentence: Carl Laemmle, head of Universal Studios, gave Einstein a tour of his studio and introduced him to Chaplin. \nQuestion: How long did the tour last?",
"output": [
"15 days.",
"5 days.",
"9 hour.",
"1 second.",
"15 centuries.",
"two years.",
"5 years.",
"5 seconds.",
"5 months.",
"45 days."
]
},
{
"id": "task005-fe169d1a45684bcfa4b8768ee06b6e26",
"input": "Sentence: He layed down on the chair and pawed at her as she ran in a circle under it. \nQuestion: How long did he paw at her?",
"output": [
"2 days.",
"3.5 hours.",
"1 day.",
"1.4 hours.",
"90 minutes.",
"7 hours.",
"7 days."
]
},
{
"id": "task005-6e3da764344d4a7e80bce63ef83a45e6",
"input": "Sentence: His counter-attack with Dayak warriors drove the Chinese out of Bau and across the Sarawak border. \nQuestion: How long was the counter-attack?",
"output": [
"a second.",
"it was 6 centuries.",
"it was 9 years."
]
},
{
"id": "task005-c6c60ee99e1d4e2a8c98998fb06eacd6",
"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: For how long did the Spanish subjugate the Arawak population?",
"output": [
"10 hours."
]
},
{
"id": "task005-a7818c3a10c849118c649e0c406c0822",
"input": "Sentence: About 30% of Ratners's profit already is derived from the U.S. \nQuestion: How long did it take to make profit?",
"output": [
"a hour.",
"2 seconds.",
"1 days.",
"2 weeks.",
"3 days.",
"3 centuries.",
"a second.",
"a week.",
"9 days."
]
},
{
"id": "task005-a5a828380eb04c2982a71b6dc660bc25",
"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: For how long do the wafers ride on tracks?",
"output": [
"two centuries.",
"two months.",
"two seconds.",
"each week.",
"5 centuries."
]
},
{
"id": "task005-53797f7cc07f4cc7978172c11b6c8677",
"input": "Sentence: Lennon accuses his father of leaving him again , and then leaves , after telling his father that he wo n't live with him anymore . \nQuestion: How long does this conversation between Lennon and his father take?",
"output": [
"6 seconds.",
"10 centuries.",
"6 weeks.",
"10 seconds.",
"two months.",
"10 months.",
"three days."
]
},
{
"id": "task005-db5724b2b3c34132ad83c62c4035715d",
"input": "Sentence: The Mummy 's Shroud is set in 1920 and tells the story of a team of archaeologists who come across the lost tomb of the boy Pharaoh Kah-To-Bey . \nQuestion: How long did it take the team to uncover the lost tomb?",
"output": [
"10 years.",
"a couple hours.",
"50 years.",
"2 seconds.",
"30 years.",
"a few hours."
]
},
{
"id": "task005-6f53b12f5ef64db4bf328d90eacbc560",
"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: How long did he try to get money from those countries?",
"output": [
"5 hours.",
"1 day.",
"1 second.",
"for seconds.",
"1st week."
]
},
{
"id": "task005-0bdd374c259c4ce5bdf0b700d71a9fe8",
"input": "Sentence: Bailey received the award for his three years of volunteer work at Indiana Pro Bono Commission. \nQuestion: How long was Bailey's award ceremony?",
"output": [
"3 minutes.",
"21 hours.",
"25 hours.",
"5 minutes.",
"35 hours.",
"7 hours.",
"5 seconds."
]
},
{
"id": "task005-87ac2be2791d4985977d5c8d4341e80b",
"input": "Sentence: In 1930, the poet Muhammad Iqbal proposed a separate Muslim homeland in the northwest of India. \nQuestion: How long did Muhammad Iqbal consider his proposal?",
"output": [
"0.56 seconds.",
"45 seconds.",
"one minute.",
"5 minutes.",
"a century.",
"5 seconds.",
"a generation.",
"1 minute.",
"1.67 seconds."
]
},
{
"id": "task005-d4252faef21a484d89277c8ca211f937",
"input": "Sentence: There was even a tiny room in the back of one of the closets. \nQuestion: After buying the house, how long did it take the owners to notice the room?",
"output": [
"80 years.",
"a few seconds.",
"720 years.",
"240 years.",
"1 second."
]
},
{
"id": "task005-cc19d15dac2d4259910043d73fcf9064",
"input": "Sentence: At least some FAA officials in Boston Center and the New England Region knew that a hijacker on board American 11 had said \"we have some planes.\". \nQuestion: How long did they know the plane had been hijacked?",
"output": [
"another few centuries.",
"one century.",
"1st year."
]
},
{
"id": "task005-e7183074bfd9403d97a07477c0abc788",
"input": "Sentence: The king of Gandhara then stops everyone from grabbing the little food that is provided . \nQuestion: How long does the king prevent them from eating?",
"output": [
"100 centuries.",
"a minute.",
"a few seconds.",
"ten centuries."
]
},
{
"id": "task005-65819d224abd4777a9bcfd0f36a62954",
"input": "Sentence: Several tenants blame other neighbors as perpetrators of the rift, however. \nQuestion: How long has there been a rift between neighbors?",
"output": [
"0.67 minutes.",
"2 seconds.",
"one second.",
"900 years.",
"forever.",
"18 minutes.",
"6 minutes.",
"100 years.",
"2 minutes."
]
},
{
"id": "task005-2c67b4811f4c4f06833093920da7c3a3",
"input": "Sentence: Some government officials were concerned that terrorists would take advantage of such breakdowns. \nQuestion: How long were the government officials concerned with terrorists?",
"output": [
"1 day.",
"1 hour.",
"five seconds.",
"a second.",
"1 minute.",
"1 second."
]
},
{
"id": "task005-3f47205d9c0e487b888ccd02dd08674b",
"input": "Sentence: President Clinton told us that when he pulled Musharraf aside for a brief, one-on-one meeting, he pleaded with the general for help regarding Bin Laden.\". \nQuestion: How long did the meeting last?",
"output": [
"2 days.",
"one week.",
"about ten centuries.",
"3 years.",
"15 hours.",
"3 seconds.",
"4 days.",
"one second.",
"3 days.",
"9 hours."
]
},
{
"id": "task005-19eb62a549a243a2be9fa1845929c174",
"input": "Sentence: John finds a letter addressed to him , with the word `` Breathe '' written on it . \nQuestion: How long it take John to read the word \"breathe\"?",
"output": [
"the gop finds its candidates on the defensive.",
"2 minutes.",
"it took john 90 minutes to read the word breathe.",
"it took john 15 minutes to read the word breathe.",
"it took john 30 minutes to read the word breathe.",
"word of it reach many second-level officials.",
"it took john 30 minutes to reading the word breathe.",
"it took john 6 minutes to read the word breathe.",
"now this word.",
"it took john 2 minutes to read the word breathe."
]
},
{
"id": "task005-924f9fef4ab7454eab39b50a9fa8846b",
"input": "Sentence: By the time the spelling bee arrived Ana and her best friend were sure she would win. \nQuestion: How long did and and her friend study?",
"output": [
"240 days.",
"80 months.",
"2 seconds.",
"six seconds.",
"2 centuries.",
"2 minutes.",
"1 second."
]
},
{
"id": "task005-7ed6d088d3cb412cb1f174ffa7e5bc96",
"input": "Sentence: There are now more protons than electrons inside the atom. \nQuestion: How long was the atom monitored?",
"output": [
"for several centuries."
]
},
{
"id": "task005-2c2e11620e234e5abc74387cb8330022",
"input": "Sentence: In London at mid-afternoon yesterday, Ratners's shares were up 2 pence (1.26 cents), at 260 pence ($1.64). \nQuestion: How long did Ratners's shares stay up?",
"output": [
"6 centuries."
]
},
{
"id": "task005-fe5fe7a5032d4c40801afc10f8cf8fb9",
"input": "Sentence: The company called that record \"a reflection on our commitment to achieving an incident-free environment, all the time, everywhere,\" the SEC filing states. \nQuestion: How long has the company had an incident-free environment?",
"output": [
"2 days.",
"since its inception.",
"0.2 year.",
"since its predecessor.",
"days.",
"it increases employee commitment to the company.",
"1 week.",
"1 season.",
"1 hour.",
"0.5 year.",
"10 days.",
"10 hours."
]
},
{
"id": "task005-db161f5c2c1541df818a90a0b3c59e39",
"input": "Sentence: Third, no middle ground exists in what Qutb conceived as a struggle between God and Satan. \nQuestion: How long did the struggle between God and Satan exist?",
"output": [
"6000 seconds.",
"200 seconds.",
"0.33 month.",
"3 hours."
]
},
{
"id": "task005-f14eb4aef38b4afea581a531c563ff5d",
"input": "Sentence: The next evening, she arrived with a stack of glistening stopboxes containing sushi, sashimi, oysters in their shells, and Terran vegetables fresh plucked from their hydroponic beds. \nQuestion: For how long was she gone?",
"output": [
"10 seconds.",
"8 minutes."
]
},
{
"id": "task005-ffe994143cc34f139840186bfc7c6ffc",
"input": "Sentence: But the compromising terms of peace galled him, and he was not satisfied with a country only half free. \nQuestion: How long did it take for them to reach the initial compromise?",
"output": [
"2.5 minutes.",
"a minute.",
"15 minutes.",
"5 minutes.",
"three hours.",
"three seconds.",
"1 minutes."
]
},
{
"id": "task005-0feff69e13064059922104064ef6d198",
"input": "Sentence: Zarco and Teixeira were appointed co-governors of Madeira, while Perestrelo was awarded Porto Santo. \nQuestion: How long were Zarco and Teixeira co-governors?",
"output": [
"36 years.",
"zarco and teixeira were co-governors for a term of 36 years.",
"both were defeated in the governors election.",
"1 day.",
"4 seconds.",
"zarco and teixeira were co-governors for a term of 4 seconds.",
"zarco and teixeira were co-governors for a term of 4 weeks.",
"9 day.",
"1 century.",
"1 month.",
"0.11 day.",
"four hours.",
"zarco and teixeira were co-governors for a term of 0.44 years."
]
},
{
"id": "task005-e5a43d89d41d4ace9c30360dd2588b4a",
"input": "Sentence: It was the seismograph that made it possible to learn why the Earth acted like a magnet. \nQuestion: How long will the Earth act like a magnet?",
"output": [
"for a year.",
"after another couple years.",
"for a week.",
"for a month.",
"for next couple years.",
"for another two years.",
"for another couple years.",
"for another year.",
"and a year.",
"after a second.",
"for one year.",
"after a year.",
"for another few years."
]
},
{
"id": "task005-9514a44f8cd44fe6a013b9117b4dc6e2",
"input": "Sentence: California was first to require smog checks for clean air, pass anti-tobacco initiatives and bike helmets laws. \nQuestion: How long did it take for the other states to pass such initiatives?",
"output": [
"a hour later.",
"two hours.",
"two seconds.",
"90 years later.",
"a second later.",
"a few hours.",
"a few seconds."
]
},
{
"id": "task005-f0cc5bbd9dcc4b409121258ceed77341",
"input": "Sentence: Britain finally ceded the island to Spain in the year 1802, under the terms of the Treaty of Amiens. \nQuestion: How long did it take them to write the treaty?",
"output": [
"a second.",
"5 seconds.",
"1 minute."
]
},
{
"id": "task005-c504b33a156642fabeed7da0ba8b6148",
"input": "Sentence: We may promise \"justice for all,\" but for those who can't afford a lawyer, that promise is often a lie. \nQuestion: How long did it take to afford a lawyer?",
"output": [
"3 day.",
"1 day.",
"a century.",
"1 minute.",
"many centuries.",
"6 centuries.",
"a second.",
"a day.",
"a hour.",
"a night."
]
},
{
"id": "task005-d65d76882f254fed84036239594459fd",
"input": "Sentence: The resolution creating the new intelligence committee structure should grant subpoena authority to the committee or committees. \nQuestion: How long does it take to grant a subpoena?",
"output": [
"usually a century.",
"a few centuries.",
"usually a minute.",
"it can take 1 year to grant a subpoena.",
"it can take 1 second to grant a subpoena."
]
},
{
"id": "task005-cd878fb58cdd47fbaed839c56bd10d70",
"input": "Sentence: The core of our strategy is to lead in technology and attack the high-performance segments of the market, said John Kelly, senior vice president in charge of IBM's technology group. \nQuestion: How long did John Kelly speak?",
"output": [
"one year."
]
},
{
"id": "task005-02fa55819af14a22b4fb5662d3253793",
"input": "Sentence: He named the house, which was completed in 1802, the \"Grange\" after his grandfather Alexander's estate in Ayrshire, Scotland. \nQuestion: How long did it take to complete the house?",
"output": [
"a few hours.",
"9 days.",
"less than a day.",
"27 years.",
"1 day.",
"3 weeks.",
"0.33 years.",
"1 minute.",
"9 minutes.",
"3 seconds.",
"81 months.",
"less than a century.",
"1 month.",
"3 hours.",
"a few weeks."
]
},
{
"id": "task005-acc5c455570745faa52824424dd48ad4",
"input": "Sentence: Meridian National Corp. said it sold 750,000 shares of its common stock to the McAlpine family interests, for $1 million, or $1.35 a share. \nQuestion: How long did it take for Meridian National Corp. to sell the shares?",
"output": [
"three years.",
"three seconds.",
"0.33 month."
]
},
{
"id": "task005-4ffe821020df4185b7d5373a65b50fdd",
"input": "Sentence: At the same time, the Sudanese regime began to change. \nQuestion: How long did it take for differences to become apparent?",
"output": [
"in a hour.",
"six centuries.",
"in a second.",
"a couple centuries.",
"six minutes.",
"six days.",
"a couple minutes.",
"a couple seconds.",
"a couple days.",
"a couple hours."
]
},
{
"id": "task005-186e07b2fa5045d59e9362de0ba9dd80",
"input": "Sentence: At about 9:20, security personnel at FAA headquarters set up a hijacking teleconference with several agencies, including the Defense Department. \nQuestion: How long did the security personnel take to set up a hijacking teleconference?",
"output": [
"an year.",
"one second."
]
},
{
"id": "task005-978539bbf7a2402b9d01dde5aac115e3",
"input": "Sentence: The two suicide operatives chosen were Hassan al Khamri and Ibrahim al Thawar, also known as Nibras. \nQuestion: How long did it take to chose the operatives?",
"output": [
"6 centuries.",
"0.33 minute.",
"3 minutes.",
"1 minute.",
"0.11 hour.",
"0.11 minute.",
"1 minutes."
]
},
{
"id": "task005-b972875863cf4f8f93756ea2c71fc1e9",
"input": "Sentence: Then they laid down on some towels and enjoyed the sun. \nQuestion: How long did they enjoy under the sun?",
"output": [
"they enjoyed being under the sun for 8 seconds.",
"they enjoyed 25 seconds under the sun.",
"they enjoyed 2 years under the sun.",
"they enjoyed 25 weeks under the sun.",
"they enjoyed 25 years under the sun.",
"they enjoyed 2 weeks under the sun.",
"they enjoyed 25 hours under the sun.",
"they enjoyed being under the sun for 18 hours.",
"they enjoyed being under the sun for 8 years.",
"they enjoyed being under the sun for 2 seconds."
]
},
{
"id": "task005-f8d32b8286684d7ebf616a72bc101bff",
"input": "Sentence: The person may walk a half mile in the wrong direction!. \nQuestion: How long will the person spend walking in the wrong direction?",
"output": [
"360 minutes.",
"5 seconds.",
"2.78 minutes.",
"5 hours.",
"15 days.",
"15 months.",
"25 months.",
"120 minutes.",
"10 months.",
"75 minutes.",
"90 minutes.",
"1.67 hours."
]
},
{
"id": "task005-edc5dd27d8e241d19390b883b3076daa",
"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: How long did it take to retrieve the data from the computer?",
"output": [
"1 season."
]
},
{
"id": "task005-1380beb0b8f1483789c35cac57099d36",
"input": "Sentence: It is spending more than $500 million a year on semiconductor research and development. \nQuestion: How long has the research and development been going on?",
"output": [
"100 years.",
"seconds.",
"3 seconds.",
"900 years.",
"hours."
]
},
{
"id": "task005-5cb4ce4ce1b440d99bff476547ed9cbf",
"input": "Sentence: These organs all work together to help you gain energy from the food you eat. \nQuestion: How long does it take the organs to turn food into energy?",
"output": [
"about a year.",
"about a week.",
"3 weeks.",
"3 months.",
"3 days."
]
},
{
"id": "task005-f6b975506f7d44538cf834c638828937",
"input": "Sentence: All Muslims-as he defined them-therefore must take up arms in this fight. \nQuestion: How long did it take for Muslims to take up arms?",
"output": [
"180 years.",
"a few minutes.",
"60 years.",
"just a few centuries.",
"20 years.",
"6.67 years.",
"a few centuries.",
"20 seconds."
]
},
{
"id": "task005-19adf72d49aa4bfb9db0342e5407ab2d",
"input": "Sentence: The Serbian, who beat Tsonga in the 2008 Australian Open final, ended the dream run of Australian 18-year-old Bernard Tomic. \nQuestion: How long did it take for the Serbian to beat Tsonga?",
"output": [
"50 years.",
"a month.",
"tuesday australian time.",
"9 hour.",
"9 week.",
"50 hours.",
"1 second.",
"1 week.",
"a day.",
"a few seconds.",
"450 years.",
"a century.",
"3 week.",
"a few weeks."
]
},
{
"id": "task005-555b786c0a7b484fba59632833a6a033",
"input": "Sentence: At the sight of the great man, Spear flushed crimson, and then his look of despair slowly disappeared; and into his eyes there came incredulously hope and gratitude. \nQuestion: How long did Spear see the great man?",
"output": [
"about a month."
]
},
{
"id": "task005-b2e278c995174d1da99c0ddb59ad6e60",
"input": "Sentence: Direct control of the political operations of the entirety of Algeria, however, was not. \nQuestion: How long was there direct control of the politic operations?",
"output": [
"0.11 hour.",
"1 hour.",
"a second."
]
},
{
"id": "task005-53ba0df57617444889e9238789f1aa49",
"input": "Sentence: He jumped into the pond and started swimming toward the ducks, chasing around his new playmates. \nQuestion: How long did he chase the ducks for?",
"output": [
"1 week.",
"20 months.",
"3 days.",
"1 year.",
"27 days.",
"a half second.",
"10 centuries.",
"1 second."
]
},
{
"id": "task005-a3a3d5a01e2843f3a01254b2f5819dd1",
"input": "Sentence: He tried and tried to please every person who came to the store, but they all picked smaller puppies. \nQuestion: How long did he try to please the persons who came to the store?",
"output": [
"12 years.",
"for five seconds.",
"5 centuries.",
"36 hours.",
"75 years.",
"5 days.",
"several years.",
"for five weeks.",
"25 years.",
"several weeks.",
"5 months."
]
},
{
"id": "task005-803093fed1834be28deace0da2f156ba",
"input": "Sentence: These fossils showed that this entire area was once at the bottom of a sea. \nQuestion: For how long was the area at the bottom of the sea?",
"output": [
"1 day.",
"0.2 year.",
"1 week.",
"1 season.",
"1 year.",
"one day.",
"0.5 year.",
"0.5 day.",
"one year."
]
},
{
"id": "task005-ea9da72eec6f40afabd2e4fa091ca78c",
"input": "Sentence: The group are chased by the assassins and Ronnie and Riya are killed . \nQuestion: How long was the group chased by the assassins ?",
"output": [
"100 seconds.",
"5 months.",
"20 months.",
"100 years.",
"for five years.",
"11.11 years.",
"1.67 minutes.",
"100 weeks.",
"33.33 years.",
"1 year."
]
},
{
"id": "task005-2f3e547ace06473b878f060baaea4ec4",
"input": "Sentence: His son and successor, Caracalla, a great admirer, visited the tomb during his own reign. \nQuestion: How long did he visit the tomb?",
"output": [
"for a few months.",
"3 centuries.",
"3 months.",
"1 second."
]
},
{
"id": "task005-de514d3a214b48cbb7b7c3424f6ca799",
"input": "Sentence: Like the skateboarder, the higher the ramp, the faster he will be going when he reaches the bottom. \nQuestion: How long does it take the skateboarder to go down the highest ramp?",
"output": [
"ten weeks.",
"five hours.",
"ten hours.",
"3 hours.",
"ten years.",
"1 century."
]
},
{
"id": "task005-e1a37b055a0341e180c4edc6a511632f",
"input": "Sentence: What we call the lab-to-fab time should be as close to zero as possible, Kelly said. \nQuestion: How long was Kelly speaking?",
"output": [
"3 seconds.",
"five hours."
]
},
{
"id": "task005-7f24783babbc4abab97c9612cc4d7007",
"input": "Sentence: Later in the month, they traveled to China by train and were allowed to see how different life was over there. \nQuestion: How long did they stay in China?",
"output": [
"10 centuries.",
"10 minute.",
"for a few seconds.",
"10 seconds."
]
},
{
"id": "task005-b178c39bf28d4c2c90871505ba7e3348",
"input": "Sentence: The letterhead on correspondence still bears the Bexar County Legal Aid name, even though the organization is no longer. \nQuestion: How long was the organization active?",
"output": [
"five seconds.",
"1000 years.",
"ten minutes.",
"five minutes.",
"100 years."
]
},
{
"id": "task005-0e6c64a00d6f4164a88ccf6dde0b2ab9",
"input": "Sentence: The dog accompanied him, frisking about him in friendly fashion. \nQuestion: How long did the dog accompany him?",
"output": [
"1 second.",
"30 months.",
"20 months.",
"1 year.",
"30 days.",
"1 month.",
"1 century."
]
},
{
"id": "task005-1ae5adae2f7f4f0db24ba06aeccda401",
"input": "Sentence: In Colombia, the drug-financed guerrillas trying to seize the country and destroy democracy include M-19, which Castro has clearly backed. \nQuestion: How long had the guerillas been supported by Castro?",
"output": [
"1 week.",
"3 day.",
"1 century.",
"1 day.",
"1 hour.",
"1 minute.",
"1 night.",
"1 second.",
"many seconds."
]
},
{
"id": "task005-3d487ef1ff6c43a58e7ec0e9a90cf0eb",
"input": "Sentence: She renews in Ranchipur an acquaintance with a former lover , Tom Ransome , now a dissolute alcoholic . \nQuestion: For how long was she Tom's lover?",
"output": [
"two seconds.",
"2 weeks.",
"a few seconds.",
"15 days.",
"a couple days.",
"15 centuries."
]
},
{
"id": "task005-a5c61b64ce704957b1cc7c690ae237b1",
"input": "Sentence: He loved spending time with him when he was younger, but he had moved last year. \nQuestion: How long did the move take?",
"output": [
"18 years.",
"0.22 days.",
"2 years.",
"3 months.",
"a year.",
"2 centuries.",
"0.67 years.",
"1 hour.",
"0.67 days.",
"0.11 week.",
"3 centuries.",
"0.33 week.",
"a hour.",
"6 years."
]
},
{
"id": "task005-7a66b89e6ff34df680b037602cc85611",
"input": "Sentence: Alexander the Great's accomplishments and legacy have been depicted in many cultures. \nQuestion: How long did Alexander the Great reign?",
"output": [
"a little over 10 seconds.",
"a few hours.",
"0.33 day.",
"nearly 1.44 years.",
"12 weeks.",
"a little over 10 hours.",
"nearly 4.33 years.",
"1 day.",
"3 day.",
"12 hours.",
"1.33 years.",
"nearly 13 weeks.",
"12 seconds.",
"a few weeks."
]
},
{
"id": "task005-2d084232eb494217b5d8902580a31a53",
"input": "Sentence: Despite his quick climb up the legal ladder, Bailey has always found time to help out in causes he feels strongly about. \nQuestion: How long did it take for Bailey to reach his current position since passing the bar?",
"output": [
"2 days.",
"6 days.",
"one month.",
"1 month.",
"36 years.",
"12 hours.",
"5 seconds."
]
},
{
"id": "task005-e856db21c3994acd8e9ccee757529984",
"input": "Sentence: { { lang } } centers on a man who roams the street night after night . \nQuestion: How long does the man roam the street each night?",
"output": [
"the man roams the street for 21 hours every night.",
"4 years.",
"one week.",
"one second.",
"three hours last night.",
"four years.",
"the man roams the street for 35 hours every night."
]
},
{
"id": "task005-bdbf158fe6864f698fcd0e547afd82d3",
"input": "Sentence: Over 200 Arawak sites have been identified, and it is said that when the Spanish arrived in Jamaica there were approximately 100,000 Arawak living on the island. \nQuestion: How long did it take for the Spanish to reach Jamaica?",
"output": [
"decades.",
"1 week.",
"2 weeks.",
"seconds.",
"6 years.",
"days.",
"1 second.",
"centuries."
]
},
{
"id": "task005-e3963fce37f744c7bced7958f60257f8",
"input": "Sentence: It refers to a woman who is dangerously attractive, and lures men to their downfall with her sexual attractiveness. \nQuestion: How long does it take to lure men to their downfall?",
"output": [
"between 70 and 90 weeks at least.",
"between 70 and 810 years at least.",
"3 centuries.",
"between 70 and 90 years at least.",
"9 months.",
"30 years.",
"10 years.",
"between 70 and 90 seconds at least.",
"5 centuries."
]
},
{
"id": "task005-e30d879386dc4051b9a299ae1fd123e4",
"input": "Sentence: The agreement includes some U.S. aid for Palau, Kyota said, but he said those details remained to be worked out as well. \nQuestion: How long did it take to come to the agreement?",
"output": [
"30 centuries.",
"hours.",
"0.4 weeks.",
"2 hours.",
"150 minutes.",
"30 minutes.",
"centuries."
]
},
{
"id": "task005-f33edd7fcfbb41f88771fa99abe75098",
"input": "Sentence: Shortly before she left, Tasha said, \"You steal from life for art, Bernardo. \nQuestion: How long did Tasha speak?",
"output": [
"30 years.",
"800 minutes.",
"800 months.",
"7200 minutes.",
"30 weeks.",
"800 centuries.",
"3.33 seconds.",
"a year.",
"30 hours.",
"a few weeks."
]
},
{
"id": "task005-2814d3576e9d463fbb6312f45f553cd8",
"input": "Sentence: Hitherward they came, Meeting our faces from the middle point, With us beyond but with a larger stride. \nQuestion: How long did it take them to come?",
"output": [
"they came quickly after being seen at the middle point.",
"a year.",
"10 months."
]
},
{
"id": "task005-600c0a4a25cf4596ac74300c4ce43675",
"input": "Sentence: They also operate a legal arm that assists migrant workers from Texas to Kentucky. \nQuestion: How long does it take for migrant workers to move from Texas to Kentucky?",
"output": [
"a hour.",
"an hour.",
"1 second."
]
},
{
"id": "task005-18a5fefce02941729661c08fa0bb0001",
"input": "Sentence: This approach has been echoed by Lev Landau and Evgeny Lifshitz, and others, and has become standard. \nQuestion: How long did it take to become standard?",
"output": [
"about a week.",
"hours.",
"several seconds.",
"about a hour.",
"weeks.",
"about one week.",
"2 seconds.",
"seconds."
]
},
{
"id": "task005-1d66311b01de4b08a14ba63d215df254",
"input": "Sentence: The Albanians first appear in the historical record in Byzantine sources of the late 11th century. \nQuestion: For how long did the Byzantines log historical records?",
"output": [
"about 1000 hours.",
"a day.",
"the first eight minutes.",
"eight hundred seconds.",
"the first eight months.",
"a night.",