-
Notifications
You must be signed in to change notification settings - Fork 190
/
task017_mctaco_wrong_answer_generation_frequency.json
5327 lines (5327 loc) · 230 KB
/
task017_mctaco_wrong_answer_generation_frequency.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 \"frequency\", which refers to how often an event is likely to be repeated. For example, \"taking showers\" typically occurs ~5 times a week, \"going to Saturday market\" usually happens every few weeks/months, etc. 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 often does Jack play basketball?",
"output": "twice an hour.",
"explanation": "\"Playing basketball\" normally occurs few times a week. Playing \"twice an hour\" is unlikely."
},
{
"input": "Sentence: He was born in China, so he went to the Embassy to apply for a U.S. Visa. \nQuestion: How often does he apply a Visa?",
"output": "Everyday.",
"explanation": "It's reasonable to do this on a yearly basis, but not \"everyday.\"."
}
],
"Negative Examples": [
{
"input": "Sentence: Jack played basketball after school, after which he was very tired. \nQuestion: How often does Jack play basketball?",
"output": "twice a week.",
"explanation": "\"Playing basketball\" normally occurs few times a week. This is a bad answer as it is possible for Jack to play twice a week. Note that the task here is to write a wrong answer."
}
],
"Instances": [
{
"id": "task017-3be61aeea4924d6cb873d27951cbb5cc",
"input": "Sentence: Islam later emerged as the majority religion during the centuries of Ottoman rule, though a significant Christian minority remained. \nQuestion: How often has Christianity been the major religion?",
"output": [
"he emerged as a peacemaker.",
"the last two decades several times.",
"never.",
"several weeks later.",
"it acquire a majority interest.",
"he emerged as the heir apparent.",
"the end of white-minority rule.",
"a dozen times."
]
},
{
"id": "task017-8ba9184024b1468d994579c7fcf8801d",
"input": "Sentence: It's hail crackled across the comm, and Tara spun to retake her seat at the helm. \nQuestion: How often does a typical ship face a major storm like this?",
"output": [
"once a day.",
"once every 5 seconds.",
"once a night.",
"every minute.",
"once a minute.",
"once every 5 hours.",
"every day.",
"every night."
]
},
{
"id": "task017-6d1af9769cf7430bad3867677bee3a30",
"input": "Sentence: Still , Preetam vows to marry Nandini if she meets him again . \nQuestion: How often did they think of each other?",
"output": [
"every century.",
"rarely.",
"never.",
"every month."
]
},
{
"id": "task017-c864ad2801d749b3bb8754a831ac242c",
"input": "Sentence: Max and Joey would often run through fields in a game of chase. \nQuestion: How often do Max and Joey run?",
"output": [
"1.67 times a week.",
"once every 30 centuries.",
"every late night before lunch.",
"once every 30 months.",
"once every 30 minutes.",
"once every 30 days.",
"once every 10 minutes.",
"5 times a year.",
"5 times a hour.",
"once every 90 minutes.",
"once every 3.33 minutes.",
"0.56 times a week.",
"5 times a second."
]
},
{
"id": "task017-b11560550aae4db3ba7addd87b07180b",
"input": "Sentence: Carl Laemmle, head of Universal Studios, gave Einstein a tour of his studio and introduced him to Chaplin. \nQuestion: How often does Carl give tours?",
"output": [
"5 times a century.",
"once a century.",
"every second.",
"5 times a minute.",
"about once a century.",
"about once a minute."
]
},
{
"id": "task017-38250608e8394821aab7d420289b637a",
"input": "Sentence: He layed down on the chair and pawed at her as she ran in a circle under it. \nQuestion: How often does he lay on the chair?",
"output": [
"once a century.",
"never.",
"every century."
]
},
{
"id": "task017-37cb032013df4d0bb0c6860cb038dc35",
"input": "Sentence: His counter-attack with Dayak warriors drove the Chinese out of Bau and across the Sarawak border. \nQuestion: How often is a warrior promoted during battle?",
"output": [
"3000 times.",
"1000 times.",
"9000 times."
]
},
{
"id": "task017-b91d0a0cfcb345e09225a87852401a49",
"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: How often did Arawak people die from European diseases?",
"output": [
"many of whom operate small businesses.",
"2000 people per year.",
"1702 people per year.",
"every year.",
"every other year.",
"big financial stocks carried the day.",
"every century.",
"the year 2000.",
"1925 people per year.",
"1000 people per year."
]
},
{
"id": "task017-f352e27f5d554eb3acef2c6157ac5cd9",
"input": "Sentence: About 30% of Ratners's profit already is derived from the U.S. \nQuestion: How often did Ratners make a profit?",
"output": [
"pichia pastoris made protein from natural gas-derived alcohol.",
"every century.",
"never.",
"once a second."
]
},
{
"id": "task017-b5cbfd4ffad34e3da9f3105f847c03ce",
"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 often does Lennon's father leave him?",
"output": [
"every hour.",
"every second.",
"every couple of minutes."
]
},
{
"id": "task017-4c40e87b18a443c1a80233ee22627182",
"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 often did he try to drum up interest?",
"output": [
"each minute.",
"twice per day.",
"every minute.",
"every hour.",
"every second.",
"twice per minute.",
"twice per century.",
"every century."
]
},
{
"id": "task017-c31003d6a7ae4345b1f780b2a1cbaca9",
"input": "Sentence: Bailey received the award for his three years of volunteer work at Indiana Pro Bono Commission. \nQuestion: How often does Bailey receive awards?",
"output": [
"twice every night.",
"twice a month.",
"each few weeks.",
"every night.",
"each few seconds.",
"every few seconds.",
"every few hours.",
"every minute.",
"once per hour.",
"twice every day.",
"every few centuries.",
"twice a night.",
"once a minute."
]
},
{
"id": "task017-40a29710bc14486683ea8adf3877f32d",
"input": "Sentence: In 1930, the poet Muhammad Iqbal proposed a separate Muslim homeland in the northwest of India. \nQuestion: How often did Muhammad Iqbal make a proposal?",
"output": [
"1 time per second.",
"every day.",
"every hour.",
"every second.",
"1 time per day.",
"every century.",
"1 times per week."
]
},
{
"id": "task017-45e32802e1eb4284a1f11fc17a1be255",
"input": "Sentence: There was even a tiny room in the back of one of the closets. \nQuestion: How often was the room utilized?",
"output": [
"10 times a minute.",
"once a minute."
]
},
{
"id": "task017-164e0447b3244f5aac96ee5048ac5ea5",
"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 often are planes hijacked?",
"output": [
"twice a week.",
"planes are hijacked once a week.",
"planes are hikacked once a month.",
"aircraft are hijacked once a week.",
"planes are hikacked once every hour.",
"once a hour.",
"planes are hijacked every a hour.",
"aircraft are hijacked once a hour.",
"once per hour.",
"planes are hijacked once every week.",
"aircraft are hikacked once a week.",
"planes are hijacked every a week.",
"planes are hijacked once a minute.",
"planes are hijacked once a month.",
"once a minute.",
"once a weekend."
]
},
{
"id": "task017-7c580ea636b64cfe82bf4a99de6f7f06",
"input": "Sentence: The king of Gandhara then stops everyone from grabbing the little food that is provided . \nQuestion: How often are they able to eat?",
"output": [
"once a minute.",
"twice per minute.",
"they can only eat 1 meal per minute.",
"they can eat as often as they want to.",
"they can only eat 1 meal per month.",
"once a month.",
"twice per month.",
"they can only eat 9 meal per day.",
"they can only eat 1 meal per century."
]
},
{
"id": "task017-58102345be6148a1b97501c42b6652f8",
"input": "Sentence: Several tenants blame other neighbors as perpetrators of the rift, however. \nQuestion: How often do the tenants have issues with other people?",
"output": [
"every 100 seconds.",
"every 300 years.",
"every 100 years.",
"every few seconds.",
"every minute.",
"every few years."
]
},
{
"id": "task017-e4b4ff9fd4e44a1ea5e25c42336cd2c1",
"input": "Sentence: The resolution creating the new intelligence committee structure should grant subpoena authority to the committee or committees. \nQuestion: How often does the committee meet?",
"output": [
"hourly.",
"every second.",
"every hour."
]
},
{
"id": "task017-144bdf7784ef4517ab0b8a1708e6af42",
"input": "Sentence: Pushkin gradually became committed to social reform and emerged as a spokesman for literary radicals. \nQuestion: How often does Pushkin speak at events?",
"output": [
"he emerged as a peacemaker.",
"three times a night.",
"three times a minute.",
"once a second.",
"three times a century.",
"once a hour.",
"he emerged as the heir apparent."
]
},
{
"id": "task017-ff59c253064e4815ae22d1d42cf47b2f",
"input": "Sentence: She ordered the tastiest kind of each vegetable and the prettiest kind of each flower. \nQuestion: How often does she order vegetables and flowers?",
"output": [
"three minutes a week.",
"every 10 minutes.",
"once a second.",
"every 10 centuries.",
"every 90 minutes.",
"every 30 minutes."
]
},
{
"id": "task017-85c3f34c54b74565a88c03ac3f5a436c",
"input": "Sentence: His son and successor, Caracalla, a great admirer, visited the tomb during his own reign. \nQuestion: How often does he visit the tomb?",
"output": [
"every hour.",
"every other hour.",
"every other second.",
"once a hour.",
"once a second."
]
},
{
"id": "task017-7c21efbb55304425bfffe5b0894e7d9e",
"input": "Sentence: If I cannot carry my groceries or my laundry, how can I live?. \nQuestion: How many times a week does he do the laundry?",
"output": [
"66.67.",
"0.67.",
"22.22.",
"18.",
"27 times.",
"200.",
"600.",
"0.22.",
"81 times."
]
},
{
"id": "task017-b41d0eb1ea954a238c9ef74fcb3f9c76",
"input": "Sentence: The properties of matter depend on the types of atoms that matter is made of. \nQuestion: How often are new atoms created?",
"output": [
"every 10 years.",
"every 2 months.",
"every 2 hours.",
"every hour.",
"every 6 years.",
"every week.",
"every 1 years.",
"every 2 years."
]
},
{
"id": "task017-27dfd35a23f34f78a7e2fd801f295bed",
"input": "Sentence: Alexander then faced the Assakenoi, who fought in the strongholds of Massaga, Ora and Aornos. \nQuestion: How often did Alexander fight the Assakenoi?",
"output": [
"every minute."
]
},
{
"id": "task017-b9f08b5e5ed74b7fa697cff870e53065",
"input": "Sentence: The most powerful families thus carved out for themselves whole regions that were to become the fiefdoms of Japanese feudalism. \nQuestion: How often would one family be able to do something like this?",
"output": [
"once a day.",
"once in 180 years.",
"once a minute.",
"5.56 times.",
"once in 20 seconds.",
"50 times.",
"once in 20 hours.",
"150 times.",
"once in 20 weeks.",
"once in 20 years.",
"once in 6.67 years.",
"once a month.",
"once in 2.22 years.",
"16.67 times.",
"450 times.",
"once in 60 years."
]
},
{
"id": "task017-259555be4ea74fb38af40bc6029f291b",
"input": "Sentence: The instant would have been improved had my baby shoes been cleaned before they were encased. \nQuestion: How often are the baby shoes encased?",
"output": [
"50 times.",
"every hour.",
"every year.",
"every second.",
"100 times.",
"30 times.",
"every week."
]
},
{
"id": "task017-559b882a7d394241a0bf3ffbcfdf4945",
"input": "Sentence: The postwar period began, however, with millions of displaced people homeless and starving. \nQuestion: How often did starving people eat?",
"output": [
"everyday.",
"0.33 times a day.",
"once a second.",
"once a year.",
"9 time a day.",
"3 times a day.",
"3 times a century.",
"27 times a day.",
"0.11 time a day.",
"1 time a minute.",
"3 times a minute.",
"once a hour.",
"3 times a night.",
"3 time a day."
]
},
{
"id": "task017-46fac339e12b425fae385e48bfbc90c8",
"input": "Sentence: After wiping your feet on the mat you reach out to touch the brass knocker on the door. \nQuestion: How often do you wipe your feet on the mat?",
"output": [
"10 times a day.",
"10 times a morning.",
"10 times a week.",
"once an hour.",
"once every hour.",
"once a century.",
"twice an hour.",
"10 times every day.",
"10 times per day.",
"100 times a day."
]
},
{
"id": "task017-c2fc46f6883f4c228486e6822479e5e5",
"input": "Sentence: Most of us have seen steam rising off a wet road after a summer rainstorm. \nQuestion: How often does it rain in the summer?",
"output": [
"333.33 times.",
"166.67 times.",
"every other minute.",
"a couple times a day.",
"500 times.",
"once a hour.",
"once a minute.",
"a few times a day.",
"once a year."
]
},
{
"id": "task017-6ebd35d5e1974d7fab0ff01fd585622e",
"input": "Sentence: I suppose he was attracted to the commotion up the hill.\". \nQuestion: How often are there commotions on the hill?",
"output": [
"every 500 seconds.",
"once a second.",
"every 500 years.",
"every 4500 years.",
"every 500 hours.",
"every 1500 years.",
"every 500 weeks."
]
},
{
"id": "task017-0dc897806c6143ba8cd4c0981f37bcf1",
"input": "Sentence: This approach has been echoed by Lev Landau and Evgeny Lifshitz, and others, and has become standard. \nQuestion: How many times per week is the approach used?",
"output": [
"2.5 times.",
"0.4.",
"every month.",
"every century."
]
},
{
"id": "task017-b025c4eec04642c58ff12d8f069672cf",
"input": "Sentence: It too has many Continents are much older than ocean basins. \nQuestion: How often are Continents created?",
"output": [
"200 million seconds.",
"every day.",
"once every few hundred weeks.",
"every minute.",
"once every few hundred years.",
"once per second.",
"once per hour.",
"every century.",
"once every few hundred hours.",
"every month.",
"once every few hundred seconds.",
"once per week.",
"once per year."
]
},
{
"id": "task017-c84f25d04c4b46b9a604f9d56f39b90e",
"input": "Sentence: He claimed it was more important for Muslims to kill Americans than to kill other infidels.\". \nQuestion: How often did he repeat his claims?",
"output": [
"60 times a day.",
"20 times a minute.",
"6.67 times a day.",
"20 times a century.",
"20 times a day.",
"20 times a night.",
"every hour.",
"every second.",
"180 times a day."
]
},
{
"id": "task017-b033655dbb90423aa60703b78bf83c0c",
"input": "Sentence: He has not told his wife that he was fired and is simply serving out his tenure at the agency while looking for a new position . \nQuestion: How often does he look for a new position?",
"output": [
"1 day.",
"every few seconds.",
"2 hours.",
"2 seconds.",
"every couple years.",
"1 century."
]
},
{
"id": "task017-095663132d854fc5bca759abcf9200ad",
"input": "Sentence: At the same time, the Sudanese regime began to change. \nQuestion: How often did changes occur?",
"output": [
"after the sudanese regime began to change.",
"once a second.",
"once a hour.",
"before the sudanese regime began to change.",
"daily.",
"once a week."
]
},
{
"id": "task017-815642675c794c6c8bb1c36d5c2aabe3",
"input": "Sentence: Tumble liked to walk around outside in the garden and dig small holes to sleep in. \nQuestion: How often does Tumble get to go outside?",
"output": [
"each minute.",
"every minute.",
"every moment."
]
},
{
"id": "task017-0c67ea859f8249de94685f4f3af0a010",
"input": "Sentence: This means it is not moving yet, but it has the potential to move. \nQuestion: How often can it utilize kinetic energy?",
"output": [
"every century.",
"it means."
]
},
{
"id": "task017-49905afa741249818970bdaa942abef4",
"input": "Sentence: Lucrezia is an honorable woman and does not at first agree to meet with the stranger . \nQuestion: How often did she meet with the stranger?",
"output": [
"every century.",
"every day.",
"once night.",
"once month.",
"once century.",
"every minute.",
"they managed to stir their fans only once.",
"every month.",
"every night."
]
},
{
"id": "task017-ead7936346e44bfa8be7e0753c9f4b51",
"input": "Sentence: Soaking wet, he ran toward where I was eating a sandwich on the grass and curled right up in my lap so I could make him feel better. \nQuestion: How many times per month does he lay in her lap?",
"output": [
"140 times.",
"0.6 times.",
"every other hour.",
"every century.",
"every other year."
]
},
{
"id": "task017-eeb999a145894be090431c9dced0267c",
"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 often does Meridian National Corp. sell its shares to other companies?",
"output": [
"every second.",
"every 3 minutes.",
"every 3 centuries."
]
},
{
"id": "task017-48a0a5055993427396e62ce5fa510c83",
"input": "Sentence: These specific animals might be more likely to visit only flowers of the same species. \nQuestion: How often does the animal collect from a single flower?",
"output": [
"every minute or two.",
"once a second.",
"once every minute.",
"once per minute.",
"every century or two.",
"once a minute.",
"every month or two.",
"once a year."
]
},
{
"id": "task017-d2f50a8dee5c4c1aa4175103881a2bd4",
"input": "Sentence: In actual practice, however, we act too often as if we only cared for economic values. \nQuestion: How often do we only care for economic values?",
"output": [
"we take part in a lot of deals."
]
},
{
"id": "task017-5e95b00e25544f8fb980bb97304722ac",
"input": "Sentence: In a matter of 48 hours, Alexander II planned to release his plan for the duma to the Russian people. \nQuestion: How many times will the plan be spoken for the week it's released?",
"output": [
"few times a minute.",
"few times a century.",
"few times a month.",
"900."
]
},
{
"id": "task017-1ba334fb28584e11bdf90ef2028a01c5",
"input": "Sentence: Our investigation has uncovered no credible evidence that any person in the United States gave the hijackers substantial financial assistance. \nQuestion: How often are investigations like this launched?",
"output": [
"50 times per century.",
"50 times per minute.",
"every century.",
"16.67 times per day.",
"5.56 times per day."
]
},
{
"id": "task017-1cc9a18402514462916acdb8530bfa38",
"input": "Sentence: Some of the people who took advantage of her through a questionable loan program were sent to jail. \nQuestion: How often had they been in jail before?",
"output": [
"always.",
"sometimes."
]
},
{
"id": "task017-03fb59f43072410ebb1712c54677fdf5",
"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: How often does Mama put the jacket in the stopbox?",
"output": [
"once a week.",
"every three minutes.",
"each few days.",
"a few days.",
"once a century.",
"once a second.",
"every five minutes.",
"every three centuries.",
"every few centuries.",
"once per week.",
"once every century.",
"once a minute.",
"once a hour."
]
},
{
"id": "task017-3439bf0f601a4c8cbdda28b861d4f0fc",
"input": "Sentence: The group are chased by the assassins and Ronnie and Riya are killed . \nQuestion: How often do the assassins chase ?",
"output": [
"30 times.",
"once an hour.",
"mr. florio says the times are my times.",
"five times a week.",
"90 times.",
"five times a second.",
"five times a hour."
]
},
{
"id": "task017-7bbdf54c189e4f5189622cae6e622a42",
"input": "Sentence: When they meet , John accuses his father of abandoning him , but his father says that `` he left it up to John . ''. \nQuestion: How many times per year does John and his father meet?",
"output": [
"every day.",
"every night.",
"every morning.",
"17 times per season.",
"17 times per summer.",
"85 times per year."
]
},
{
"id": "task017-2fad41cffa614e1a8e7f6bc53bf9d616",
"input": "Sentence: I clapped her shoulder to show I was not laughing at her. \nQuestion: How often will they clap someone's shoulder?",
"output": [
"every century.",
"once a second.",
"once a minute.",
"i touch her.",
"once a century.",
"every minute."
]
},
{
"id": "task017-ae5e2564e7ba490f8c5d2aeefe75c685",
"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 often do Spear and the great man meet?",
"output": [
"every 5 seconds.",
"every 1 seconds.",
"every 5 hours.",
"twice a day.",
"twice a night.",
"once a second.",
"every 5 minutes.",
"every 5 years."
]
},
{
"id": "task017-e63010575e6e4e64bd6d63a2b99cfb22",
"input": "Sentence: Durer rejected Alberti's concept of an objective beauty, proposing a relativist notion of beauty based on variety. \nQuestion: How often are philosophical concepts rejected?",
"output": [
"philosophical concepts are rejected once a week.",
"every week.",
"every hour.",
"every second.",
"philosophical concepts are rejected once a second.",
"philosophical concepts are rejected multiple times a minute.",
"philosophical concepts are rejected once a hour.",
"never.",
"always.",
"philosophical concepts are rejected multiple times a night.",
"philosophical concepts are rejected once a year."
]
},
{
"id": "task017-18e924723b71448db63f909ecbd7cade",
"input": "Sentence: The lightscreen provided had informed me when and where official meals were taking place, but I hadn't bothered to acknowledge the invitations. \nQuestion: How often does the lightscreen provide information?",
"output": [
"every year.",
"each 5 centuries."
]
},
{
"id": "task017-b1b1d03997804ca29f81fbcc5c54ff19",
"input": "Sentence: Deborah likes to add some sugar with the lettuce so that Billy and Sally know what it is like to have sweet tastes in their life. \nQuestion: How often does Deborah prepare the lettuce?",
"output": [
"5 times a day.",
"someone know what their status is.",
"once a hour.",
"i like to know more about what happened.",
"5 times every day.",
"once a second.",
"some people know what to do.",
"5 times a century.",
"15 times a day."
]
},
{
"id": "task017-127183f8461c41439b4ce43bdd27dd4c",
"input": "Sentence: A levee is a raised strip of sediments deposited close to the waters edge. \nQuestion: How often are sediments raised?",
"output": [
"every 10 minutes.",
"once a second.",
"every other century.",
"every other minute.",
"once each minute.",
"every 10 centuries.",
"once each century.",
"every 30 minutes."
]
},
{
"id": "task017-7e8209dd28df4aa6855185ffeaea62ac",
"input": "Sentence: Allan crouched over his desk once more, pen in hand and mind blank. \nQuestion: How often does Allan crouch over his desk?",
"output": [
"once a second.",
"once two years ago.",
"several times per second."
]
},
{
"id": "task017-598e0d8b99ed4c69b870dac740772dd2",
"input": "Sentence: The legal system marketplace just doesn't serve low-income people too well, except in fee-generat-ing type cases, Brewer said. \nQuestion: How often does Brewer talk about the legal system marketplace?",
"output": [
"every year.",
"every night.",
"every minute.",
"about once a second at meetings.",
"every second.",
"low-income people own their own homes.",
"all day.",
"every century.",
"every hour."
]
},
{
"id": "task017-9723729f38ae4ee78bd2cbd7b58e2c88",
"input": "Sentence: The Persian Gulf War destroyed much of the country's medical infrastructure, according to a report by the World Health Organization. \nQuestion: How often did the Persian Gulf War take place?",
"output": [
"the end of world war two.",
"5 times.",
"annually.",
"0.56 times.",
"45 times.",
"1.67 times.",
"15 times."
]
},
{
"id": "task017-d16d0e5869784992ae1afe36ef23f564",
"input": "Sentence: He filled three stories of the building with his art in 36 hours under tight security, as only a few museum staff were aware of the shows' imminent arrival. \nQuestion: How often does the building host shows?",
"output": [
"3 times a day.",
"every 7 minutes.",
"every 21 minutes.",
"0.6 times a day.",
"every 7 hours.",
"every 2 years.",
"every 7 centuries.",
"3 times per day.",
"15 times a day."
]
},
{
"id": "task017-4570fbed73af49a3a677f62a58f3a940",
"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 many times did they take the train to China?",
"output": [
"2.5 times.",
"once a century.",
"once a night."
]
},
{
"id": "task017-c68a1c321a7243e4b92653054b471164",
"input": "Sentence: Portuguese explorers then embarked upon Macau (now Macao), the Congo, and various other parts of Africa, including the Sudan. \nQuestion: How often did Portugal send out expeditions?",
"output": [
"once a century.",
"once a week.",
"daily."
]
},
{
"id": "task017-22129806965a47ec8ad308b86735179b",
"input": "Sentence: Upon graduation in 1975, she entered private law practice in Oxford, joining NMRLS in 1978. \nQuestion: How many cases does she work on a month?",
"output": [
"360.",
"120."
]
},
{
"id": "task017-5b5bd9bfc70b420eac3334734f8dacdc",
"input": "Sentence: She had it for a long time so it is now a dark brown color. \nQuestion: How often does she use it?",
"output": [
"once a minute.",
"she uses it every minute.",
"15 times an hour.",
"5 times an hour.",
"2.5 times an hour."
]
},
{
"id": "task017-348378a951cb4da6bd9a26259a3d8878",
"input": "Sentence: So really, that's what many of the people are doing now,\" he said. \nQuestion: How often do they do this?",
"output": [
"every century.",
"every 90 years.",
"every 10 seconds."
]
},
{
"id": "task017-aea59b62df604d60a18f9cb5c7e8ef7b",
"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: How often does the judge scold someone in court?",
"output": [
"once a century.",
"once in his life."
]
},
{
"id": "task017-606d6e94601b4ba08134ccfa6359ad5e",
"input": "Sentence: The fiction of Japanese imperial power had become infinitely extendable. \nQuestion: How often did the imperialists attempt to extend their narrative of power?",
"output": [
"three times each minute.",
"three times each night.",
"one a hour.",
"one a second.",
"one a year."
]
},
{
"id": "task017-87d162022dc9457d9209a93473e6b5ec",
"input": "Sentence: Floodplains In very flat regions, flood water may spread out on the surface of the land. \nQuestion: How often do flood waters spread?",
"output": [
"every few seconds.",
"every few days.",
"every day.",
"every night.",
"weekly.",
"once a day.",
"once a week.",
"every few hours.",
"once a century.",
"every century."
]
},
{
"id": "task017-a9c4f890d17940d6bb82b99289bc0082",
"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: How often did they use salt?",
"output": [
"every minute.",
"three times a century.",
"once a minute."
]
},
{
"id": "task017-1895bbeafa464707acf5f39f004ab42b",
"input": "Sentence: He argued that the importance of the French Revolution was to continue the process of modernizing and centralizing the French state which had begun under King Louis XIV. \nQuestion: How often does he make this argument?",
"output": [
"twice.",
"once a minute."
]
},
{
"id": "task017-0a1a2983a359445084dbcb418922b154",
"input": "Sentence: What if you rode the bus or were driven in a car?. \nQuestion: How often do kids ride the bus?",
"output": [
"every 5 minutes.",
"twice a century.",
"twice a minute.",
"5 centuries a week.",
"twice a night.",
"never.",
"always.",
"every 45 minutes."
]
},
{
"id": "task017-3cab436015a74acda9e9fb4cd10bdfd2",
"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 often do teleconferences get set up?",
"output": [
"very rarely.",
"teleconferences get set up once each two seconds.",
"about once every century.",
"teleconferences get set up once a century.",
"telecon briefings get set up once a century.",
"about twice every hour."
]
},
{
"id": "task017-b39f017e957d41ab924760afed8622c9",
"input": "Sentence: They packed up the car and drove to the library, ready for a fun morning. \nQuestion: How often do they drive to the library?",
"output": [
"five times a minute.",
"every hour.",
"once a second.",
"once a hour.",
"once every two seconds.",
"five times a century.",
"five times a night.",
"every second.",
"every few seconds.",
"every year.",
"once a year.",
"five times a day.",
"every few hours.",
"once every two years.",
"every few years."
]
},
{
"id": "task017-a34c1b9659b0466c95f8df0f7ac888f4",
"input": "Sentence: A thwarted Mongol invasion in 1274 weakened the Kamakura regime. \nQuestion: How often had they invaded before?",
"output": [
"900 times.",
"300 times.",
"100 times."
]
},
{
"id": "task017-b0ae5af30f1b4fb68757d50eb7d1f992",
"input": "Sentence: Third, no middle ground exists in what Qutb conceived as a struggle between God and Satan. \nQuestion: How often do God and Satan struggle?",
"output": [
"every century.",
"once every decade.",
"every month.",
"never."
]
},
{
"id": "task017-e20ae21192a9411dae7961017a555d6b",
"input": "Sentence: Columbia University's student group for ROTC cadets and Marine officer candidates is named the Alexander Hamilton Society. \nQuestion: How often does the Alexander Hamilton Society have meetings?",
"output": [
"45 times a day."
]
},
{
"id": "task017-9e108bf0c82245978988fb9717526a20",
"input": "Sentence: There are many haras (breeding stables) in the neighbourhood, and the big Norman posters are much in demand. \nQuestion: How often are the big Norman posters requested?",
"output": [
"every century.",
"never.",
"they are requested once in a century."
]
},
{
"id": "task017-bbab783a2854426d843e6e44b024cdf6",
"input": "Sentence: A floodplain is an area where a thick layer of rich soil is left behind as the floodwater recedes. \nQuestion: How often does it flood in a floodplain?",
"output": [
"once every 15 seconds.",
"every 100 seconds.",
"once a second.",
"once every 15 hours.",