-
Notifications
You must be signed in to change notification settings - Fork 190
/
task015_mctaco_question_generation_frequency.json
3096 lines (3096 loc) · 139 KB
/
task015_mctaco_question_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": [
"Question Generation"
],
"Reasoning": [
"Temporal Reasoning",
"Commonsense Reasoning"
],
"Definition": [
"Provided the input sentence, you're expected to write 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. Don't create questions which have explicit mentions of answers in the text. Instead, it has to be implied from what is given. In other words, we want you to use \"instinct\" or \"common sense\". Also, the written questions are not required to have a single correct answer."
],
"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.",
"output": "How often does Jack play basketball?",
"explanation": "\"Playing basketball\" typically happens few times (1-7) per week, so it is a \"frequency\" question."
},
{
"input": "Sentence: He was born in China, so he went to the Embassy to apply for a U.S. Visa.",
"output": "How often does he apply a Visa?",
"explanation": "Normally, the mentioned event occurs every few years (and not \"once a week\"). This understanding makes this a \"frequency\" question."
}
],
"Negative Examples": [
{
"input": "Sentence: He spent two hours on his homework.",
"output": "How long did he do his homework?",
"explanation": "We DO NOT want this question, as the answer is directly mentioned in the text."
}
],
"Instances": [
{
"id": "task015-2dd93f5b87c44b6886ac6e1a54738119",
"input": "Sentence: Islam later emerged as the majority religion during the centuries of Ottoman rule, though a significant Christian minority remained.",
"output": [
"How often has Christianity been the major religion?"
]
},
{
"id": "task015-d96f9a3c45c84bbfb8c5b134914adf36",
"input": "Sentence: It's hail crackled across the comm, and Tara spun to retake her seat at the helm.",
"output": [
"How often does a typical ship face a major storm like this?"
]
},
{
"id": "task015-ca3ecaf3360f42258608a22578ed4ea5",
"input": "Sentence: Still , Preetam vows to marry Nandini if she meets him again .",
"output": [
"How often did they think of each other?"
]
},
{
"id": "task015-8b7089e8d69146f7b931a6060aed86a1",
"input": "Sentence: Max and Joey would often run through fields in a game of chase.",
"output": [
"How often do Max and Joey run?"
]
},
{
"id": "task015-8ab5e3d592d94894b68acfaad7efa139",
"input": "Sentence: Carl Laemmle, head of Universal Studios, gave Einstein a tour of his studio and introduced him to Chaplin.",
"output": [
"How often does Carl give tours?"
]
},
{
"id": "task015-9aa1e28af50546eb8e20e1b36051606f",
"input": "Sentence: He layed down on the chair and pawed at her as she ran in a circle under it.",
"output": [
"How often does he lay on the chair?"
]
},
{
"id": "task015-d56e9ac5448c47efa8e76f2455219803",
"input": "Sentence: His counter-attack with Dayak warriors drove the Chinese out of Bau and across the Sarawak border.",
"output": [
"How often is a warrior promoted during battle?"
]
},
{
"id": "task015-4b72e23e43cf4aa8bff20a7b231bb331",
"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.",
"output": [
"How often did Arawak people die from European diseases?"
]
},
{
"id": "task015-6ab62ac975d64c4e81c0c5d4f536325a",
"input": "Sentence: About 30% of Ratners's profit already is derived from the U.S.",
"output": [
"How often did Ratners make a profit?"
]
},
{
"id": "task015-cbcaec15466d4aa495d93acf82b3271d",
"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 .",
"output": [
"How often does Lennon's father leave him?"
]
},
{
"id": "task015-faff1c7c40c044e787157c67acbb41a7",
"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.",
"output": [
"How often did he try to drum up interest?"
]
},
{
"id": "task015-018619f098e8488e8f5acf5ef56efa42",
"input": "Sentence: Bailey received the award for his three years of volunteer work at Indiana Pro Bono Commission.",
"output": [
"How often does Bailey receive awards?"
]
},
{
"id": "task015-07fb9c3a1cc2482e99728e5b7abccf34",
"input": "Sentence: In 1930, the poet Muhammad Iqbal proposed a separate Muslim homeland in the northwest of India.",
"output": [
"How often did Muhammad Iqbal make a proposal?"
]
},
{
"id": "task015-6ce2a380d56c404bbc7193afd1dbbb40",
"input": "Sentence: There was even a tiny room in the back of one of the closets.",
"output": [
"How often was the room utilized?"
]
},
{
"id": "task015-e73feff0aea84090b5d91cb90cce06de",
"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.\".",
"output": [
"How often are planes hijacked?"
]
},
{
"id": "task015-d6329124fc164629998f109b5f45a1a5",
"input": "Sentence: The king of Gandhara then stops everyone from grabbing the little food that is provided .",
"output": [
"How often are they able to eat?"
]
},
{
"id": "task015-f61b2acd08fb46cda3c2eef2aff6c7fc",
"input": "Sentence: Several tenants blame other neighbors as perpetrators of the rift, however.",
"output": [
"How often do the tenants have issues with other people?"
]
},
{
"id": "task015-9e32be2200394c91a4d677b63ad3e412",
"input": "Sentence: The resolution creating the new intelligence committee structure should grant subpoena authority to the committee or committees.",
"output": [
"How often does the committee meet?"
]
},
{
"id": "task015-889936acf84641bf84f124847f9df4f7",
"input": "Sentence: Pushkin gradually became committed to social reform and emerged as a spokesman for literary radicals.",
"output": [
"How often does Pushkin speak at events?"
]
},
{
"id": "task015-5a10853a9b254ae1a493eba067f3a55d",
"input": "Sentence: She ordered the tastiest kind of each vegetable and the prettiest kind of each flower.",
"output": [
"How often does she order vegetables and flowers?"
]
},
{
"id": "task015-7339b13acb734de4a9181b3093a3b368",
"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.",
"output": [
"How often does Mama put the jacket in the stopbox?"
]
},
{
"id": "task015-f87b4731b18a491491b224fc7b2195e9",
"input": "Sentence: I suppose he was attracted to the commotion up the hill.\".",
"output": [
"How often are there commotions on the hill?"
]
},
{
"id": "task015-e3618b305aee4d14a2a6d56957df4ed6",
"input": "Sentence: Wallace, 38, called Gastonia home from the age of 8 until she graduated from Hunter Huss High School in 1983.",
"output": [
"How many times a week did Wallace go to school?"
]
},
{
"id": "task015-8915fadb8b3a4753a579c1bbc120853d",
"input": "Sentence: Jerry goes out to the pier and casts his favorite bait : cheese .",
"output": [
"How many times a week does Perry go the pier?"
]
},
{
"id": "task015-941edfb30b79447d9e2d5f95ff9443ee",
"input": "Sentence: It too has many Continents are much older than ocean basins.",
"output": [
"How often are Continents created?"
]
},
{
"id": "task015-dde885ceb4a04339959ce2342317f56d",
"input": "Sentence: Charlie decides to rob the train with the help of imprisoned Don and con-artist Victor Braganza .",
"output": [
"How many times has Charlie robbed a train?"
]
},
{
"id": "task015-2bc45d3e09cd445181bb1f0b8a1ee40b",
"input": "Sentence: He claimed it was more important for Muslims to kill Americans than to kill other infidels.\".",
"output": [
"How often did he repeat his claims?"
]
},
{
"id": "task015-c3d5508afc9c4571a5915361870dc4e7",
"input": "Sentence: You can clearly see the same rock layers on opposite sides of the canyon.",
"output": [
"How often are canyons formed?"
]
},
{
"id": "task015-bbc1c15c19eb498187c0e6e2db8cc426",
"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 .",
"output": [
"How often does he look for a new position?"
]
},
{
"id": "task015-fdbb889166124de59254ccdfb9e06112",
"input": "Sentence: These fossils showed that this entire area was once at the bottom of a sea.",
"output": [
"How often are fossils found in the area?"
]
},
{
"id": "task015-f60bc83e14f4491cb3b15e49cd813699",
"input": "Sentence: Some are trying to escape eviction or an abusive marriage.",
"output": [
"How frequently do they attempt to escape?"
]
},
{
"id": "task015-3d756fbcb0f341d0b09a1420eca039f7",
"input": "Sentence: Ruling that the order was mutually binding, Judge Thornton also cited the men for contempt.",
"output": [
"How often does Judge Thornton issue rulings?"
]
},
{
"id": "task015-334f8e3d3970473e81b9930713d26122",
"input": "Sentence: The two become close friends but do not reveal the secrets .",
"output": [
"How often do the friends hang out?"
]
},
{
"id": "task015-f8e0ea702d944cefa41d28099649d2e8",
"input": "Sentence: For example, buy local produce at a farmers market, like the one in Figure 2.20.",
"output": [
"How often do they buy produce from the farmers market?"
]
},
{
"id": "task015-a37ef4d716244335b10c98b90cfd82fc",
"input": "Sentence: Direct control of the political operations of the entirety of Algeria, however, was not.",
"output": [
"How often is Algeria free from direct control over it's political operations?"
]
},
{
"id": "task015-1e0d9ba31d2540648e415c8d2597274d",
"input": "Sentence: He tried to halt the Dayaks' piracy and head-hunting while defending their more \"morally acceptable\" customs.",
"output": [
"How often does he defend their acceptable customs?"
]
},
{
"id": "task015-b6de0f5fc70f4881b41bb1ac906ddd1e",
"input": "Sentence: Setbacks in the 1930s caused by the European postwar slump were only a spur to redouble efforts by diversifying heavy industry into the machine-making, metallurgical, and chemical sectors.",
"output": [
"How often does the slump occur?"
]
},
{
"id": "task015-7faa1ccc9bb243abb1558c56d831579c",
"input": "Sentence: Upsetting many of his colleagues and contemporaries in France, the book brought about the final split with Sartre.",
"output": [
"How often is the book published?"
]
},
{
"id": "task015-a5188ac2803547fa93bd8064ed50d5a8",
"input": "Sentence: That amount is convertible into shares of Meridian common stock at $2 a share during its one-year term.",
"output": [
"How often does the amount get converted to shares?"
]
},
{
"id": "task015-ba5e3d49bb57479b84134e21c95b1952",
"input": "Sentence: Tony and Ally like to play other games like hopscotch or jump rope but that day they joined the game of tag.",
"output": [
"How often do Tony and Ally play hopscotch?"
]
},
{
"id": "task015-7bb7a411b6df41ed84aa221f595ccedc",
"input": "Sentence: Dr. Safti is so busy saving lives that he can not personally care for Edwina , who has fallen ill .",
"output": [
"How often does Dr. Safti save lives?"
]
},
{
"id": "task015-c1d4f1e008ed4e67aa482104ef553952",
"input": "Sentence: Mohamed Atta was born on September 1, 1968, in Kafr el Sheikh, Egypt, to a middle-class family headed by his father, an attorney.",
"output": [
"How many cases a month does his father work on?"
]
},
{
"id": "task015-69949d8c3036467a8c3643bf020c34f6",
"input": "Sentence: Previously, it offered $13.65 a share in cash, or $29 million.",
"output": [
"How often do they change how much they offer per share?"
]
},
{
"id": "task015-3b03916cfaf24be2822219261df4611b",
"input": "Sentence: Triumph and Disaster: The 20th century saw a stupendous release of energies that had been pent up for the 250 years of Tokugawa isolation.",
"output": [
"How often did 20th century Japan experience conflicts?"
]
},
{
"id": "task015-4f73ea2e8db2440db1989b064ad73499",
"input": "Sentence: While Dr. Hughes finds an alien corpse with a fossilized diamond , Dr. Campbell finds hieroglyphics at the cost of the party except for Hughes and himself .",
"output": [
"How often are alien corpse's found?"
]
},
{
"id": "task015-81ea2920fcd3419782084b5b1305ed66",
"input": "Sentence: In the region around Genoa, he enrolled a thousand men to go on what looked like a desperate enterprise.",
"output": [
"How often do the men embark on desperate enterprises?"
]
},
{
"id": "task015-5b10ab54037f4fdb9c2ed6479838cebb",
"input": "Sentence: After the August missile strikes, diplomatic options to press the Taliban seemed no more promising than military options.",
"output": [
"How often did the strikes happen?",
"How often did the strikes happen?",
"How often did the strikes happen?"
]
},
{
"id": "task015-0a8bffc680a3460b9e2e057f99c87a9d",
"input": "Sentence: The clock could be heard ticking through the air and glass of the jar.",
"output": [
"How often does the clock tick?"
]
},
{
"id": "task015-165f021153ca4c3dac85d2f31ef86cf7",
"input": "Sentence: Johnson is a justice on California's Second District Court of Appeal.",
"output": [
"How many times a week does Johnson go to court?"
]
},
{
"id": "task015-696e3d5e325f4f518ca9833fac1bbb60",
"input": "Sentence: Often times women are in need of immediate legal assistance services for the protection of the mother and the child.",
"output": [
"How often can one apply for immediate legal assistance services ?"
]
},
{
"id": "task015-2b547ff111504061929c0e4bc777af5e",
"input": "Sentence: Church is brought back to life , but is an evil shell of himself .",
"output": [
"How many times was Church brought back to life?"
]
},
{
"id": "task015-8632d3c0cad848e89a82ee848f52da7a",
"input": "Sentence: After finally sleeping with Lucrezia , Callimaco confesses everything .",
"output": [
"How many times did Callimaco sleep with Lucrezia?"
]
},
{
"id": "task015-a4a3b08c400a4189b8452fe2061f7b23",
"input": "Sentence: This means it is not moving yet, but it has the potential to move.",
"output": [
"How often can it utilize kinetic energy?"
]
},
{
"id": "task015-03b53c453840484ab5ca3b07605a6c6e",
"input": "Sentence: Once we arrive, the castle looked much bigger than we had imagined.",
"output": [
"how often did you imagine it?",
"how often did you imagine it?",
"how often did you imagine it?",
"how often did you imagine it?",
"how often did you imagine it?",
"how often did you imagine it?",
"how often did you imagine it?",
"how often did you imagine it?",
"how often did you imagine it?",
"how often did you imagine it?",
"how often did you imagine it?",
"how often did you imagine it?"
]
},
{
"id": "task015-45823cd08c5c471c8ec9f52ba05aa3c7",
"input": "Sentence: The cute red ball rolled over to the blue ball and said hello.",
"output": [
"How often does the red ball roll to other balls?"
]
},
{
"id": "task015-6eeb5cb98473459cad8160e70e369293",
"input": "Sentence: Every Saturday we would go to the park and play Toodles' favorite game.",
"output": [
"How long have you been playing the game?",
"How long have you been playing the game?",
"How long have you been playing the game?",
"How long have you been playing the game?",
"How long have you been playing the game?",
"How long have you been playing the game?",
"How long have you been playing the game?"
]
},
{
"id": "task015-5a3be6a6dbb647609f580077e183d3bf",
"input": "Sentence: Taj Jackson told the magazine: \"My mom made sure that we had a real childhood, with birthday parties, baseball, family outings, all that stuff.\".",
"output": [
"How often would Taj Jackson have a birthday party?"
]
},
{
"id": "task015-ebc0da2dab0844198f66d38467f3ffc3",
"input": "Sentence: Over the centuries, the living here has always been easy enough to attract a steady stream of immigrants.",
"output": [
"How many times per month did immigrants arrive?"
]
},
{
"id": "task015-9360967428524af2bb5ec97adda7c203",
"input": "Sentence: The official death toll has reached 114 -- including 66 women, 28 children and 20 men, the ministry said.",
"output": [
"How often does the death toll rise?"
]
},
{
"id": "task015-d269f2b1518e4e358176e2cd15f138c8",
"input": "Sentence: When he's not working for a Washington defense attorney, Lucas recovers stolen property for a 40% cut.",
"output": [
"How often does he recover stolen property for people?"
]
},
{
"id": "task015-9621ea42031549f6a3752a40b9092edf",
"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.",
"output": [
"How often did she arrive per week?"
]
},
{
"id": "task015-81cf6eb49f134a6e9a470a6dc73ad477",
"input": "Sentence: A thin, washed-out, pretty woman stood up, and clasped her hands in front of her.",
"output": [
"How often does she clasp her hands?"
]
},
{
"id": "task015-170461e9853e47acb452fe2c5100b4f3",
"input": "Sentence: When she went to a courthouse to file a complaint against her landlord, she found the process so confusing that she gave up and went home.",
"output": [
"How often are people confused at the courthouse?"
]
},
{
"id": "task015-8c893d6640134e139f9aa52aa687e63c",
"input": "Sentence: Danny begins spending less and less time at home with his wife and children .",
"output": [
"How often was he gone during the week?"
]
},
{
"id": "task015-3017b60336694b21be0cbd896cd14f8d",
"input": "Sentence: Einstein was displeased with quantum theory and mechanics (the very theory he helped create), despite its acceptance by other physicists, stating that God \"is not playing at dice.\".",
"output": [
"How many times a day did Einstein think about physics?"
]
},
{
"id": "task015-ba4f3c307bf6419eb83841d11e9aeefd",
"input": "Sentence: They packed up the car and drove to the library, ready for a fun morning.",
"output": [
"How often do they drive to the library?"
]
},
{
"id": "task015-2bb7a21137f14f4682eb79b0b459b237",
"input": "Sentence: Nibras and Quso delivered money to Khallad in Bangkok during Khallad's January 2000 trip to Kuala Lumpur and Bangkok.",
"output": [
"How often does Khallad make these trips?"
]
},
{
"id": "task015-cb7b2032366d41cc80f1c1499a57b8f6",
"input": "Sentence: The angle at which it strikes the surface tells us how it will bounce off.",
"output": [
"How many times did she throw the ball at the surface?"
]
},
{
"id": "task015-2cd2af73387f49a3b86ab3478a362ca5",
"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.\".",
"output": [
"How many times did President Clinton plead with Musharraf?"
]
},
{
"id": "task015-7348c68f134248288f43d84477d6cf2f",
"input": "Sentence: Allan crouched over his desk once more, pen in hand and mind blank.",
"output": [
"How often does Allan crouch over his desk?"
]
},
{
"id": "task015-f2803ec1b9804c0ca46eb43d7cc39d49",
"input": "Sentence: Mintie, her colleagues say, could have made a lot of money in private practice.",
"output": [
"How often does Mintie make money?"
]
},
{
"id": "task015-2af61947d04347ec8f10bf33b52ac23e",
"input": "Sentence: In the aftermath of Massaga and Ora, numerous Assakenians fled to the fortress of Aornos.",
"output": [
"How often did the Assakenians flee?"
]
},
{
"id": "task015-c1fd913eaafe48368bce76e3a8098d6c",
"input": "Sentence: Tumble liked to walk around outside in the garden and dig small holes to sleep in.",
"output": [
"How often does Tumble get to go outside?"
]
},
{
"id": "task015-e17e8e8cf97347d0bfcad82b85a296e8",
"input": "Sentence: They also liked to go through the small forest behind the house, making a game of hide and seek.",
"output": [
"How often do they play hide and seek?"
]
},
{
"id": "task015-a02ff494ca3448b2953653ad2af1a65d",
"input": "Sentence: The NMCC learned about United 93 from the White House.",
"output": [
"How often is United 93 discussed?"
]
},
{
"id": "task015-e33e3223c99841b7b5c186f9d780370d",
"input": "Sentence: The story then moves forward to 1920 and shows the expedition led by scientist Sir Basil Walden and business man Stanley Preston finding the tomb .",
"output": [
"How often did the scientist lead expeditions?"
]
},
{
"id": "task015-02d5cd496b9b40498d50def0d861acf1",
"input": "Sentence: The Serbian, who beat Tsonga in the 2008 Australian Open final, ended the dream run of Australian 18-year-old Bernard Tomic.",
"output": [
"How often had the Serbian beat Tsonga before?"
]
},
{
"id": "task015-a7726e2a77044c87b82418a2c52edb4b",
"input": "Sentence: In a matter of 48 hours, Alexander II planned to release his plan for the duma to the Russian people.",
"output": [
"How many times will the plan be spoken for the week it's released?"
]
},
{
"id": "task015-9be7724b90144b43b1b1dde143aaec37",
"input": "Sentence: A majority of 65 votes in the 128-member body was required to reject his reinstatement.",
"output": [
"How often are elections held?"
]
},
{
"id": "task015-1f8e09f866f14e3e982b9c65f8038771",
"input": "Sentence: A lot of poor people are not going to get served,'' she said.",
"output": [
"How often are the poor turned away for services?"
]
},
{
"id": "task015-eb1fa661623e4dbb8fa1a9be19461ca3",
"input": "Sentence: Youll buy fewer items in the long run, so youll save money as well as resources.",
"output": [
"How often will you save money?"
]
},
{
"id": "task015-81c97b14b62f402da8d81891b5b8b286",
"input": "Sentence: Martinez works two jobs as a physician's assistant and supports his elderly parents and 8-year-old son.",
"output": [
"How often does Martinez work?"
]
},
{
"id": "task015-631793c611d042b7b47534c983c079bb",
"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.",
"output": [
"How often does Meridian National Corp. sell its shares to other companies?"
]
},
{
"id": "task015-dda60547c2ba4ce1916ffb4ad579729d",
"input": "Sentence: From Hunter Huss, she moved on to pursue a degree at Pfeiffer University in Misenheimer.",
"output": [
"How often did she reevaluate her major?"
]
},
{
"id": "task015-beb1b5237b814afb868a40327f4c1f64",
"input": "Sentence: Schools were scarce between World War I and World War II.",
"output": [
"How many times did World War I happen?"
]
},
{
"id": "task015-f3a3000f2e0a4a24bd10dd485399fb8d",
"input": "Sentence: Ace , a wannabe rock star , is on his way to a concert of the band Guitar Wolf when space aliens invade the Earth .",
"output": [
"How often does Ace go to concerts?"
]
},
{
"id": "task015-b4e3ac8c2d4e415a9e25b5be0f381460",
"input": "Sentence: All the puppies at the dog pound need a loving home.",
"output": [
"How often are puppies adopted at the dog pound?"
]
},
{
"id": "task015-2f6d579628be437c96231bc6507f2b6d",
"input": "Sentence: Tim knew if the bike was going to be in any of the presents it was going to be in this box.",
"output": [
"How many times was the bike put in the box?"
]
},
{
"id": "task015-90811e309ab24475938a388a54a43649",
"input": "Sentence: Ellen Pollak's The Poetics of Sexual Myth (1985) argues that Pope followed an anti-feminist tradition, that regarded women as inferior to men both intellectually and physically.",
"output": [
"How many times a day does the Pope get feminist messages?"
]
},
{
"id": "task015-bcdea7ffae8148cb812ae685fb40c789",
"input": "Sentence: In Colombia, the drug-financed guerrillas trying to seize the country and destroy democracy include M-19, which Castro has clearly backed.",
"output": [
"How often is there conflict between the gorillas and the Columbian government?"
]
},
{
"id": "task015-7936cfe2c7404c1ba95970a60d9d3606",
"input": "Sentence: The Albanians first appear in the historical record in Byzantine sources of the late 11th century.",
"output": [
"How often did the Byzantine empire document new cultural groups?"
]
},
{
"id": "task015-d13d642e164a4fe49ebf22b49f831c4e",
"input": "Sentence: They are able to study the DNA of the organism that no longer lives on Earth.",
"output": [
"How often do they study the DNA of extinct organisms?"
]
},
{
"id": "task015-080d68e8a974423f932a19f6eee19c85",
"input": "Sentence: Having damaged the enemy's cohesion, Philip ordered his troops to press forward and quickly routed them.",
"output": [
"How often does Philip check his troops position?"
]
},
{
"id": "task015-bcd877e9cc5c479c8bbdef17a785c0ab",
"input": "Sentence: The 9/11 plotters eventually spent somewhere between $400,000 and $500,000 to plan and conduct their attack.",
"output": [
"How often did the 9/11 attack occur?"
]
},
{
"id": "task015-be90553b2035419882776e5b87f22c91",
"input": "Sentence: Atta and Omari boarded a 6:00 A.M. flight from Portland to Boston's Logan International Airport.",
"output": [
"How many times a month do they fly on a plane?"
]
},
{
"id": "task015-16afcb75acbf4146be873a41c7e3e33a",
"input": "Sentence: Eventually, the shelter received word that the alleged hijacker 5 miles away had been a medevac helicopter.",
"output": [
"How often does the shelter have to concern themselves with hijackers.?",
"How often does the shelter have to concern themselves with hijackers.?",
"How often does the shelter have to concern themselves with hijackers.?",
"How often does the shelter have to concern themselves with hijackers.?",
"How often does the shelter have to concern themselves with hijackers.?",
"How often does the shelter have to concern themselves with hijackers.?",
"How often does the shelter have to concern themselves with hijackers.?",
"How often does the shelter have to concern themselves with hijackers.?"
]
},
{
"id": "task015-d47ab32d73d345edbc6f1fe51a49c6bf",
"input": "Sentence: The Persian Gulf War destroyed much of the country's medical infrastructure, according to a report by the World Health Organization.",
"output": [
"How often did the Persian Gulf War take place?"
]
},
{
"id": "task015-e24accfbbe474977a55d18d295ea467b",
"input": "Sentence: In the mean time fate had avenged Law on one of his lesser enemies.",
"output": [
"How often did fate intervene?"
]
},
{
"id": "task015-e42e8bf26c954839b1ed912929d27c41",
"input": "Sentence: For example, what if you place a cake in the oven and you leave it in too long?.",
"output": [
"How often do you leave cakes in the oven too long?"
]
},
{
"id": "task015-796454b4d0f04ced866511bfec651d74",
"input": "Sentence: He'd seen a dog before, every cat has, and he used to live with a black dog named Henry, but he'd never seen a brown one before.",
"output": [
"How often does he see dogs?"
]
},
{
"id": "task015-efb554e80ae94507b29d1bbb72fbdb62",
"input": "Sentence: Zarco and Teixeira were appointed co-governors of Madeira, while Perestrelo was awarded Porto Santo.",
"output": [
"How often are there co-governors appointed?"
]
},
{
"id": "task015-495c04cad53d4a5eb45b97c7e30c1c6d",
"input": "Sentence: Our emphasis has been on having our potential clients know about us and deliver services to them, Dudovitz said.",
"output": [
"How often does Dudovitz contract potential clients?"
]
},
{
"id": "task015-dabc36bb55cc46f2b31a77376ca5fc08",
"input": "Sentence: Whatever their origins, their culture evolved under the pressure and influence of foreign forces.",
"output": [
"How often do they evolve?",
"How often do they evolve?",
"How often do they evolve?",
"How often do they evolve?",
"How often do they evolve?",
"How often do they evolve?",
"How often do they evolve?"
]
},
{
"id": "task015-ce52cb7b5c1342868228ab2a3d5336e4",
"input": "Sentence: In a 1945 interview, Camus rejected any ideological associations: \"No, I am not an existentialist.",
"output": [
"How many interviews did Camus do during his career?"
]
},
{
"id": "task015-9fe96975de8c4b69bf681b82894ca02a",
"input": "Sentence: He jumped into the pond and started swimming toward the ducks, chasing around his new playmates.",
"output": [
"How often does he chase birds?"
]
},
{
"id": "task015-997eb413873241c3af75eac50a5d863a",
"input": "Sentence: Farragut convinces the ad men to make the motorcycle journey on the pretext of looking for a location to shoot a commercial .",
"output": [
"How often will they make the journey?"
]
},
{
"id": "task015-5aa1f94c017c4ac59be6732f1fe8764e",
"input": "Sentence: The scout ship re-emerged from the hole - a brilliant speck emerging from a sphere of velvety blackness.",
"output": [
"How many times did the scout ship re-emerge from the hole?"
]
},
{
"id": "task015-a3718329bacb434e8bbf05b7bed5c62c",
"input": "Sentence: He spoke the last word with such heavy intonation that Allan shrank back before the physical wave of sound emanating from Arthur's throat.",
"output": [
"How often does Arthur talk to Allan?"
]
},
{
"id": "task015-d1c3defcd5e3458793d944090deee9fa",
"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.",
"output": [
"How often does Khallad get arrested?"
]
},
{
"id": "task015-fbbc618915eb4af7b0114f91e8857cf0",
"input": "Sentence: But in between quippy posters and ads for the film, which is a sequel to 2011's blockbuster \"The Muppets\" with Jason Segel, there are ingenious \"selfies\" from the Muppets crew.",
"output": [
"How many times a year does the average viewer watch this film?"
]
},
{
"id": "task015-948236682ba44207aff569ee366e11e6",
"input": "Sentence: She later adopted the stage name Fontaine -- the name of her mother's second husband.",
"output": [
"How often did she change her stage name?"
]
},
{
"id": "task015-49447e54f5614b1aa26696afe7cfcf1f",
"input": "Sentence: He also had orang laut pirates patrolling the seas to extort tribute from passing ships.",
"output": [
"How often did the pirates collect a tribute?"
]
},
{
"id": "task015-ba487cd87bf84cb792eb450ea7b2eb3d",
"input": "Sentence: Delighted , Preetam goes in search of her watch and brings it back .",
"output": [
"How often does Preetam lose her things and gets them back?"
]
},
{
"id": "task015-29b96fbfd413482fb7b96fd760b045b0",
"input": "Sentence: In London at mid-afternoon yesterday, Ratners's shares were up 2 pence (1.26 cents), at 260 pence ($1.64).",
"output": [
"How often do Ratners's shares get this high?"
]
},
{
"id": "task015-0de838b39257400e9b67249510185972",
"input": "Sentence: It seemed strange to him, but not as strange as it was to see Linda the brown chicken in the living room last spring.",
"output": [
"How often does he find a wild animal in his house?"
]
},
{
"id": "task015-ded0b47d913e496faec4a9af7ef1822f",
"input": "Sentence: Then the green ball told the orange ball that blue ball was stupid.",
"output": [
"How often do the green and orange ball talk?"
]
},
{
"id": "task015-e9bbf08322ec4e0d82f5586981d510c6",
"input": "Sentence: He estimated the money will help handle at least another 180 cases next year.",
"output": [
"How often did the money help people?"
]
},
{
"id": "task015-8c3589df6ecf44e282d50f4fe6106b1b",
"input": "Sentence: Meanwhile , after being placed in the Cairo Museum , the mummy of Prem is revived when Hasmid chants the sacred oath on the shroud .",
"output": [
"How often does the sacred oath need to be chanted?"
]
},
{
"id": "task015-70e74df69bc54ad5a9540a23027f37c9",
"input": "Sentence: So how do you know where light will go after it strikes a shiny surface?.",
"output": [
"How many times does light reflect off a surface?"
]
},
{
"id": "task015-8eb83a657c62442caf2d9921f2dfd5eb",
"input": "Sentence: Portuguese explorers then embarked upon Macau (now Macao), the Congo, and various other parts of Africa, including the Sudan.",
"output": [
"How often did Portugal send out expeditions?"
]
},
{
"id": "task015-c336ff393dd040dcb4366e0ccd7c01b7",
"input": "Sentence: He ordered the evacuation of al Qaeda's Kandahar airport compound and fled- first to the desert area near Kabul, then to Khowst and Jalalabad, and eventually back to Kandahar.",
"output": [
"How often did he go to Khowst during the journey?"
]
},
{
"id": "task015-9489e28f99824e94b78c7527747798a5",
"input": "Sentence: Remembering the \"we have some planes\" remark, Boston Center guessed that Delta 1989 might also be hijacked.",
"output": [
"How many times a decade do plane hijackings take place?"
]
},
{
"id": "task015-1e94d633e697495aa2d571cc0c2f9e96",
"input": "Sentence: Jud replies , `` Christ on His throne , no. .",
"output": [
"How often does Jud attend Church?"
]
},
{
"id": "task015-826f4817b5404c8e96b3f2ff6377b502",
"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.",
"output": [
"How often do the congressional committees convene?"
]
},
{
"id": "task015-b8bdb4753eb748579447eee7994e373a",
"input": "Sentence: Tommy and Suzy (brother and sister) went to the playground one afternoon with their mom and dad, Jan and Dean.",
"output": [
"How often did they go to the playground?"
]
},
{
"id": "task015-bc31881328cf49168555d7b93cf27518",
"input": "Sentence: He also had very short legs, but really big paws.",
"output": [
"How often did he have short legs?"
]
},
{
"id": "task015-010e64e805054ffdbca4893d9d424222",
"input": "Sentence: A. DeConcini Federal Courthouse, 405 W. Congress St. Deconcini was one of the organization's early board members.",
"output": [
"How often did the board members meet?"
]
},
{
"id": "task015-1f22ce6ad0574807b665069aab025329",
"input": "Sentence: Dam Square was landlocked for the first time in its history.",
"output": [
"When is it expected to not be landlocked again?",
"When is it expected to not be landlocked again?",
"When is it expected to not be landlocked again?"
]
},
{
"id": "task015-69972fa86414419aac135156ef1dd31f",
"input": "Sentence: In Malaysia, Powell met with Prime Minister Mahathir Mohamad, who has led the country since 1981.",
"output": [
"How often does Powell travel to other countries to meet their leaders?"
]
},
{
"id": "task015-fec5eb75ebdf4c59990599946bebddf2",