-
Notifications
You must be signed in to change notification settings - Fork 189
/
task009_mctaco_question_generation_event_ordering.json
2528 lines (2528 loc) · 113 KB
/
task009_mctaco_question_generation_event_ordering.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": [
"In this task, based on a given sentence, we ask you to write a question that involves the ordering of events, i.e., the understanding of how events are usually ordered. For example, \"earning money\" usually appears before \"spending money\". 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\". Note that 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": "What did Jack do after the game?",
"explanation": "A plausible answer to this question is \"he rested\" which uses the understanding of ordering of events (When people \"get tired\", they usually \"rest\".) Hence, this is an event \"ordering\" question."
},
{
"input": "Sentence: He was born in China, so he went to the Embassy to apply for a U.S. Visa.",
"output": "What is likely to happen afterward?",
"explanation": "This uses the understanding of ordering of events."
}
],
"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": "task009-2d973f4f99084bd2b531433f967017b2",
"input": "Sentence: Islam later emerged as the majority religion during the centuries of Ottoman rule, though a significant Christian minority remained.",
"output": [
"What happened before Islam was the majority religion?"
]
},
{
"id": "task009-db8fc90f92db4f199e9a26e67c5a42a2",
"input": "Sentence: It's hail crackled across the comm, and Tara spun to retake her seat at the helm.",
"output": [
"What happened next?"
]
},
{
"id": "task009-9d3f00c8d7c447c9ae9ef43b2aba9724",
"input": "Sentence: Still , Preetam vows to marry Nandini if she meets him again .",
"output": [
"What happened before they met?"
]
},
{
"id": "task009-40c6c605ce3e486b862c774b59584d6c",
"input": "Sentence: Max and Joey would often run through fields in a game of chase.",
"output": [
"What happened after Max and Joey ran the fields?"
]
},
{
"id": "task009-a0843191a7d64a2ab16d269e111340c2",
"input": "Sentence: Carl Laemmle, head of Universal Studios, gave Einstein a tour of his studio and introduced him to Chaplin.",
"output": [
"Afterwards did Einstein and Chaplin know each other?"
]
},
{
"id": "task009-999795b3b54a4b3e91f54825ad230510",
"input": "Sentence: His counter-attack with Dayak warriors drove the Chinese out of Bau and across the Sarawak border.",
"output": [
"What did the Chineese do next?"
]
},
{
"id": "task009-2aeb27bf14a34db09de786e1c5e7f1ff",
"input": "Sentence: About 30% of Ratners's profit already is derived from the U.S.",
"output": [
"What happened before Ratners's made a profit?"
]
},
{
"id": "task009-40e96e888a614df9a4251ea2c0ac7d25",
"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.",
"output": [
"What happens after the wafers are put on tracks?"
]
},
{
"id": "task009-025c3491acb54d7cabc09b328b5d94fa",
"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": [
"What did Lennon do after he left?"
]
},
{
"id": "task009-4fa1a7c4545042038684c1ee10f39d9e",
"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": [
"What happened after he tried getting money from those countries?"
]
},
{
"id": "task009-9ffd3b87fc054e8c9f540d3b0a298c01",
"input": "Sentence: There was even a tiny room in the back of one of the closets.",
"output": [
"What happened after the room was discovered?"
]
},
{
"id": "task009-ff267ecf347d4babab123993332c06e1",
"input": "Sentence: The king of Gandhara then stops everyone from grabbing the little food that is provided .",
"output": [
"What happened after the king stopped them?"
]
},
{
"id": "task009-28e756210500407fb152c0af20af3ac1",
"input": "Sentence: Several tenants blame other neighbors as perpetrators of the rift, however.",
"output": [
"What will the tenants do as a result of the rift?"
]
},
{
"id": "task009-d03306b223fe41dcba166fd775e7fc86",
"input": "Sentence: Joe did and after he got a bandage on his arm, he and his father rode in the field on the tractor.",
"output": [
"What did Joe and his father do after riding in the field?"
]
},
{
"id": "task009-1296d86a37384fb9a5f6ed6891625321",
"input": "Sentence: Some government officials were concerned that terrorists would take advantage of such breakdowns.",
"output": [
"What will the officials do to voice their concern?"
]
},
{
"id": "task009-5b9608347e2448fda6e962cd19da6898",
"input": "Sentence: The resolution creating the new intelligence committee structure should grant subpoena authority to the committee or committees.",
"output": [
"What happens after a subpoena is granted?"
]
},
{
"id": "task009-1ae948a8f9bb4c02b6631a83ce3851dd",
"input": "Sentence: Pushkin gradually became committed to social reform and emerged as a spokesman for literary radicals.",
"output": [
"What did Puskin do next?"
]
},
{
"id": "task009-4038b8f1625848eba817d4e48692bc90",
"input": "Sentence: She ordered the tastiest kind of each vegetable and the prettiest kind of each flower.",
"output": [
"What did she do after ordering tastiest kind of each vegetable and the prettiest kind of each flower ?"
]
},
{
"id": "task009-3f4c4edf82cb47d3b7643b4d9d56fe36",
"input": "Sentence: Whatever their origins, their culture evolved under the pressure and influence of foreign forces.",
"output": [
"What happens post evolution?",
"What happens post evolution?"
]
},
{
"id": "task009-ac79001779104ac0be3937e114394a4c",
"input": "Sentence: I clapped her shoulder to show I was not laughing at her.",
"output": [
"What happened after they clapped her shoulder?"
]
},
{
"id": "task009-b044f229d8bc4e63b6ea46f96cb18d4f",
"input": "Sentence: Mintie, her colleagues say, could have made a lot of money in private practice.",
"output": [
"What does Mintie do after she makes money?"
]
},
{
"id": "task009-428002d28ddb452b97fb2aadfd93e15b",
"input": "Sentence: He claimed it was more important for Muslims to kill Americans than to kill other infidels.\".",
"output": [
"What happened after he began his claim?"
]
},
{
"id": "task009-049b12381ed9488fb7046bcd4fd1eb67",
"input": "Sentence: What we call the lab-to-fab time should be as close to zero as possible, Kelly said.",
"output": [
"What happened after Kelly spoke?"
]
},
{
"id": "task009-cb4092e7401444cc9fa1ade965972691",
"input": "Sentence: The issues I've dealt with through the years have been on the side of helping people maintain the basics of life - home, healt h care, jobs and family.\".",
"output": [
"What happens after they help someone maintain their home?"
]
},
{
"id": "task009-649ebdd4f02d4d2ea71ffe02d309171f",
"input": "Sentence: Having damaged the enemy's cohesion, Philip ordered his troops to press forward and quickly routed them.",
"output": [
"What Philip did after routing his troops?"
]
},
{
"id": "task009-93e526dc96214c15a8188ab3cd935f0b",
"input": "Sentence: To both the girl and the dog's surprise, there was a small brown bear resting in the bushes.",
"output": [
"What did the bear do later?"
]
},
{
"id": "task009-07af75f230994ffdaf50c7090a42d062",
"input": "Sentence: They also argued that Hall's litigious style hampered their ability to garner funds from Congress.",
"output": [
"What happened after funds were unable to be garnered from congress?"
]
},
{
"id": "task009-2acc7b09c20045498cf3f2887fe520bf",
"input": "Sentence: Sarawak's coast and jungle interior were controlled by the Iban — Sea Dayak pirates and Land Dayak slash-and-burn farmers.",
"output": [
"What happened after the Iban gained control?"
]
},
{
"id": "task009-2a82951cd03d4e9a9ec1b0b600fa6889",
"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": [
"What did the scientist do after the expedition?"
]
},
{
"id": "task009-94b301accf324ab5b5d44cf84cc909ed",
"input": "Sentence: The Persian Gulf War destroyed much of the country's medical infrastructure, according to a report by the World Health Organization.",
"output": [
"What happened after the infrastructure was destroyed?"
]
},
{
"id": "task009-8792ea219db34226a33f908b34b7fc3c",
"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": [
"What did Atta do after being born?"
]
},
{
"id": "task009-132621b0a70240b3b04222e1807eb5c7",
"input": "Sentence: The fossils that are very distinct at certain times of Earths history are called index fossils.",
"output": [
"What happened after the fossils were found?"
]
},
{
"id": "task009-d73e52a0bba042c891623d5ef9ebe4fe",
"input": "Sentence: The NMCC learned about United 93 from the White House.",
"output": [
"What happened after the NMCC learned of United 93?"
]
},
{
"id": "task009-9f7b76fbcdc04a93b3bdafcd0647efd4",
"input": "Sentence: Meanwhile , whilst living on the estate , Mr. Neville gains quite a reputation with its dwellers , especially with Mrs. Herbert's son-in-law , Mr. Talmann .",
"output": [
"Where did he go after leaving the estate?"
]
},
{
"id": "task009-7352330bbfd24a6aaee085612629c4ac",
"input": "Sentence: On Fridays, Billy answers in a loud voice and Sally in a quiet voice.",
"output": [
"What happens after Billy answers in a loud voice?"
]
},
{
"id": "task009-1a322ff04c5e4aa5b52aceffc793dbf7",
"input": "Sentence: Then others were called on, and gave examples of their accomplishments in easy arithmetic and spelling.",
"output": [
"What did others do that heard the accomplishments?"
]
},
{
"id": "task009-6fd8a0dffe284ff5b8653739eda2271a",
"input": "Sentence: Portuguese explorers then embarked upon Macau (now Macao), the Congo, and various other parts of Africa, including the Sudan.",
"output": [
"What happened after they explored the Sudan?"
]
},
{
"id": "task009-d758bb79b7744548979a0544034ca5f1",
"input": "Sentence: Jaanu , who has been following Nandini , beats up Preetam thinking that he is in love with Nandini .",
"output": [
"What happened after Jaanu beat up Preetam?"
]
},
{
"id": "task009-1289ebb1c8ba428e8d0216daddcb6843",
"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": [
"What happens after the mummy of Prem is revived?"
]
},
{
"id": "task009-a6a17d4431ff40e193cdd001793e4d5d",
"input": "Sentence: Direct control of the political operations of the entirety of Algeria, however, was not.",
"output": [
"What happened to Algeria once there was direct control over the political operations?"
]
},
{
"id": "task009-781217bbca094c108e6f694cdb300687",
"input": "Sentence: Then the green ball told the orange ball that blue ball was stupid.",
"output": [
"What did the orange ball do after the green ball told about the blue ball?"
]
},
{
"id": "task009-ca4355af4eac4ad6a0952ee18728948f",
"input": "Sentence: No defendants were ordered to pay more than a $250 fine for violating the court order.",
"output": [
"What happened after the ruling was issued?"
]
},
{
"id": "task009-be09b0e36c904c0d83e2b9c3e146e51a",
"input": "Sentence: One day, as Mary was picking the blueberries, she turned around to find that Max was not there.",
"output": [
"What did Mary do after turning around?"
]
},
{
"id": "task009-08887b05110e4477a933bb4085ad073d",
"input": "Sentence: When everything was ready, she removed the seedlings from their trays and planted them in her garden.",
"output": [
"What will she do after she plants the seedlings in her garden?"
]
},
{
"id": "task009-62eec60e45234a19b38ab2a8e979742d",
"input": "Sentence: When I was in college, I thought I wanted to be a doctor, she said.",
"output": [
"What happened after she left college?"
]
},
{
"id": "task009-c0c44c6f93d34e7b8e547a5a4a9d5892",
"input": "Sentence: Often times women are in need of immediate legal assistance services for the protection of the mother and the child.",
"output": [
"What does the women and children do once they have immediate legal assistance services ?"
]
},
{
"id": "task009-eef1fc2769454e90bec50a56c57073f5",
"input": "Sentence: So from now on, Marsha takes extra special care to make sure Joey is safe and sound at all times.",
"output": [
"What happened before Martha took extra care?"
]
},
{
"id": "task009-6e56374848c9432e8df2b109647d305f",
"input": "Sentence: The lack of a legal aid presence in Pomona prompted the bar association and court officials to start their own once-monthly family law clinic.",
"output": [
"What happened to Pomona after the law clinic was started?"
]
},
{
"id": "task009-b28ee52f9e514410bbc387b56be8acbd",
"input": "Sentence: He also had very short legs, but really big paws.",
"output": [
"What happened before he had big paws?"
]
},
{
"id": "task009-047eb1724ae94e6fba889cf94968ccf0",
"input": "Sentence: The postwar period began, however, with millions of displaced people homeless and starving.",
"output": [
"What happened after people were homeless and starving?"
]
},
{
"id": "task009-196f560d949442cc90b3347e15430bba",
"input": "Sentence: Mr. Barco has refused U.S. troops or advisers but has accepted U.S. military aid.",
"output": [
"What happened after Mr. Barco accepted the military aid?"
]
},
{
"id": "task009-5d6660836cbc4442ac13e2804b471bb0",
"input": "Sentence: He then starred in a TV show Which was a failure both critically and commercially .",
"output": [
"What did he do after the TV show's failure?"
]
},
{
"id": "task009-9d1d6549745e408ba115e613db4c4245",
"input": "Sentence: He recalled that theTaliban had spotted a Predator in the fall of 2000 and scrambled their MiG fighters.",
"output": [
"What happened after the MiG fighters scrambled?"
]
},
{
"id": "task009-b32be707b213467ca59fa0edb8ee0289",
"input": "Sentence: From Hunter Huss, she moved on to pursue a degree at Pfeiffer University in Misenheimer.",
"output": [
"What happened after she attended Pfeiffer University?"
]
},
{
"id": "task009-84bcbbeda6c547e798072058d75b0e4a",
"input": "Sentence: It is spending more than $500 million a year on semiconductor research and development.",
"output": [
"What will happen when the development stage is over?"
]
},
{
"id": "task009-65beffe952a4467fb85cb7693528c838",
"input": "Sentence: The music , in a garage punk vein , plays an important role in the film .",
"output": [
"What happens after the music plays in the film?"
]
},
{
"id": "task009-0d225dec121b4da2bcfe136d4bf43907",
"input": "Sentence: These rangers were too well trained to appear openly curious about their captain's guest.",
"output": [
"What happened after the rangers were trained?"
]
},
{
"id": "task009-b778c4c713ed461ebd7bbba2e551b311",
"input": "Sentence: All Ana had to do was spell this last word and she would be the winner.",
"output": [
"What did she do afterwards?"
]
},
{
"id": "task009-95b164d2ea5041a4b373228afc81d60b",
"input": "Sentence: They like to play hopscotch or jump rope but that day they wanted to play tag.",
"output": [
"What did they do after playing tag?"
]
},
{
"id": "task009-d2209bf1c31a45c7ae724bada2a07e2e",
"input": "Sentence: But the key figure in the sultanate was Tun Perak, bendahara (prime minister) and military commander.",
"output": [
"What happened after Perak was made prime minister?"
]
},
{
"id": "task009-de19c7b05490490b83e060d0d283ec4d",
"input": "Sentence: Radio Televizioni Shqiptar (RTSH) is the public radio and TV broadcaster of Albania, founded by King Zog in 1938.",
"output": [
"What did Albania have before RTSH?"
]
},
{
"id": "task009-5606c850d8fc4dc49fffb4cf1378cade",
"input": "Sentence: This approach has been echoed by Lev Landau and Evgeny Lifshitz, and others, and has become standard.",
"output": [
"What happened after the approach was made by Landau and Lifshitz?"
]
},
{
"id": "task009-c78746d4d6d844b0ae0fb1d5934d380d",
"input": "Sentence: They woke up and the sun was beginning to set.",
"output": [
"What happened after the sun set?"
]
},
{
"id": "task009-d1124102bb6b45199c9bb27c064cf690",
"input": "Sentence: An indictment filed in the case detailed interactions between group members as they swapped and commented on images.",
"output": [
"What happened after the group members interacted?"
]
},
{
"id": "task009-2c984c7424044ebc9598ff364260e24b",
"input": "Sentence: Wallace, 38, called Gastonia home from the age of 8 until she graduated from Hunter Huss High School in 1983.",
"output": [
"What did Wallace do after graduating from Hunter Huss High School?"
]
},
{
"id": "task009-e137bf18a09949b496666d9eeab5cbc3",
"input": "Sentence: Hamilton attacked his political opponents as demanding freedom for themselves and refusing to allow it to blacks.",
"output": [
"What did Hamilton do before his political career?"
]
},
{
"id": "task009-8e3a97d42d134b88919338e929a4c532",
"input": "Sentence: Upsetting many of his colleagues and contemporaries in France, the book brought about the final split with Sartre.",
"output": [
"What happened before his colleagues got angry?"
]
},
{
"id": "task009-413007a273434cc18d8de064be37b391",
"input": "Sentence: So how do you know where light will go after it strikes a shiny surface?.",
"output": [
"What does light do after it is reflected?"
]
},
{
"id": "task009-1cee4e3f43ce4a08bc83a1e317cc1fb8",
"input": "Sentence: Our investigation has uncovered no credible evidence that any person in the United States gave the hijackers substantial financial assistance.",
"output": [
"What happens after the hijackers are caught?"
]
},
{
"id": "task009-262fbd390ea54760aeed02372ef44c33",
"input": "Sentence: While Alexander's funeral cortege was on its way to Macedon, Ptolemy seized it and took it temporarily to Memphis.",
"output": [
"After it left Memphis, where did the funeral cortege go?"
]
},
{
"id": "task009-f487c82098ef4dbab571b6fa4e485bcd",
"input": "Sentence: Human operators are there to monitor the systems, catch errors and fine-tune the production process for maximum efficiency.",
"output": [
"What do the human operators do when they leave work?"
]
},
{
"id": "task009-5d95d4b2931f42fab80147b2ff4bf710",
"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": [
"What will the ad men do after making the journey?"
]
},
{
"id": "task009-6f4cb2b48f2f4e809504785785e94541",
"input": "Sentence: Jud replies , `` Christ on His throne , no. .",
"output": [
"What will Jud do after church?"
]
},
{
"id": "task009-fe95b2fca3ba4665a83ddf709daa6f82",
"input": "Sentence: Magnets are able to place a force on certain materials.",
"output": [
"What happens after the force is placed?"
]
},
{
"id": "task009-dff7464958064e12a3c6d4ac10b7c28d",
"input": "Sentence: Another example is, I am at the corner of Maple Street and Main Street. Both streets may be a good reference for anyone living in your town.",
"output": [
"What happened after they took up residence at Maple Street and Main Street?"
]
},
{
"id": "task009-30a94c21f3a8459ebda3f4161a2a54f5",
"input": "Sentence: The site of Nueva Sevilla proved to be unhealthy and mosquito-ridden, and in 1534 the Spanish founded Villa de la Vega, today known as Spanish Town.",
"output": [
"What happened to the Spanish before they founded the new settlement?"
]
},
{
"id": "task009-935788f130c64150b36f8e57806a5058",
"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.",
"output": [
"When did the lightscreen provide information about the official meals?"
]
},
{
"id": "task009-e067329b973e49d2aa5a1abe08ce1201",
"input": "Sentence: The hordes of people who attended Hoover Dam's 1935 dedication set the city's now-formidable public relations machine into action.",
"output": [
"What did the visitors do after the opening?"
]
},
{
"id": "task009-04bb1f2412b94cd0a21223a8194b2512",
"input": "Sentence: Pushkin published his first poem at the age of fifteen, and was widely recognized by the literary establishment by the time of his graduation from the Tsarskoye Selo Lyceum.",
"output": [
"What did Pushkin do after his graduation?"
]
},
{
"id": "task009-bfd869ba4add4a1b92bf0e4fef8f716e",
"input": "Sentence: The official death toll has reached 114 -- including 66 women, 28 children and 20 men, the ministry said.",
"output": [
"What did the ministry do after making this report?"
]
},
{
"id": "task009-b03a37d738db453788612fdf09fb4bfc",
"input": "Sentence: Ratners's chairman, Gerald Ratner, said the deal remains of \"substantial benefit to Ratners.\".",
"output": [
"What happened after the chairman spoke?"
]
},
{
"id": "task009-11fd71da5a9247f4b8724cf36eb98722",
"input": "Sentence: Billy loved to watch as Tumble ate his bowl of oatmeal, because Billy took good care of Tumble, everyday.",
"output": [
"What did Tumble do after eating the oatmeal?"
]
},
{
"id": "task009-9a922b2abcf04f70a9d3295dd9080484",
"input": "Sentence: When they meet , John accuses his father of abandoning him , but his father says that `` he left it up to John . ''.",
"output": [
"What does John and his father do after they meet?"
]
},
{
"id": "task009-793598bdea21488aaf813a34fab9bcd4",
"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": [
"What happened after he lived with Henry?"
]
},
{
"id": "task009-61e079a07727480b871863e84310b949",
"input": "Sentence: Adding to the physical, emotional and financial burden they take on, grandparents face legal problems.",
"output": [
"What do grandparents do after facing legal problems?"
]
},
{
"id": "task009-d50b61bd1cde468ca48e483638449a05",
"input": "Sentence: Some are trying to escape eviction or an abusive marriage.",
"output": [
"What happens if they manage to escape?"
]
},
{
"id": "task009-0d0dd33834c54093a52c387a34975837",
"input": "Sentence: California was first to require smog checks for clean air, pass anti-tobacco initiatives and bike helmets laws.",
"output": [
"What happened after the bike helmets law was passed?"
]
},
{
"id": "task009-0956ca9873f945c8b213305708fc81f1",
"input": "Sentence: In a 1945 interview, Camus rejected any ideological associations: \"No, I am not an existentialist.",
"output": [
"What happened after the interview?"
]
},
{
"id": "task009-0d1e06c39d2a4ab4ae45aa354aaac955",
"input": "Sentence: The most powerful families thus carved out for themselves whole regions that were to become the fiefdoms of Japanese feudalism.",
"output": [
"What happened after these regions were carved out?"
]
},
{
"id": "task009-c1e73a0af8af4b338eca74ffdd3dda4b",
"input": "Sentence: He jumped into the pond and started swimming toward the ducks, chasing around his new playmates.",
"output": [
"What happened after he left the pond?"
]
},
{
"id": "task009-c66d47d36f5e486f9590b319a84ed219",
"input": "Sentence: Peter wanted to show off his bark, but he was too tired.",
"output": [
"What did Peter do next?"
]
},
{
"id": "task009-dfcb1b2191904c0dac93c5d265893b82",
"input": "Sentence: Logs indicate that it began at 9:25 and included the CIA; the FBI; the departments of State, Justice, and Defense; the FAA; and the White House shelter.",
"output": [
"What happened after it began?"
]
},
{
"id": "task009-17245cc83f7945aab266c972b726c5ad",
"input": "Sentence: Johnson is a justice on California's Second District Court of Appeal.",
"output": [
"What happens after Johnson arrives at the court?"
]
},
{
"id": "task009-352a9ef20a5143ea8d1655d50c93e313",
"input": "Sentence: In the opening scene , Randy Morton describes a typical Friday afternoon at the Waldorf .",
"output": [
"What did he do after leaving the Waldorf?"
]
},
{
"id": "task009-06a0d68991b246cb9ece9b4df7188917",
"input": "Sentence: The award was voted on and presented by the women's caucus of West Virginia University College of Law.",
"output": [
"What did she do after receiving the award?"
]
},
{
"id": "task009-a6fbf3655f0e4f7d8f35bdeabceae5db",
"input": "Sentence: Safti admits his love for Edwina to Lord Esketh , who is now sympathetic toward this good man's plight .",
"output": [
"What did Safti do after falling in love with Edwina?"
]
},
{
"id": "task009-4b1ec31fd1a748338b0ed80d91aea818",
"input": "Sentence: When Bin Laden lived in Sudan from 1991 to 1996, he owned a number of businesses and other assets.",
"output": [
"What did Bin Laden do after moving to Sudan?"
]
},
{
"id": "task009-b308e70439704036bc2a11dc8db7f71d",
"input": "Sentence: The legal system marketplace just doesn't serve low-income people too well, except in fee-generat-ing type cases, Brewer said.",
"output": [
"What did Brewer do after he spoke?"
]
},
{
"id": "task009-ce83f22badc74f14997fef484af6aa1b",
"input": "Sentence: The side of Malaquez's parcel gave way to reveal a greenmunk caught in a sheen of solid air.",
"output": [
"What happened after the reveal of the greenmunk?"
]
},
{
"id": "task009-1e74e983624c4956bc97e9cc1c0db933",
"input": "Sentence: The use of non-covariant objects like pseudotensors was heavily criticized in 1917 by Erwin Schrodinger and others.",
"output": [
"What happened after Schrodinger opposed the use of non-covariant objects?"
]
},
{
"id": "task009-2f0ec4be21d342d79aecd584b03a0ae0",
"input": "Sentence: Allan crouched over his desk once more, pen in hand and mind blank.",
"output": [
"What happened after Allan picked up the pen?"
]
},
{
"id": "task009-1fa2a6e8d5a94c519b7e13144608620f",
"input": "Sentence: Durer's father died in 1502, and his mother died in 1513.",
"output": [
"What happened after Durer's father died?"
]
},
{
"id": "task009-9fb491d363c74297a2ca3ad44ebbc280",
"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": [
"What would Taj Jackson and his family do before a birthday party?"
]
},
{
"id": "task009-797cae8ddd824b30857a038ba36fde78",
"input": "Sentence: John finds a letter addressed to him , with the word `` Breathe '' written on it .",
"output": [
"What did John do after opening the letter?"
]
},
{
"id": "task009-78db016888be4de0bf1548084531304d",
"input": "Sentence: Dr. Safti is so busy saving lives that he can not personally care for Edwina , who has fallen ill .",
"output": [
"What happened after Edwina fell ill?"
]
},
{
"id": "task009-c1897d2cda014bbba6505f4d863a767b",
"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": [
"What happened after she arrived?"
]
},
{
"id": "task009-2fea949118744a1083492dbe64ff299a",
"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": [
"What happened to the stock price of Meridian National Corp. after the trade?"
]
},
{
"id": "task009-55f90aaff6e6468286d8c5423b91f6e4",
"input": "Sentence: The new novel takes place in a morally gray and often violent world.",
"output": [
"What will happen once peace arrives?",
"What will happen once peace arrives?",
"What will happen once peace arrives?",
"What will happen once peace arrives?",
"What will happen once peace arrives?"
]
},
{
"id": "task009-d630139ac20d403cbb128fe94fae5f21",
"input": "Sentence: By the time the spelling bee arrived Ana and her best friend were sure she would win.",
"output": [
"What happened after the spelling bee?"
]
},
{
"id": "task009-9c1cab22e3094ac78e08401980ff68af",
"input": "Sentence: Meanwhile Akai's wife , Nozomi , attempts to make friends with Juzo and entrusting the care of her toddler son to Juzo .",
"output": [
"What happens after Juzo accepts Nozomi's son?"
]
},
{
"id": "task009-f8f1b15280b24d67b1e0eeb1d00ae1f5",
"input": "Sentence: The dermis also contains hair follicles and two types of glands.",
"output": [
"Can the dermis function after the hair follicles are dead or damaged?"
]
},
{
"id": "task009-458ba57ddeb04ea9a5eb39b0760f65f2",
"input": "Sentence: A levee is a raised strip of sediments deposited close to the waters edge.",
"output": [
"When was there a sediment deposit?",
"When was there a sediment deposit?",
"When was there a sediment deposit?",
"When was there a sediment deposit?"
]
},
{
"id": "task009-bd2ac605ab684d7299ed7ada7f6b2f10",
"input": "Sentence: Only certain animals were able to get at the plants hidden nectar.",
"output": [
"What did the animals do after they got at the plant's hidden nectar?"
]
},
{
"id": "task009-040a8700539144ca8fd8a157ae5ca7a7",
"input": "Sentence: If you have ever heard, \"Eat a good breakfast\", thats why.",
"output": [
"What happens after you eat a good breakfast?"
]
},
{
"id": "task009-358abf26d25b4b9b87e6b750e3d09db0",
"input": "Sentence: These fossils showed that this entire area was once at the bottom of a sea.",
"output": [
"What happened before the fossils were found?"
]
},
{
"id": "task009-a266272967aa4b11b222a79829d63701",
"input": "Sentence: He named the house, which was completed in 1802, the \"Grange\" after his grandfather Alexander's estate in Ayrshire, Scotland.",
"output": [
"What happened before the house was built?"
]
},
{
"id": "task009-e94821dd66694b36a133dc67c9e46c30",
"input": "Sentence: He loved spending time with him when he was younger, but he had moved last year.",
"output": [
"What did he do after he moved?"
]
},
{
"id": "task009-60845f09e67b4520a1380805b4a7e791",
"input": "Sentence: Convicted murderer Seth Baxter awakens chained to a table beneath a pendulum blade .",
"output": [
"What did he do after waking up?"
]
},
{
"id": "task009-ccceb3b0e68a4b3bbc6afda23aad37aa",
"input": "Sentence: There are some exceptions, including pregnancies that resulted from sexual assault, incest or other violations of law.",
"output": [
"What happened after the violations of law?"
]
},
{
"id": "task009-b8290eee5eed41f891c42678a868faef",
"input": "Sentence: For example, you can undo the tarnish on copper pennies by placing them in vinegar.",
"output": [
"What do you have to do after placing the pennies in vinegar?"
]
},
{
"id": "task009-e4539d8f723d4e3b8fc4efa78ab7badb",
"input": "Sentence: Alexander then faced the Assakenoi, who fought in the strongholds of Massaga, Ora and Aornos.",
"output": [
"What did Alexander do after facing the Assakenoi?"
]
},
{
"id": "task009-22c591189a1845839af669ce326f5f74",
"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": [
"What happened before Ace began going to the concert?"
]
},
{
"id": "task009-46564e07e2c4467483f7f41ef084bfb0",
"input": "Sentence: To his quiet dismay , his supervising boss turns out to be Toru Akai , who with his gang had made Juzo's middle school life a living hell .",
"output": [
"What did Juzo do after finding out his boss is Toru Akai?"
]
},
{
"id": "task009-7314e362e89e48ab9db14f3ceb624933",
"input": "Sentence: Finley only realizes with hindsight that his misdeeds far surpass those of Violet .",
"output": [
"What did he do after he realized this?"
]
},
{
"id": "task009-e3788e8b61d3446f8d491e30a648eee5",
"input": "Sentence: Charlie decides to rob the train with the help of imprisoned Don and con-artist Victor Braganza .",
"output": [
"What happened after they robbed the train?"
]
},
{
"id": "task009-d5e9c7d7e4bb461fb1548b910db26006",
"input": "Sentence: It hadn't seemed relevant, somehow, given that I was still reeling over the explosion, the deaths of my crewmates, and the rescue.",
"output": [
"What happened after the death of the crewmates?"
]
},
{
"id": "task009-9a4b81d3dc4943808a3817b30448ce2a",
"input": "Sentence: The new factory, which will begin normal production early next year, will employ about 1,000 people.",
"output": [
"What happened after factory began production?"
]
},
{
"id": "task009-c71a84cda8ff4d0b96f10fa4f37b449c",
"input": "Sentence: Sarah is dating the curator Michael Pierce , a single father who is away from the museum that night .",
"output": [
"What did Sarah do after finding that Michael was gone?"
]
},
{
"id": "task009-18d18527fd9845ee89c6683a1d079246",
"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": [
"What happened after the 20th century conflicts?"
]
},
{
"id": "task009-0306b39cea8d4cf4ad53738fdf9d488d",
"input": "Sentence: At current rates of use, coal will last about 300 years.",
"output": [
"What did people do after knowing that coal will not last forever?"
]
},
{
"id": "task009-16bec89eff564c5f9868b7c5e0cb315c",
"input": "Sentence: By 1930 raw-material production had tripled the figure of 1900, manufactured goods had increased twelve-fold, and heavy industry was galloping towards maturity.",
"output": [
"What happened after raw-materials production increased?"
]
},
{
"id": "task009-f53fe19a9a154e7c9b833ce9666f013c",
"input": "Sentence: The Minangkabau custom of freely electing their leaders provided the model for rulership elections in modern federal Malaysia.",
"output": [
"What happens after a leader is elected.?",
"What happens after a leader is elected.?",
"What happens after a leader is elected.?"
]
},
{
"id": "task009-a1da7171ed7a47df9e13f8cb437d0edc",
"input": "Sentence: Eventually, the shelter received word that the alleged hijacker 5 miles away had been a medevac helicopter.",
"output": [
"What did the shelter do after receiving the information?"