-
Notifications
You must be signed in to change notification settings - Fork 189
/
task021_mctaco_grammatical_logical.json
1813 lines (1813 loc) · 80.7 KB
/
task021_mctaco_grammatical_logical.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": [
"Text Quality Evaluation"
],
"Reasoning": [
"Grammatical Reasoning"
],
"Definition": [
"A question that is free of any grammatical or logcal errors, should be labeled 'yes', otherwise it should be indicated as 'no'. A question is grammatically correct if all its entities i.e. nouns, verbs, adjectives, prepositions, pronouns, adverbs are at appropriate position. A question is logically correct if the semantic makes sense."
],
"Input_language": [
"English"
],
"Output_language": [
"English"
],
"Instruction_language": [
"English"
],
"Domains": [
"News",
"Wikipedia",
"Law",
"Justice",
"History",
"History -> 9/11 Reports",
"Anthropology",
"School Science Textbooks",
"Fiction"
],
"Positive Examples": [
{
"input": "Sentence: Jack played basketball after school, after which he was very tired. \nQuestion: How long did Jack play basketball?",
"output": "Yes.",
"explanation": "All entities are in appropriate position and the question makes sense, so its grammatically and logically correct."
},
{
"input": "Sentence: He was born in China, so he went to the Embassy to apply for a U.S. Visa. \nQuestion: What is likely to happen afterward?",
"output": "Yes.",
"explanation": "All entities are in appropriate position and the question makes sense, therefore its grammatically and logically correct."
}
],
"Negative Examples": [
{
"input": "Sentence: Jack played basketball after school, after which he was very tired. \nQuestion: How long Jack was play basketball?",
"output": "No.",
"explanation": "The word \"was\" and \"play\" makes the question grammatically incorrect."
},
{
"input": "Sentence: Jack played basketball after school, after which he was very tired. \nQuestion: How long basketball remained as basketball?",
"output": "No.",
"explanation": "The question (\"basketball remained as basketball\") does not make sense. So, it's logically incorrect."
}
],
"Instances": [
{
"id": "task021-26a3cef52a924fe5847b7b2806fc1cda",
"input": "Sentence: Radio Televizioni Shqiptar (RTSH) is the public radio and TV broadcaster of Albania, founded by King Zog in 1938. \nQuestion: How long has RTSH been established?",
"output": [
"Yes."
]
},
{
"id": "task021-6d931c7533d94da2a5d8e189b743e605",
"input": "Sentence: California was first to require smog checks for clean air, pass anti-tobacco initiatives and bike helmets laws. \nQuestion: Are the laws still followed in California?",
"output": [
"Yes."
]
},
{
"id": "task021-38b4634801fc4e8988c27dc23270e393",
"input": "Sentence: Among the travelers were Mohamed Atta and Abdul Aziz al Omari, who arrived at the airport in Portland, Maine. \nQuestion: What did the travelers do after arriving at the airport?",
"output": [
"Yes."
]
},
{
"id": "task021-b3a97ef74eff41eeaad966e608d0f880",
"input": "Sentence: Britain finally ceded the island to Spain in the year 1802, under the terms of the Treaty of Amiens. \nQuestion: Is the island still owned by Spain?",
"output": [
"Yes."
]
},
{
"id": "task021-e92122f83d6b448185cef3315470eaf2",
"input": "Sentence: After finally sleeping with Lucrezia , Callimaco confesses everything . \nQuestion: Was Callimaco remorseful?",
"output": [
"No."
]
},
{
"id": "task021-d4b453881e3442da9135d95890d76ed2",
"input": "Sentence: In the aftermath of Massaga and Ora, numerous Assakenians fled to the fortress of Aornos. \nQuestion: What did the Assakenians do next?",
"output": [
"Yes."
]
},
{
"id": "task021-49ad813db08e4753aaf1c9c015bf13b5",
"input": "Sentence: The Vice President's task force was just getting under way when the 9/11 attack occurred. \nQuestion: When did the 9/11 attack happen?",
"output": [
"Yes."
]
},
{
"id": "task021-12a2974821744b2b9d708c22c2774d7b",
"input": "Sentence: The Portuguese Crown, delighted with its first important discovery, immediately embarked on a program of colonization. \nQuestion: What year did the Portuguese first attempt colonization of the new territory?",
"output": [
"Yes."
]
},
{
"id": "task021-eb2319758da745b899f9877de83fb986",
"input": "Sentence: The NMCC learned about United 93 from the White House. \nQuestion: Is United 93 still operational?",
"output": [
"Yes."
]
},
{
"id": "task021-cf5c0d5412264769b6d821d5cbd3f933",
"input": "Sentence: That amount is convertible into shares of Meridian common stock at $2 a share during its one-year term. \nQuestion: How long has the stock been 2 dollars per share?",
"output": [
"No."
]
},
{
"id": "task021-ab77505331224ef79d206c26f88a7e61",
"input": "Sentence: There are now more protons than electrons inside the atom. \nQuestion: How long was the atom monitored?",
"output": [
"Yes."
]
},
{
"id": "task021-7defbb3082db45c4885a175ab645f2ac",
"input": "Sentence: In Colombia, the drug-financed guerrillas trying to seize the country and destroy democracy include M-19, which Castro has clearly backed. \nQuestion: How long had the guerillas been supported by Castro?",
"output": [
"Yes."
]
},
{
"id": "task021-0fc3dbf4528d4569867c179a0309d179",
"input": "Sentence: He tried and tried to please every person who came to the store, but they all picked smaller puppies. \nQuestion: How long did he try to please the persons who came to the store?",
"output": [
"Yes."
]
},
{
"id": "task021-f8d2a70a3dc949fabd6852615f1e96d8",
"input": "Sentence: With large population movements in the 1990s to urban areas, the provision of education has undergone transformation as well. \nQuestion: How long of a time do we refer to when we say \"\"the 1990s\"\"?",
"output": [
"No."
]
},
{
"id": "task021-dfc47802514f421fa5d778d80ddef91f",
"input": "Sentence: Martinez works two jobs as a physician's assistant and supports his elderly parents and 8-year-old son. \nQuestion: How often does Martinez work?",
"output": [
"Yes."
]
},
{
"id": "task021-cdd64f7a2d19465db42caca1bd063361",
"input": "Sentence: So really, that's what many of the people are doing now,\"\" he said. \nQuestion: What did they done when they were done?",
"output": [
"No."
]
},
{
"id": "task021-07a3fb22b3c94e20a8e14c73f0f5f1bb",
"input": "Sentence: If I cannot carry my groceries or my laundry, how can I live?. \nQuestion: When did he do the laundry?",
"output": [
"Yes."
]
},
{
"id": "task021-9aa745597ea440979d614ce0087d3d5e",
"input": "Sentence: He tried to halt the Dayaks' piracy and head-hunting while defending their more \"\"morally acceptable\"\" customs. \nQuestion: How often does he defend their acceptable customs?",
"output": [
"Yes."
]
},
{
"id": "task021-44385e14ef1c4c11b305de7861512cfa",
"input": "Sentence: One result was two NSC-led interagency trips to Persian Gulf states in 1999 and 2000. \nQuestion: Where did the NSC go after they were done with their trip?",
"output": [
"Yes."
]
},
{
"id": "task021-539f1fda5a62456f96888d64cce90fb1",
"input": "Sentence: The dermis also contains hair follicles and two types of glands. \nQuestion: Can the dermis function after the hair follicles are dead or damaged?",
"output": [
"Yes."
]
},
{
"id": "task021-da076b24da904910b1cb792b8a309d36",
"input": "Sentence: The scout ship re-emerged from the hole - a brilliant speck emerging from a sphere of velvety blackness. \nQuestion: How many times did the scout ship re-emerge from the hole?",
"output": [
"Yes."
]
},
{
"id": "task021-a9bbb7ba330b4132acb6c0c80a25e566",
"input": "Sentence: The king of Gandhara then stops everyone from grabbing the little food that is provided . \nQuestion: When did the king stop them from eating?",
"output": [
"Yes."
]
},
{
"id": "task021-33ad1f7efad946359de99db6a1d387f8",
"input": "Sentence: Fossils tell an obscure story of man's slow and sporadic development. \nQuestion: How often is a new fossil found that is considered really significant to our thinking?",
"output": [
"Yes."
]
},
{
"id": "task021-3b606c5964b24606b7568af4fd3b91f1",
"input": "Sentence: She told me that she was heading for a drink and slipped out of the crowd. \nQuestion: When did she have a drink?",
"output": [
"Yes."
]
},
{
"id": "task021-98eaf9b112b34c7fb76418e2bf769584",
"input": "Sentence: In the mean time fate had avenged Law on one of his lesser enemies. \nQuestion: What happened after fate intervened?",
"output": [
"Yes."
]
},
{
"id": "task021-2833c7887e0b499eafbb0bb63f8d6725",
"input": "Sentence: For example, what if you place a cake in the oven and you leave it in too long?. \nQuestion: What time would you put the cake in the oven?",
"output": [
"Yes."
]
},
{
"id": "task021-9d126309f91749dca329e325c91ce2d9",
"input": "Sentence: Joe's parents are farmers and they have a huge farm with cows, chickens, and ducks. \nQuestion: What were Joe's parents before they were farmers?",
"output": [
"Yes."
]
},
{
"id": "task021-446ba5ed0293454b9d729cdc593f957f",
"input": "Sentence: Johnson is a justice on California's Second District Court of Appeal. \nQuestion: When did Johnson arrive to court?",
"output": [
"Yes."
]
},
{
"id": "task021-1ea25c6e1f3245b7a824befc30eabea5",
"input": "Sentence: The group are chased by the assassins and Ronnie and Riya are killed . \nQuestion: What happened after Ronnie and Riya were killed?",
"output": [
"Yes."
]
},
{
"id": "task021-8f6df3353dc143b282cb7f2357158cf9",
"input": "Sentence: Upsetting many of his colleagues and contemporaries in France, the book brought about the final split with Sartre. \nQuestion: How long will his colleagues be angry?",
"output": [
"Yes."
]
},
{
"id": "task021-00b7ed69eb6a4653ad78d35568a6831b",
"input": "Sentence: They are very flat areas and they have very rich soils. \nQuestion: How long did it take for the soil to become rich?",
"output": [
"Yes."
]
},
{
"id": "task021-4c33d060d54749419a77eacf16192c66",
"input": "Sentence: The resolution creating the new intelligence committee structure should grant subpoena authority to the committee or committees. \nQuestion: What happens after a subpoena is granted?",
"output": [
"Yes."
]
},
{
"id": "task021-39cd40c889324fb5b5f1a480505f4939",
"input": "Sentence: , followed by other ports at Hyères, Antibes, and Nice. \nQuestion: How often do you go to the ports?",
"output": [
"No."
]
},
{
"id": "task021-fd8eb9a1296249a89f201cf70b0b8488",
"input": "Sentence: The state has been first to pass major public health initiatives that have spread throughout the country. \nQuestion: Is the health initiative been passed as of today?",
"output": [
"Yes."
]
},
{
"id": "task021-c717cf966fad42e0893f94e1fc539ed7",
"input": "Sentence: The Portuguese Crown, delighted with its first important discovery, immediately embarked on a program of colonization. \nQuestion: Do the original colonies still exist?",
"output": [
"Yes."
]
},
{
"id": "task021-e689c6216c1a44e8a200c0ee15967b59",
"input": "Sentence: Christianity was introduced into Gaul in the first century a.d. \nQuestion: Was the religion created before it was introduced?",
"output": [
"No."
]
},
{
"id": "task021-9f56f4e6d2194881bad1bdf1ecf38ee3",
"input": "Sentence: They are very flat areas and they have very rich soils. \nQuestion: How often is the soil tested?",
"output": [
"Yes."
]
},
{
"id": "task021-81fdb1fda61141b5a9344fb14b648ca5",
"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": [
"Yes."
]
},
{
"id": "task021-1ef24b1ffaec4564aa9d0a2b295f70b3",
"input": "Sentence: Although disruption efforts around the world had achieved some successes, the core of Bin Laden's organization remained intact. \nQuestion: What will happen next?",
"output": [
"Yes."
]
},
{
"id": "task021-37d367078a2c4d29b397e05613df49f9",
"input": "Sentence: She began to tell the story of Majestic, the wild horse who could not be calmed. \nQuestion: Is the horse calm today?",
"output": [
"Yes."
]
},
{
"id": "task021-ccc186e3671d482b99a99becd941c0be",
"input": "Sentence: At NEADS, the report of the hijacking was relayed immediately to Battle Commander Colonel Robert Marr. \nQuestion: When was the threat reported?",
"output": [
"Yes."
]
},
{
"id": "task021-01f2cda1e5d9494fbb0eca7972fe4876",
"input": "Sentence: Still , Preetam vows to marry Nandini if she meets him again . \nQuestion: How long had they known each other?",
"output": [
"Yes."
]
},
{
"id": "task021-634dffa9a3b34374beacd3aa714135e7",
"input": "Sentence: If you have ever heard, \"\"Eat a good breakfast\"\", thats why. \nQuestion: How long does it take to eat breakfast?",
"output": [
"Yes."
]
},
{
"id": "task021-3e00c9f9cecd47e1b87d66e8bae98d56",
"input": "Sentence: Dam Square was landlocked for the first time in its history. \nQuestion: When is it expected to not be landlocked again?",
"output": [
"Yes."
]
},
{
"id": "task021-cbad72ccbd3f414c96197cca5b38bb41",
"input": "Sentence: This sediment has been eroded off areas of land from upstream. \nQuestion: When does the erosion occur?",
"output": [
"No."
]
},
{
"id": "task021-0b25231594dd4e8abeb22a4403c15f27",
"input": "Sentence: Alexander II's death caused a great setback for the reform movement. \nQuestion: When did Alexander II die?",
"output": [
"Yes."
]
},
{
"id": "task021-67481fbfdb63448e9a6102aa1d17ae62",
"input": "Sentence: The Portuguese Crown, delighted with its first important discovery, immediately embarked on a program of colonization. \nQuestion: How long did it take the Portuguese to colonize the new territory?",
"output": [
"Yes."
]
},
{
"id": "task021-ee6c93a6433b499ca283f92816fb6c5d",
"input": "Sentence: Jerry goes out to the pier and casts his favorite bait : cheese . \nQuestion: Did Jerry go out to the pier next day ?",
"output": [
"No."
]
},
{
"id": "task021-5c208737287744698889fdd56aa6774d",
"input": "Sentence: So really, that's what many of the people are doing now,\"\" he said. \nQuestion: When did they begin doing it?",
"output": [
"Yes."
]
},
{
"id": "task021-04746872ba8e427a83ffc5009da19edf",
"input": "Sentence: When he's not working for a Washington defense attorney, Lucas recovers stolen property for a 40% cut. \nQuestion: How long are his shifts as a defense attorney?",
"output": [
"Yes."
]
},
{
"id": "task021-9120fb88f8db47ef80d4d83d69434243",
"input": "Sentence: Diggler became a prominent model and began appearing in pornographic films , after Which his career took off . \nQuestion: Was Diggler still a model in her 40s?",
"output": [
"No."
]
},
{
"id": "task021-9b1e661db82148ea95d715d2b24f7a81",
"input": "Sentence: With this, it became impossible for me to stay upstairs, he said, pointing to the scars on his forearm. \nQuestion: When did he get his scars?",
"output": [
"No."
]
},
{
"id": "task021-56e9360c7526477891d5c3137937f080",
"input": "Sentence: I clapped her shoulder to show I was not laughing at her. \nQuestion: How often will they clap someone's shoulder?",
"output": [
"Yes."
]
},
{
"id": "task021-9d909b1b5ebb4bbfb1d009aace2f1281",
"input": "Sentence: Often times women are in need of immediate legal assistance services for the protection of the mother and the child. \nQuestion: How long does it take to get immediate legal assistance services?",
"output": [
"Yes."
]
},
{
"id": "task021-0d6cc463692246d5b3d3a6800053f81f",
"input": "Sentence: To this end it succeeded with relatively few blood-soaked episodes in its colonial history. \nQuestion: Are there still blood soaked episodes in its colonial history?",
"output": [
"Yes."
]
},
{
"id": "task021-2d35ad3fdc004569b2efe45563bc7807",
"input": "Sentence: They first traveled by plane around Europe, where they saw many different people and sights. \nQuestion: What time did they normally board the flights?",
"output": [
"Yes."
]
},
{
"id": "task021-71d0a6e3e13340e29e6f9eeda690701e",
"input": "Sentence: In the end , they drive off , listening to the radio . \nQuestion: How long was the drive?",
"output": [
"Yes."
]
},
{
"id": "task021-4cc02b12852b410db6bd5e623bdae880",
"input": "Sentence: Third, no middle ground exists in what Qutb conceived as a struggle between God and Satan. \nQuestion: What happens after the struggle between God and Satan?",
"output": [
"Yes."
]
},
{
"id": "task021-c9b462154d0146e6a542d18da394c093",
"input": "Sentence: After the August missile strikes, diplomatic options to press the Taliban seemed no more promising than military options. \nQuestion: What happened after the strikes?",
"output": [
"Yes."
]
},
{
"id": "task021-124444d5fc1046848b9f5e352cefd69c",
"input": "Sentence: Previously, it offered $13.65 a share in cash, or $29 million. \nQuestion: When did they stop offering $13.65 a share?",
"output": [
"Yes."
]
},
{
"id": "task021-e73172a0997c4458ab9fbe332a68ffd5",
"input": "Sentence: In this case he looks to his girlfriend , Violet . \nQuestion: Is he still looking at Violet now?",
"output": [
"Yes."
]
},
{
"id": "task021-e91d86dbdd9d4fb593f9d943be30ff63",
"input": "Sentence: Ratners's chairman, Gerald Ratner, said the deal remains of \"\"substantial benefit to Ratners.\"\". \nQuestion: How often does the chairman speak publicly?",
"output": [
"Yes."
]
},
{
"id": "task021-fe4f269951c7421784021a68f7f91524",
"input": "Sentence: During a blackout , the house is attacked by aliens , who had previously killed Joe and abducted Iris . \nQuestion: How long does a blackout last?",
"output": [
"Yes."
]
},
{
"id": "task021-74f176c1a84144489882821148bba5c8",
"input": "Sentence: It's hail crackled across the comm, and Tara spun to retake her seat at the helm. \nQuestion: How long was the storm?",
"output": [
"No."
]
},
{
"id": "task021-3fda461ced144b97b79347b02f1e55e2",
"input": "Sentence: By the beginning of the fourth century the Algarve had a bishop in place, based in Faro. \nQuestion: Did the bishop's position remain open after his tenure?",
"output": [
"Yes."
]
},
{
"id": "task021-4e043d66b502459e985539577b680482",
"input": "Sentence: Magnets are able to place a force on certain materials. \nQuestion: What time was the force placed?",
"output": [
"No."
]
},
{
"id": "task021-5147f75edfe742b8a47e00fa1cc4ede9",
"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": [
"Yes."
]
},
{
"id": "task021-16f4fc2b57b94e1c86765d6474d104b3",
"input": "Sentence: The Portuguese Crown, delighted with its first important discovery, immediately embarked on a program of colonization. \nQuestion: What happened after the Portuguese attempted to colonize the new territory?",
"output": [
"Yes."
]
},
{
"id": "task021-d82abe56b0214d999dfe5b74d0c98b2a",
"input": "Sentence: In 1996 the WHO found that much of the population existed in a state of ``semi-starvation.''. \nQuestion: How often does the WHO find out facts about the population?",
"output": [
"Yes."
]
},
{
"id": "task021-1c67ab708fb04fde8c6a916269d61fcb",
"input": "Sentence: This means it is not moving yet, but it has the potential to move. \nQuestion: How long does the potential energy last?",
"output": [
"Yes."
]
},
{
"id": "task021-0b85872c34944f2fa45534bd7eadebe8",
"input": "Sentence: California was first to require smog checks for clean air, pass anti-tobacco initiatives and bike helmets laws. \nQuestion: How often are such initiatives passed?",
"output": [
"Yes."
]
},
{
"id": "task021-ea0d438756474242a34af7a4578cd9c7",
"input": "Sentence: He them imprisons the royal family in his prison . \nQuestion: Were the royal family members ever sent back to prison?",
"output": [
"No."
]
},
{
"id": "task021-d8d11e85ce134bb686f6edaa7c6ab8de",
"input": "Sentence: Christianity was introduced into Gaul in the first century a.d. \nQuestion: How long did it take to introduce Christianity to a typical person?",
"output": [
"Yes."
]
},
{
"id": "task021-17425c1a00cf4aff9b549a49c5273cfd",
"input": "Sentence: In the mean time fate had avenged Law on one of his lesser enemies. \nQuestion: How often did fate intervene?",
"output": [
"Yes."
]
},
{
"id": "task021-d469e9f8cd7f473e994a36b8f44a09ff",
"input": "Sentence: Grants of tax-free land over the years had been made to Buddhist temples and members of the court aristocracy. \nQuestion: For how long were the grants made available?",
"output": [
"Yes."
]
},
{
"id": "task021-3843ee6ab23447d2a3ebccb49a36122e",
"input": "Sentence: The two become close friends but do not reveal the secrets . \nQuestion: How long did it take them to become friends?",
"output": [
"Yes."
]
},
{
"id": "task021-d7e366c7bf7b4a628f7c74c61871d14a",
"input": "Sentence: A levee is a raised strip of sediments deposited close to the waters edge. \nQuestion: When was there a sediment deposit?",
"output": [
"Yes."
]
},
{
"id": "task021-dadf9152b8a842d9b8cd65e6c667d436",
"input": "Sentence: In particular, the author differentiates between what he terms 'dominance' and a particular version of 'colonization'. \nQuestion: How often had the author differentiated between dominance and colonization before?",
"output": [
"Yes."
]
},
{
"id": "task021-4996d07af9fd41539d680bae5f5de719",
"input": "Sentence: The most powerful families thus carved out for themselves whole regions that were to become the fiefdoms of Japanese feudalism. \nQuestion: What happened after these regions were carved out?",
"output": [
"Yes."
]
},
{
"id": "task021-f12d406a5d94498ca26f999f3362db42",
"input": "Sentence: However , by the time Schahzenan's army reaches the city , Scheherazade's plan has worked . \nQuestion: What happened after Scheherazade's plan had worked?",
"output": [
"Yes."
]
},
{
"id": "task021-b77b9c954e98461f8f01861880d44168",
"input": "Sentence: Thats because the sound couldnt travel without air particles to transfer the sound energy. \nQuestion: Can sound still travel tomorrow?",
"output": [
"Yes."
]
},
{
"id": "task021-dbfb16caff5e499ba2af9fc8e17e8060",
"input": "Sentence: Durer's father died in 1502, and his mother died in 1513. \nQuestion: What happened after Durer's father died?",
"output": [
"Yes."
]
},
{
"id": "task021-78a1aad3e3c04b8cb4f838f1ed0d3026",
"input": "Sentence: I clapped her shoulder to show I was not laughing at her. \nQuestion: When did they clap her shoulder?",
"output": [
"Yes."
]
},
{
"id": "task021-e99ff2453864472f8ac036107964a0b7",
"input": "Sentence: Hitherward they came, Meeting our faces from the middle point, With us beyond but with a larger stride. \nQuestion: How often did they come?",
"output": [
"No."
]
},
{
"id": "task021-e1e21fc033854411b5c198d583d0ea74",
"input": "Sentence: During a blackout , the house is attacked by aliens , who had previously killed Joe and abducted Iris . \nQuestion: Were the aliens still present in the attacked house the next day?",
"output": [
"No."
]
},
{
"id": "task021-a04f784ce5194e7b9ba2f7cfbb82fff2",
"input": "Sentence: She began to tell the story of Majestic, the wild horse who could not be calmed. \nQuestion: What time did she tell the story?",
"output": [
"Yes."
]
},
{
"id": "task021-1d5fc2c5851340d1b886486e80c41d5e",
"input": "Sentence: That amount is convertible into shares of Meridian common stock at $2 a share during its one-year term. \nQuestion: How often does the amount get converted to shares?",
"output": [
"Yes."
]
},
{
"id": "task021-70a1aa9258184dc08d3faa28df9fef36",
"input": "Sentence: On Fridays, Billy answers in a loud voice and Sally in a quiet voice. \nQuestion: What day does Susie answer in a loud voice?",
"output": [
"No."
]
},
{
"id": "task021-1441d7102d10405896ed7984f3b7904e",
"input": "Sentence: While these laws were met with skepticism and ridicule, they've often become standard practice in other states. \nQuestion: When were the laws first introduced?",
"output": [
"Yes."
]
},
{
"id": "task021-5d111266319e435d8ceeae2265a68127",
"input": "Sentence: Whatever their origins, their culture evolved under the pressure and influence of foreign forces. \nQuestion: How long have they been evolving?",
"output": [
"No."
]
},
{
"id": "task021-eb486c09d2b14bfa97a59fc63d166a65",
"input": "Sentence: After finally sleeping with Lucrezia , Callimaco confesses everything . \nQuestion: How did Callimaco feel after sleeping with Lucrezia?",
"output": [
"No."
]
},
{
"id": "task021-7de14b162d53416b98243fbe6f2b21b3",
"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": [
"Yes."
]
},
{
"id": "task021-666fd08bc44c49a9a5eff6da08a83480",
"input": "Sentence: Often times women are in need of immediate legal assistance services for the protection of the mother and the child. \nQuestion: What does the women and children do once they have immediate legal assistance services ?",
"output": [
"No."
]
},
{
"id": "task021-7072bbc4125846e5bdf8061b40a452b8",
"input": "Sentence: They also argued that Hall's litigious style hampered their ability to garner funds from Congress. \nQuestion: What happened after funds were unable to be garnered from congress?",
"output": [
"Yes."
]
},
{
"id": "task021-2ffcecad271f4ec485bb7021a462912d",
"input": "Sentence: The Vice President's task force was just getting under way when the 9/11 attack occurred. \nQuestion: Were there consequences of the attack in the forthcoming days?",
"output": [
"No."
]
},
{
"id": "task021-c4e7fa8074dc48eb8159a253bbdcde5f",
"input": "Sentence: The program avoids legal jargon, offers a courthouse video tour and sticks to a fifth-grade vocabulary. \nQuestion: What day is the courthouse video tour held?",
"output": [
"Yes."
]
},
{
"id": "task021-d36305cc58794a0e97cc10ecb647432b",
"input": "Sentence: Britain finally ceded the island to Spain in the year 1802, under the terms of the Treaty of Amiens. \nQuestion: What happened after the treaty was signed?",
"output": [
"Yes."
]
},
{
"id": "task021-773a91b634ee4e0dabf66b6165385ef6",
"input": "Sentence: On London's Stock Exchange, Reuters shares rose five pence to 913 pence ($14.43). \nQuestion: How often does it rise?",
"output": [
"No."
]
},
{
"id": "task021-4a6b81b59f464a57a19d527ace06d630",
"input": "Sentence: Like all energy, gravitational potential energy has the ability to do work. \nQuestion: What time did the gravitational potential energy work?",
"output": [
"No."
]
},
{
"id": "task021-09558556dbb6489fafec987f50170643",
"input": "Sentence: She began to tell the story of Majestic, the wild horse who could not be calmed. \nQuestion: How often did she tell the story?",
"output": [
"Yes."
]
},
{
"id": "task021-50ed6015fd754a768ee2340f4d3f095d",
"input": "Sentence: Every Saturday we would go to the park and play Toodles' favorite game. \nQuestion: When did it become his favorite game?",
"output": [
"Yes."
]
},
{
"id": "task021-84c51014faaf48e7abafe6ef201de6b5",
"input": "Sentence: He ran all around the pond, barking at the ducks. \nQuestion: Is he still barking at the ducks now?",
"output": [
"Yes."
]
},
{
"id": "task021-6986cdb0dbed4c47b5f32e26831ddb92",
"input": "Sentence: Tocqueville was a classical liberal who advocated parliamentary government, but was skeptical of the extremes of democracy. \nQuestion: How long was an advocate?",
"output": [
"No."
]
},
{
"id": "task021-f539ddaeb20c4aee83b827448bd3c977",
"input": "Sentence: The fiction of Japanese imperial power had become infinitely extendable. \nQuestion: Did the illusion of imperial power extend into the modern era?",
"output": [
"Yes."
]
},
{
"id": "task021-3e56321e88534ad285980f4dd39f0909",
"input": "Sentence: Zarco and Teixeira were appointed co-governors of Madeira, while Perestrelo was awarded Porto Santo. \nQuestion: What happened after Perestrelo was awarded Porto Santo?",
"output": [
"Yes."
]
},
{
"id": "task021-d80cbecad6e646e7aaf7e5c8277a4174",
"input": "Sentence: She began to tell the story of Majestic, the wild horse who could not be calmed. \nQuestion: How long did she tell the story?",
"output": [
"Yes."
]
},
{
"id": "task021-fd08d8558fab4a6a9d63f02f6c538346",
"input": "Sentence: Some government officials were concerned that terrorists would take advantage of such breakdowns. \nQuestion: Is it normal for the officials to be concerned?",
"output": [
"No."
]
},
{
"id": "task021-7631acadd84343219c7707877827bce4",
"input": "Sentence: Several tenants blame other neighbors as perpetrators of the rift, however. \nQuestion: Have the tenants been angry for very long?",
"output": [
"No."
]
},
{
"id": "task021-63243de4b3a34a3a908004b4330fc12f",
"input": "Sentence: The king of Gandhara then stops everyone from grabbing the little food that is provided . \nQuestion: Were they upset after the king stopped them?",
"output": [
"Yes."
]
},
{
"id": "task021-74be441416ad4d9cbbb77fc4756ac9b1",
"input": "Sentence: Other times, they play a game with Quack where they wave at Quack and laugh. \nQuestion: How long do they play everyday?",
"output": [
"Yes."
]
},
{
"id": "task021-b468e40672fe49cd999d699e10129972",
"input": "Sentence: In the mean time fate had avenged Law on one of his lesser enemies. \nQuestion: How long had he had this enemy?",
"output": [
"Yes."
]
},
{
"id": "task021-c5bcc5bb91654f32a1079017425852bb",
"input": "Sentence: Christianity was introduced into Gaul in the first century a.d. \nQuestion: How often were teaching services held?",
"output": [
"Yes."
]
},
{
"id": "task021-ca606d6d28d34b9084225576ba6663c5",
"input": "Sentence: A floodplain is an area where a thick layer of rich soil is left behind as the floodwater recedes. \nQuestion: Can you grow corps in a floodplain?",
"output": [
"No."
]
},
{
"id": "task021-a0ba8f90c62a4c9c9cf9c408c167ee30",
"input": "Sentence: They then took a boat to Africa and Asia, where they went on a trip through the mountains. \nQuestion: What time did the boat arrive?",
"output": [
"Yes."
]
},
{
"id": "task021-3938f6dc3ad74ba1b4f704eb91a74dac",
"input": "Sentence: Joe's parents are farmers and they have a huge farm with cows, chickens, and ducks. \nQuestion: How long have Joe's parents been farmers?",
"output": [
"Yes."
]
},
{
"id": "task021-8e86c575709347459cfb01844186d30f",
"input": "Sentence: At current rates of use, coal will last about 300 years. \nQuestion: How long has been coal used for industrial needs?",
"output": [
"No."
]
},
{
"id": "task021-00ec7074c59748bd806927ade382f3ef",
"input": "Sentence: For example, buy local produce at a farmers market, like the one in Figure 2.20. \nQuestion: What happened after produce was bought at the farmers market?",
"output": [
"Yes."
]
},
{
"id": "task021-4d443e039c564d57b87923d0de6e4c3a",
"input": "Sentence: You can see examples of people with gravitational potential energy in 1.5 Figure below. \nQuestion: What will a typical person do after reviewing the example?",
"output": [
"Yes."
]
},
{
"id": "task021-50501ccf17ef4d608f4ffae19c93bbbe",
"input": "Sentence: All Ana had to do was spell this last word and she would be the winner. \nQuestion: How long did it take her to spell the word?",
"output": [
"Yes."
]
},
{
"id": "task021-c6516dd68e9f4e719781826d71515892",
"input": "Sentence: Martinez works two jobs as a physician's assistant and supports his elderly parents and 8-year-old son. \nQuestion: Does Martinez work on the weekdays?",
"output": [
"Yes."
]
},
{
"id": "task021-fc4377ac35704b04b35bf41aaf5ab478",
"input": "Sentence: It's hail crackled across the comm, and Tara spun to retake her seat at the helm. \nQuestion: What time of day was the storm?",
"output": [
"Yes."
]
},
{
"id": "task021-68da41f1f32441b693f31c5a95c37851",
"input": "Sentence: Wallace lives in Athens, W. Va., with her husband Rob, 37, and her daughters Rachel, 11, and Claire, 5. \nQuestion: Is Wallace still married?",
"output": [
"Yes."
]
},
{
"id": "task021-bfa4846060894aceb2864a757528d6e7",
"input": "Sentence: In Malaysia, Powell met with Prime Minister Mahathir Mohamad, who has led the country since 1981. \nQuestion: How often does Powell travel to other countries to meet their leaders?",
"output": [
"Yes."
]
},
{
"id": "task021-5919d75b0711467da4284c0af97f0f08",
"input": "Sentence: Durer's father died in 1502, and his mother died in 1513. \nQuestion: Was Durer alive when his mother died?",
"output": [
"Yes."
]
},
{
"id": "task021-f09e1abda3be4213ac1fe34cd77bfe0a",
"input": "Sentence: They first traveled by plane around Europe, where they saw many different people and sights. \nQuestion: What happened after the planes would land.?",
"output": [
"No."
]
},
{
"id": "task021-e90d7338feff43e2bc0acd4a7960387f",
"input": "Sentence: At current rates of use, coal will last about 300 years. \nQuestion: How many days did they take to prepare this report?",
"output": [
"Yes."
]
},
{
"id": "task021-ca8f41caf9024a55be4c6ab0f62375de",
"input": "Sentence: In this way the other major congressional interests can be brought together in the new committee's work. \nQuestion: How long did it take to form the new committee?",
"output": [
"Yes."
]
},
{
"id": "task021-380c39291a814d65b12614e58ef8b806",
"input": "Sentence: With large population movements in the 1990s to urban areas, the provision of education has undergone transformation as well. \nQuestion: What time did most education in these areas regularly start?",
"output": [
"No."
]
},
{
"id": "task021-7388d56f9332475f8470feb2f8a5d964",
"input": "Sentence: You can clearly see the same rock layers on opposite sides of the canyon. \nQuestion: When did they canyon split?",
"output": [
"No."
]
},
{
"id": "task021-7f960b05585e4d35a782ef7420b19b03",
"input": "Sentence: So from now on, Marsha takes extra special care to make sure Joey is safe and sound at all times. \nQuestion: Is Joey safe and sound today?",
"output": [
"Yes."
]
},
{
"id": "task021-877dbb77e28143f9ac128ae6d33c3b15",
"input": "Sentence: Islam later emerged as the majority religion during the centuries of Ottoman rule, though a significant Christian minority remained. \nQuestion: How long has a significant Christian minority remained?",
"output": [
"Yes."
]
},
{
"id": "task021-200cde0b8ab34f408d0b5ab639ff9c95",
"input": "Sentence: From Hunter Huss, she moved on to pursue a degree at Pfeiffer University in Misenheimer. \nQuestion: Is she still a student at Pfeiffer University?",
"output": [
"Yes."
]
},
{
"id": "task021-e8c921707e5447329526062507687f93",
"input": "Sentence: What if you rode the bus or were driven in a car?. \nQuestion: After entering the bus, would you still be on a bus ride the next day?",
"output": [
"Yes."
]
},
{
"id": "task021-95b84ae4df0f42f19a983b6644977018",
"input": "Sentence: Casino operators had to reassess the nature of their business. \nQuestion: How long had they been in business?",
"output": [