-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneqa.jsonl
1718 lines (1718 loc) · 363 KB
/
neqa.jsonl
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
{"question": "What is not the primary reason my duck feather filled jacket works well against the snow", "choices": ["feathers slows heat transfer", "small flexible solar panels"], "answer": 1, "metadata": {"id": "1095", "split": "test", "negation_rule": "not/be"}}
{"question": "Turning a piece of paper into a ball is not an example of", "choices": ["flattening", "squashing"], "answer": 0, "metadata": {"id": "12-999", "split": "train", "negation_rule": "not/be"}}
{"question": "Pushing on a pedal isn't an example of", "choices": ["force", "speed"], "answer": 1, "metadata": {"id": "297", "split": "train", "negation_rule": "not/be"}}
{"question": "Camel humps are not a good example of", "choices": ["Iraqi roadside prime cuisine", "changing to meet the environment"], "answer": 0, "metadata": {"id": "10-516", "split": "train", "negation_rule": "not/be"}}
{"question": "A person puts a potato in some embers on the edge of a campfire. The embers are not", "choices": ["doing a thermal release", "taking in the warmth"], "answer": 1, "metadata": {"id": "10-1096", "split": "train", "negation_rule": "not/be"}}
{"question": "If a bucket of water from the sea is left out in the sun for long enough, all that will eventually remain in the bucket isn't", "choices": ["grapes", "sodium"], "answer": 0, "metadata": {"id": "13-151", "split": "train", "negation_rule": "not/be"}}
{"question": "If you're looking for the rock between the 2nd and the 4th from our star you are not looking for", "choices": ["earth", "pluto"], "answer": 1, "metadata": {"id": "12-820", "split": "train", "negation_rule": "not/be"}}
{"question": "an example of an excellent earth mover isn't", "choices": ["cat", "annelids"], "answer": 0, "metadata": {"id": "9-439", "split": "train", "negation_rule": "not/be"}}
{"question": "Quartz crystals aren't made up of", "choices": ["hexagons", "majic"], "answer": 1, "metadata": {"id": "9-966", "split": "test", "negation_rule": "not/be"}}
{"question": "Two wheeled conveyances are not held together by", "choices": ["glue", "helically ridged pins"], "answer": 0, "metadata": {"id": "12-233", "split": "train", "negation_rule": "not/be"}}
{"question": "a producer is not a source of energy for", "choices": ["external food eaters", "rubber"], "answer": 1, "metadata": {"id": "13-773", "split": "train", "negation_rule": "not/be"}}
{"question": "Redwoods are not supported by", "choices": ["donations from the environmental protection agency", "very large and thick trunks"], "answer": 0, "metadata": {"id": "12-624", "split": "train", "negation_rule": "not/be"}}
{"question": "If a person enjoys star gazing the best place to live is not", "choices": ["the countryside", "the big city"], "answer": 1, "metadata": {"id": "13-109", "split": "train", "negation_rule": "not/be"}}
{"question": "A thermal conductor isn't made of", "choices": ["electrodes", "often metallic"], "answer": 0, "metadata": {"id": "13-335", "split": "train", "negation_rule": "not/be"}}
{"question": "Viewing stars is not made easier by", "choices": ["technology that collects electromagnetic radiation", "technology that picks up sound in space"], "answer": 1, "metadata": {"id": "7-535", "split": "dev", "negation_rule": "not/be"}}
{"question": "The substance that the respiratory system takes in from the air isn't released by", "choices": ["insects", "plants"], "answer": 0, "metadata": {"id": "13-944", "split": "train", "negation_rule": "not/be"}}
{"question": "If a see through thing is multifaceted, it isn't most likely", "choices": ["a quartz square", "a silver globe"], "answer": 1, "metadata": {"id": "13-886", "split": "train", "negation_rule": "not/be"}}
{"question": "What anchors plants into the soil are not called", "choices": ["large anchors made of metal", "the same as an american television miniseries about slavery"], "answer": 0, "metadata": {"id": "12-951", "split": "train", "negation_rule": "not/be"}}
{"question": "An example of thermal energy isn't", "choices": ["Drying our clothes in the sun", "crying in a school bathroom"], "answer": 1, "metadata": {"id": "13-982", "split": "train", "negation_rule": "not/be"}}
{"question": "A person drops a bean in the dirt, and kicks some dirt over it. If the person goes to dig up that bean a month later, it isn't likely to have", "choices": ["shrunk", "sprouted"], "answer": 0, "metadata": {"id": "11-388", "split": "train", "negation_rule": "not/be"}}
{"question": "Much iron is not in", "choices": ["Earth's second layer", "empty"], "answer": 1, "metadata": {"id": "14-512", "split": "train", "negation_rule": "not/be"}}
{"question": "The type of climate change known as anthropogenic isn't caused by this:", "choices": ["volcanic activity", "humanity"], "answer": 0, "metadata": {"id": "9-677", "split": "dev", "negation_rule": "not/be"}}
{"question": "The crust is not made of different kinds of", "choices": ["stone", "stars"], "answer": 1, "metadata": {"id": "14-1126", "split": "train", "negation_rule": "not/be"}}
{"question": "The black bear in Alaska isn't known for hunting this type of feast", "choices": ["moose", "fish"], "answer": 0, "metadata": {"id": "9-398", "split": "dev", "negation_rule": "not/be"}}
{"question": "A cypress tree's stout roots splitting asphalt is not an example of", "choices": ["weathering", "beer"], "answer": 1, "metadata": {"id": "13-955", "split": "train", "negation_rule": "not/be"}}
{"question": "When the moon, sun, and earth line up, tides aren't at their", "choices": ["Happy", "Max"], "answer": 0, "metadata": {"id": "12-123", "split": "train", "negation_rule": "not/be"}}
{"question": "A cloud gets fat and heavy and dark. The sky gets darker. The next step to expect is not", "choices": ["precipitation", "flowers"], "answer": 1, "metadata": {"id": "10-1151", "split": "train", "negation_rule": "not/be"}}
{"question": "Which isn't recyclable", "choices": ["Styrofoam food container", "soda can"], "answer": 0, "metadata": {"id": "1348", "split": "dev", "negation_rule": "not/be"}}
{"question": "A renewable resource is not used to produce", "choices": ["notebook paper", "plastic rulers"], "answer": 1, "metadata": {"id": "7-1036", "split": "dev", "negation_rule": "not/be"}}
{"question": "A light isn't refracted when", "choices": ["it shines at a mirror", "it shines at a gem"], "answer": 0, "metadata": {"id": "7-819", "split": "train", "negation_rule": "not/be"}}
{"question": "Which isn't a visible example of water vapor", "choices": ["aerial clouds", "snow"], "answer": 1, "metadata": {"id": "11-290", "split": "train", "negation_rule": "not/be"}}
{"question": "In the natural world, camouflage is not used by animals to", "choices": ["stay warm in the winter", "avoid being a meal"], "answer": 0, "metadata": {"id": "14-571", "split": "train", "negation_rule": "not/be"}}
{"question": "Our only star provides us with energy that isn't", "choices": ["reusable", "temporary"], "answer": 1, "metadata": {"id": "14-825", "split": "train", "negation_rule": "not/be"}}
{"question": "a seismograph is not a kind of tool for measuring the size of", "choices": ["planets", "terra plate displacements"], "answer": 0, "metadata": {"id": "13-474", "split": "train", "negation_rule": "not/be"}}
{"question": "365 solar cycles isn't equivalent to", "choices": ["one trip around the sun", "2 years in deep space"], "answer": 1, "metadata": {"id": "10-530", "split": "train", "negation_rule": "not/be"}}
{"question": "A full moon is not caused by", "choices": ["moonlight", "orbiting"], "answer": 0, "metadata": {"id": "1949", "split": "dev", "negation_rule": "not/be"}}
{"question": "Soil quality is not improved when", "choices": ["organisms pass and rot away", "microscopic insects infest the landscape"], "answer": 1, "metadata": {"id": "7-466", "split": "train", "negation_rule": "not/be"}}
{"question": "As the barometer reading goes lower there is not a greater chance of", "choices": ["sunshine", "getting wet"], "answer": 0, "metadata": {"id": "12-255", "split": "train", "negation_rule": "not/be"}}
{"question": "If a cat has a body temp that is below average, it isn't in", "choices": ["danger", "safe ranges"], "answer": 1, "metadata": {"id": "12-1140", "split": "train", "negation_rule": "not/be"}}
{"question": "Snow isn't more likely to fall two months before", "choices": ["June", "March"], "answer": 0, "metadata": {"id": "1271", "split": "test", "negation_rule": "not/be"}}
{"question": "Dead plants are not easier to find in", "choices": ["January", "September"], "answer": 1, "metadata": {"id": "35", "split": "test", "negation_rule": "not/be"}}
{"question": "This object in your pocket isn't the most likely to shock you", "choices": ["your library card", "your phone"], "answer": 0, "metadata": {"id": "14-659", "split": "train", "negation_rule": "not/be"}}
{"question": "panting isn't the equivalent to humans", "choices": ["expelling water from their dermis", "drowning in a small puddle"], "answer": 1, "metadata": {"id": "9-1161", "split": "dev", "negation_rule": "not/be"}}
{"question": "A thing which ferns have in endless supply when expanding isn't", "choices": ["darkness", "dirt"], "answer": 0, "metadata": {"id": "12-640", "split": "train", "negation_rule": "not/be"}}
{"question": "A boy hates summer with a burning passion, so luckily the longest he should ever have to endure the season isn't", "choices": ["twelve weeks", "nine months"], "answer": 1, "metadata": {"id": "12-355", "split": "train", "negation_rule": "not/be"}}
{"question": "One way to remember the method of Scientific Classification is not", "choices": ["run", "make a sentence"], "answer": 0, "metadata": {"id": "13-580", "split": "train", "negation_rule": "not/be"}}
{"question": "Rabbits with white fur aren't hardest to detect in", "choices": ["the arctic in Winter", "The middle of a well-lit street"], "answer": 1, "metadata": {"id": "13-660", "split": "train", "negation_rule": "not/be"}}
{"question": "All the food in the fridge is warm on a remote farm with a windmill. The most likely cause is not", "choices": ["it's a very windy day", "it's a windless day"], "answer": 0, "metadata": {"id": "13-391", "split": "train", "negation_rule": "not/be"}}
{"question": "It isn't easiest to get a clear photo of the moon by", "choices": ["using a telescopic lens", "looking through a microscope"], "answer": 1, "metadata": {"id": "7-13", "split": "train", "negation_rule": "not/be"}}
{"question": "A way to conserve something isn't to", "choices": ["use it quickly", "use it sparsely"], "answer": 0, "metadata": {"id": "12-288", "split": "train", "negation_rule": "not/be"}}
{"question": "If your dog is not overweight", "choices": ["cut back their caloric intake", "let them sleep more"], "answer": 1, "metadata": {"id": "7-284", "split": "test", "negation_rule": "not/be"}}
{"question": "A mouse is not made up of", "choices": ["dairy", "organic material"], "answer": 0, "metadata": {"id": "10-1163", "split": "train", "negation_rule": "not/be"}}
{"question": "A place where penguins exist with pods of black and white mammals is not", "choices": ["uninhabitable by iguanas", "painted with cream"], "answer": 1, "metadata": {"id": "14-372", "split": "train", "negation_rule": "not/be"}}
{"question": "A woman is digging under a tree on a tall mountain. She is looking for interesting rocks, and a foot down into the soil, discovers a fossilized fish skeleton. From this discovery, the woman is not able to determine that", "choices": ["sometimes rain can move fish to high spaces", "the mountain used to be underwater"], "answer": 0, "metadata": {"id": "8-264", "split": "train", "negation_rule": "not/be"}}
{"question": "one inherited characteristic of fur isn't it's", "choices": ["hue", "weight"], "answer": 1, "metadata": {"id": "9-617", "split": "train", "negation_rule": "not/be"}}
{"question": "The creation of sediment is not produced by", "choices": ["chemicals compounds combining together", "the break down of other materials"], "answer": 0, "metadata": {"id": "1564", "split": "train", "negation_rule": "not/be"}}
{"question": "Bluebirds are not found in", "choices": ["vast green fields", "glaciers"], "answer": 1, "metadata": {"id": "14-894", "split": "train", "negation_rule": "not/be"}}
{"question": "Leaving remain oil supplies alone isn't a form of", "choices": ["transportation", "conservation"], "answer": 0, "metadata": {"id": "10-258", "split": "train", "negation_rule": "not/be"}}
{"question": "the hourly totals of sunshine aren't directly connect to", "choices": ["seasons", "altitude"], "answer": 1, "metadata": {"id": "9-1105", "split": "dev", "negation_rule": "not/be"}}
{"question": "something that can negatively impact an organisms health is not", "choices": ["chemistry", "chickenpox"], "answer": 0, "metadata": {"id": "10-1003", "split": "train", "negation_rule": "not/be"}}
{"question": "A container with a printed scale on it's side is not used to", "choices": ["measure volume", "hold flowers"], "answer": 1, "metadata": {"id": "12-176", "split": "train", "negation_rule": "not/be"}}
{"question": "Your clothes likely will be soaked if the skies aren't", "choices": ["sunny without clouds", "black"], "answer": 0, "metadata": {"id": "14-574", "split": "train", "negation_rule": "not/be"}}
{"question": "If a thing is going between liquid and solid, it is not likely to", "choices": ["measure consistently", "be a door"], "answer": 1, "metadata": {"id": "14-987", "split": "train", "negation_rule": "not/be"}}
{"question": "There isn't a heightened threat of landslide in", "choices": ["the ocean", "The Andes"], "answer": 0, "metadata": {"id": "9-692", "split": "test", "negation_rule": "not/be"}}
{"question": "A moth leaving it's cocoon isn't the final step in a", "choices": ["transformation", "life cycle"], "answer": 1, "metadata": {"id": "9-638", "split": "test", "negation_rule": "not/be"}}
{"question": "If a puppy steps on a lit cigarette, it is not likely", "choices": ["happy", "pained"], "answer": 0, "metadata": {"id": "12-111", "split": "train", "negation_rule": "not/be"}}
{"question": "A landslide is not likely to occur on a slope as", "choices": ["downward movement is facilitated", "there is more debris"], "answer": 1, "metadata": {"id": "10-688", "split": "train", "negation_rule": "not/be"}}
{"question": "The organisms likely to have the waxiest leaves aren't", "choices": ["gorilla", "jades"], "answer": 0, "metadata": {"id": "11-483", "split": "train", "negation_rule": "not/be"}}
{"question": "Corn and wheat aren't among the favorite foods of", "choices": ["humans", "fish"], "answer": 1, "metadata": {"id": "14-730", "split": "train", "negation_rule": "not/be"}}
{"question": "A thing's position is not altered when", "choices": ["thing feels moved emotionally", "the thing adjusts its location"], "answer": 0, "metadata": {"id": "7-392", "split": "train", "negation_rule": "not/be"}}
{"question": "A way to tell if a rock could possibly hold Fe inside is not to", "choices": ["hover a magnet over it", "take the rock home"], "answer": 1, "metadata": {"id": "7-283", "split": "dev", "negation_rule": "not/be"}}
{"question": "The leading cause of soil and rock erosion is not", "choices": ["NaCl", "H2O"], "answer": 0, "metadata": {"id": "1500", "split": "test", "negation_rule": "not/be"}}
{"question": "A horse is outside alone in the middle of summer on a sunny day in a desert. The horse is getting wet. The wetness is not coming from", "choices": ["sweat glands", "orange juice"], "answer": 1, "metadata": {"id": "12-864", "split": "train", "negation_rule": "not/be"}}
{"question": "A family moves into an old home that mice have moved into. Soon after the human family moves in, the family of mice aren't likely to", "choices": ["be frozen", "be ejected"], "answer": 0, "metadata": {"id": "11-415", "split": "train", "negation_rule": "not/be"}}
{"question": "steam isn't a kind of water above", "choices": ["373 kelvin", "jupiter"], "answer": 1, "metadata": {"id": "13-600", "split": "train", "negation_rule": "not/be"}}
{"question": "Nearly all prehistoric bones are not found in", "choices": ["granite", "shale"], "answer": 0, "metadata": {"id": "12-1157", "split": "train", "negation_rule": "not/be"}}
{"question": "A mighty river flows through an area for millennia. Afterwards, it can be noted that where there once were shallow rivers, there aren't now", "choices": ["massive canyons", "old socks"], "answer": 1, "metadata": {"id": "10-56", "split": "train", "negation_rule": "not/be"}}
{"question": "A thermal conductor is not made of", "choices": ["types of wire", "that which conducts"], "answer": 0, "metadata": {"id": "7-994", "split": "train", "negation_rule": "not/be"}}
{"question": "The Earth's closest heat source isn't", "choices": ["our celestial fireball", "gamma rays"], "answer": 1, "metadata": {"id": "9-181", "split": "test", "negation_rule": "not/be"}}
{"question": "Personal protection equipment isn't essential when", "choices": ["wearing a sports cup", "experimenting with volatile and vaporous liquids"], "answer": 0, "metadata": {"id": "10-544", "split": "train", "negation_rule": "not/be"}}
{"question": "A person is wondering how much the steam from the pot of water that is boiling will measure. They are not able to measure it in a definite way by", "choices": ["collecting the condensed liquid", "making the liquid condense outdoors"], "answer": 1, "metadata": {"id": "11-731", "split": "train", "negation_rule": "not/be"}}
{"question": "nutrients from food and water are not necessary to an organism's", "choices": ["friendships", "survival"], "answer": 0, "metadata": {"id": "8-462", "split": "train", "negation_rule": "not/be"}}
{"question": "If the ground is fully shaded, and plants there barely grow, likely the reason isn't", "choices": ["oaks there are mighty", "birds there are fat"], "answer": 1, "metadata": {"id": "12-16", "split": "train", "negation_rule": "not/be"}}
{"question": "If a thing is electrically insulated, then it is not", "choices": ["metal inside, metal outside", "metal inside, other material outside"], "answer": 0, "metadata": {"id": "12-884", "split": "train", "negation_rule": "not/be"}}
{"question": "One way to retain your own thermal energy is not to", "choices": ["wear fluffy socks", "sit in snow"], "answer": 1, "metadata": {"id": "13-804", "split": "train", "negation_rule": "not/be"}}
{"question": "Which of these isn't less likely to cause pollution", "choices": ["chopper", "mountain bike"], "answer": 0, "metadata": {"id": "14-451", "split": "train", "negation_rule": "not/be"}}
{"question": "If a person wants to save the environment, a thing they can try isn't", "choices": ["reusing plastic dishware", "burning more plastic"], "answer": 1, "metadata": {"id": "12-31", "split": "train", "negation_rule": "not/be"}}
{"question": "The crust under everyone's feet isn't", "choices": ["the ice that forms in cold regions", "the outer covering of the third planet from the sun"], "answer": 0, "metadata": {"id": "11-566", "split": "train", "negation_rule": "not/be"}}
{"question": "Sleet is not", "choices": ["potentially dangerous", "poison"], "answer": 1, "metadata": {"id": "10-201", "split": "train", "negation_rule": "not/be"}}
{"question": "We are trying to use air as sources of energy because there is an infinite amount of it, same with water. These are not two examples of", "choices": ["Limited resources", "Renewable resources"], "answer": 0, "metadata": {"id": "9-143", "split": "dev", "negation_rule": "not/be"}}
{"question": "What separates animals that thrive and those that go extinct are not", "choices": ["the ability to adapt", "the type of animal"], "answer": 1, "metadata": {"id": "405", "split": "train", "negation_rule": "not/be"}}
{"question": "Nectar isn't taken to", "choices": ["flowers", "a hive"], "answer": 0, "metadata": {"id": "78", "split": "test", "negation_rule": "not/be"}}
{"question": "The appropriate place to put this item isn't the recycling bin", "choices": ["used soda can", "used Styrofoam plates"], "answer": 1, "metadata": {"id": "8-471", "split": "test", "negation_rule": "not/be"}}
{"question": "Avoiding the use of fossil fuel is not an example of", "choices": ["Ecosystem Vulnerability", "Conservationism"], "answer": 0, "metadata": {"id": "8-391", "split": "train", "negation_rule": "not/be"}}
{"question": "As a lake increases in size, there aren't more", "choices": ["catfish", "volcanoes"], "answer": 1, "metadata": {"id": "12-1125", "split": "train", "negation_rule": "not/be"}}
{"question": "A sunburn isn't most likely to happen after hiking in a", "choices": ["wetland", "desert"], "answer": 0, "metadata": {"id": "9-850", "split": "train", "negation_rule": "not/be"}}
{"question": "the oceans aren't full of", "choices": ["sea life", "fresh water"], "answer": 1, "metadata": {"id": "9-883", "split": "test", "negation_rule": "not/be"}}
{"question": "Winter in the northern hemisphere is not occurring on", "choices": ["the day after July 4th", "the day after November 30th"], "answer": 0, "metadata": {"id": "1232", "split": "train", "negation_rule": "not/be"}}
{"question": "The transportation with the most mass isn't likely a", "choices": ["commercial plane", "private car"], "answer": 1, "metadata": {"id": "163", "split": "test", "negation_rule": "not/be"}}
{"question": "when a tadpole changes into a frog, the tadpole isn't like", "choices": ["a grape", "a maggot"], "answer": 0, "metadata": {"id": "267", "split": "train", "negation_rule": "not/be"}}
{"question": "There are less hummingbirds by this house than before not because of", "choices": ["a feeder at another house", "the size of the feeder"], "answer": 1, "metadata": {"id": "664", "split": "test", "negation_rule": "not/because"}}
{"question": "A goose needs to move to warmer states for the winter. Leaving its summer home, it heads out without a map, not because it can always find the right way by using", "choices": ["a compass that points north", "the Earth's magnetic patterns"], "answer": 0, "metadata": {"id": "10-343", "split": "train", "negation_rule": "not/because"}}
{"question": "Driving during a snow storm or strong thunderstorm is a bad idea not because bad weather makes it", "choices": ["harder to see", "able to fly"], "answer": 1, "metadata": {"id": "14-701", "split": "train", "negation_rule": "not/because"}}
{"question": "The Appalachians reach amazing heights not because of how stone", "choices": ["created anchors", "piles together"], "answer": 0, "metadata": {"id": "9-639", "split": "train", "negation_rule": "not/because"}}
{"question": "A small rodent will fear a creature such as a fox not because", "choices": ["foxes enjoy rodent dinners", "mice are able to fly"], "answer": 1, "metadata": {"id": "11-641", "split": "train", "negation_rule": "not/because"}}
{"question": "A cow can see that the farmer is coming not because there is light that makes its way", "choices": ["into a bucket", "into his eyes"], "answer": 0, "metadata": {"id": "11-97", "split": "train", "negation_rule": "not/because"}}
{"question": "Humans have the ability to change how much they weigh, but we cannot change how tall we are not because that is", "choices": ["hereditary", "Too hard"], "answer": 1, "metadata": {"id": "10-645", "split": "train", "negation_rule": "not/because"}}
{"question": "A young boy is reprimanded by his mother for sleeping with his heavy blankets over his head. His mother is worried that if the boy continues to sleep like that, he will suffocate. This is not because", "choices": ["beds can cause issues with breathing", "CO2 in large amounts is fatal"], "answer": 0, "metadata": {"id": "8-187", "split": "train", "negation_rule": "not/because"}}
{"question": "Insomniacs are less healthy than other people not because they", "choices": ["rarely slumber", "are in space"], "answer": 1, "metadata": {"id": "14-4", "split": "train", "negation_rule": "not/because"}}
{"question": "There are many protests and outraged people about humans changing the environment of the rain forest not because changing even something small in an environment can", "choices": ["make it laugh", "wreck it"], "answer": 0, "metadata": {"id": "10-455", "split": "train", "negation_rule": "not/because"}}
{"question": "A person can be punched in the chest without the heart stopping not because", "choices": ["ribs guard it", "hearts are hollow"], "answer": 1, "metadata": {"id": "10-1190", "split": "train", "negation_rule": "not/because"}}
{"question": "An electric car uses less gasoline than a regular car not because", "choices": ["gas is unable to be used", "power is prioritized over gas"], "answer": 0, "metadata": {"id": "7-114", "split": "dev", "negation_rule": "not/because"}}
{"question": "A camel can survive in the desert not because of", "choices": ["hoarded energy", "horses"], "answer": 1, "metadata": {"id": "12-678", "split": "train", "negation_rule": "not/because"}}
{"question": "Venus fly traps are poor at creating their own food though photosynthesis not because", "choices": ["they need water", "they require insects"], "answer": 0, "metadata": {"id": "7-1183", "split": "train", "negation_rule": "not/because"}}
{"question": "A creature can hide in plain sight from predators not because", "choices": ["it misdirects", "it burns"], "answer": 1, "metadata": {"id": "10-1095", "split": "train", "negation_rule": "not/because"}}
{"question": "A bear hibernates through cold weather not because", "choices": ["winter is too cold", "resources are scarce in winter"], "answer": 0, "metadata": {"id": "7-73", "split": "dev", "negation_rule": "not/because"}}
{"question": "When an animal goes into a den during cold weather they probably did this not because", "choices": ["their ancestors did the same thing", "they are escaping predators"], "answer": 1, "metadata": {"id": "11-520", "split": "train", "negation_rule": "not/because"}}
{"question": "If Paul is playing basketball and finds that his skin is becoming wet and smelly, it might be not because", "choices": ["His body is too cold", "His body is trying to lower its temperature"], "answer": 0, "metadata": {"id": "9-972", "split": "train", "negation_rule": "not/because"}}
{"question": "A flashlight works not because the batteries inside of it produce chemical energy that", "choices": ["is transferred to another type", "burn into the plastic"], "answer": 1, "metadata": {"id": "7-1124", "split": "dev", "negation_rule": "not/because"}}
{"question": "The inside of the Thanksgiving turkey is white instead of pink not because of", "choices": ["light energy", "heat energy"], "answer": 0, "metadata": {"id": "490", "split": "test", "negation_rule": "not/because"}}
{"question": "Greenhouses work not because", "choices": ["air retains humidity and warmth", "gasses are trapped in buildings"], "answer": 1, "metadata": {"id": "7-371", "split": "train", "negation_rule": "not/because"}}
{"question": "More carbon dioxide is in the air in the past decade than ever before, probably not because", "choices": ["more plant life", "human population increased"], "answer": 0, "metadata": {"id": "7-617", "split": "train", "negation_rule": "not/because"}}
{"question": "Water, while a finite resource, is renewable not because", "choices": ["water is quite cyclical", "water is found in trees"], "answer": 1, "metadata": {"id": "8-172", "split": "train", "negation_rule": "not/because"}}
{"question": "Worms are excellent decomposers not because", "choices": ["worms enjoy eating dirt and decay", "they enjoy eating carcasses and expel waste back to earth"], "answer": 0, "metadata": {"id": "7-982", "split": "train", "negation_rule": "not/because"}}
{"question": "The reason you tend to think of the color white when you think of environments where its constantly freezing, is not because those place get tons of", "choices": ["snowfall", "droughts"], "answer": 1, "metadata": {"id": "12-816", "split": "train", "negation_rule": "not/because"}}
{"question": "One of the reasons some species go extinct is not because predators", "choices": ["go dancing with them", "murder too many of them"], "answer": 0, "metadata": {"id": "13-578", "split": "train", "negation_rule": "not/because"}}
{"question": "Runoff happens not because of", "choices": ["people", "cattails"], "answer": 1, "metadata": {"id": "1635", "split": "test", "negation_rule": "not/because"}}
{"question": "Doing this in national parks and many other wooded areas is illegal not because it harms the environment", "choices": ["talking", "ditching your junk"], "answer": 0, "metadata": {"id": "14-1419", "split": "train", "negation_rule": "not/because"}}
{"question": "The rhino population is smaller than before not because", "choices": ["people use parts for health remedies", "cars crashed into rhinos"], "answer": 1, "metadata": {"id": "1766", "split": "train", "negation_rule": "not/because"}}
{"question": "When a person gets hurt physically, the person feels pain not because there are", "choices": ["magic receptors", "electric reactions"], "answer": 0, "metadata": {"id": "9-344", "split": "train", "negation_rule": "not/because"}}
{"question": "A person discovers a dinosaur skeleton in their backyard under a lot of dirt. The skeleton is lacking the bright whiteness of bones, not because it is", "choices": ["trapped in stone", "filled with beer"], "answer": 1, "metadata": {"id": "10-65", "split": "train", "negation_rule": "not/because"}}
{"question": "Fish are quickly caught in water not because of the webbed feet possessed by a", "choices": ["cheetah", "penguin"], "answer": 0, "metadata": {"id": "9-715", "split": "train", "negation_rule": "not/because"}}
{"question": "A ship navigates with a magnetic compass not because it is", "choices": ["predictable", "tradition"], "answer": 1, "metadata": {"id": "12-339", "split": "train", "negation_rule": "not/because"}}
{"question": "Steve was driving on the highway when he rear-ended another car because he didn't see it until he was just a foot away. This could have happened not because of", "choices": ["ice forming on the road", "a sudden fog moving into the area"], "answer": 0, "metadata": {"id": "9-461", "split": "test", "negation_rule": "not/because"}}
{"question": "A star produces light energy and heat not because it has a variety of", "choices": ["reactions of nuclear form", "moon rotation causing friction"], "answer": 1, "metadata": {"id": "10-577", "split": "train", "negation_rule": "not/because"}}
{"question": "Another term for wind energy is clean energy not because the wind and air contains", "choices": ["moon", "zero pollutants"], "answer": 0, "metadata": {"id": "13-718", "split": "train", "negation_rule": "not/because"}}
{"question": "Water needs to be clean in order for someone to safely drink it. Drinking polluted water is bad not because it is the same as drinking", "choices": ["poison", "rocks"], "answer": 1, "metadata": {"id": "12-137", "split": "train", "negation_rule": "not/because"}}
{"question": "Cows know there is salt in a mineral lick not because", "choices": ["they evolved where there were great redwood trees", "they have receptors on their tongue that allow them to experience spice and seasonings"], "answer": 0, "metadata": {"id": "10-648", "split": "train", "negation_rule": "not/because"}}
{"question": "Roads need repaved in spring not because", "choices": ["ice ruins them", "they are cold"], "answer": 1, "metadata": {"id": "7-499", "split": "train", "negation_rule": "not/because"}}
{"question": "A person in the woods who accidentally runs into a wild wolf will have little to fear not because", "choices": ["wolves smoke people", "wolves evade people"], "answer": 0, "metadata": {"id": "10-15", "split": "train", "negation_rule": "not/because"}}
{"question": "The reason that ducks are such excellent swimmers is not because", "choices": ["ducks have extra foot skin", "ducks are buoyant and resilient"], "answer": 1, "metadata": {"id": "7-449", "split": "train", "negation_rule": "not/because"}}
{"question": "The main reason people want to use wind as an energy source is not because there is", "choices": ["make cookies", "an everlasting supply"], "answer": 0, "metadata": {"id": "14-1259", "split": "train", "negation_rule": "not/because"}}
{"question": "A cop can tell that a car is speeding not because it is", "choices": ["cruising quickly", "moving forward"], "answer": 1, "metadata": {"id": "7-783", "split": "train", "negation_rule": "not/because"}}
{"question": "A person knows that a place always has blue skies, warm weather and a light breeze not because", "choices": ["that is the beach", "climate is fairly reliable"], "answer": 0, "metadata": {"id": "10-874", "split": "train", "negation_rule": "not/because"}}
{"question": "Squirrels are seed dispersers not because", "choices": ["they bury their food", "they eat lots of nuts"], "answer": 1, "metadata": {"id": "7-717", "split": "dev", "negation_rule": "not/because"}}
{"question": "A pod of dolphins is swimming while searching for food. The youngest dolphin swims away from the pod and is lost. The rest of the pod searches for the young dolphin by clicking into the water. The young dolphin is found not because of", "choices": ["sound of water", "echoes from noise"], "answer": 0, "metadata": {"id": "8-99", "split": "train", "negation_rule": "not/because"}}
{"question": "Rocket engines can lift rockets not because", "choices": ["of the power the hit the ground with", "of how fast they are"], "answer": 1, "metadata": {"id": "7-363", "split": "train", "negation_rule": "not/because"}}
{"question": "Some animals get caught easily by other animals not because they are slow while the predators are", "choices": ["manipulative", "speedy"], "answer": 0, "metadata": {"id": "9-691", "split": "train", "negation_rule": "not/because"}}
{"question": "Bats hunt through echolocation not because", "choices": ["their chirps are sent back after bouncing", "bats can only hear echoes"], "answer": 1, "metadata": {"id": "7-836", "split": "train", "negation_rule": "not/because"}}
{"question": "Saturn hangs around not because of", "choices": ["Saturnalia", "a central star"], "answer": 0, "metadata": {"id": "13-432", "split": "train", "negation_rule": "not/because"}}
{"question": "Using wind in order to power factories is a good idea not because", "choices": ["it can be gotten continuously", "it is free from dirt"], "answer": 1, "metadata": {"id": "7-274", "split": "train", "negation_rule": "not/because"}}
{"question": "A polar bear is white not because", "choices": ["it wants to make a Grizzly bear jealous", "its parents had white fur"], "answer": 0, "metadata": {"id": "10-720", "split": "train", "negation_rule": "not/because"}}
{"question": "Jackrabbits live in very hot environments, but are able to stay cool not because their long ears help", "choices": ["releasing warmth", "change tires"], "answer": 1, "metadata": {"id": "13-723", "split": "train", "negation_rule": "not/because"}}
{"question": "Feeling sweaty is normal on the ocean not because", "choices": ["the desert is drier", "there is more moisture in the air"], "answer": 0, "metadata": {"id": "7-476", "split": "train", "negation_rule": "not/because"}}
{"question": "When we think of bees, we also think of pollen. This is not because bees", "choices": ["consume it", "sell it"], "answer": 1, "metadata": {"id": "9-660", "split": "train", "negation_rule": "not/because"}}
{"question": "Make sure to protect your eyes when working with chemicals not because they can easily do what if handled wrong", "choices": ["nothing", "spatter upward"], "answer": 0, "metadata": {"id": "12-1060", "split": "train", "negation_rule": "not/because"}}
{"question": "A light was off not because the cord was", "choices": ["sitting on the table", "attached to a battery pack"], "answer": 1, "metadata": {"id": "9-550", "split": "test", "negation_rule": "not/because"}}
{"question": "People are switching to electric cars not because cars that use gas", "choices": ["cry", "dirty the air"], "answer": 0, "metadata": {"id": "14-1142", "split": "train", "negation_rule": "not/because"}}
{"question": "a reptile that was brown an hour later is now green not because", "choices": ["it's sitting in a leafy shrub and using camouflage", "red paint was poured over it"], "answer": 1, "metadata": {"id": "13-12", "split": "train", "negation_rule": "not/because"}}
{"question": "A metal sticker remains on a fridge not because of", "choices": ["magic that Juggaloes are unable to explain", "a force that pulls two objects together"], "answer": 0, "metadata": {"id": "10-597", "split": "train", "negation_rule": "not/because"}}
{"question": "A television may turn on at the push of a button not because", "choices": ["the path of electricity is completed", "the television is pretty short"], "answer": 1, "metadata": {"id": "7-209", "split": "train", "negation_rule": "not/because"}}
{"question": "Alice flipped a switch and the ceiling fan started running not because", "choices": ["a circuit was opened", "a circuit was closed"], "answer": 0, "metadata": {"id": "11-431", "split": "train", "negation_rule": "not/because"}}
{"question": "Plants brought to the western United States from the eastern United States often die not because of", "choices": ["the wrong climate", "bad planting methods"], "answer": 1, "metadata": {"id": "658", "split": "train", "negation_rule": "not/because"}}
{"question": "Recently, a lot of people, en masse, were told that they should take an opportunity to cast an image of an object through a pinhole onto a screen, in order to best enjoy an activity. This was not because", "choices": ["science tells us eclipses are scary", "avoiding looking directly at an eclipse is important"], "answer": 0, "metadata": {"id": "8-303", "split": "dev", "negation_rule": "not/because"}}
{"question": "A compass uses natural magnetism so it works only not because", "choices": ["the Earth yanks it", "the Earth is fat"], "answer": 1, "metadata": {"id": "12-643", "split": "train", "negation_rule": "not/because"}}
{"question": "In addition to a slippery road, blizzards can be dangerous to drive in not because", "choices": ["a tornado is likely to pick up your car", "you may only see a car in front of you when it's too late"], "answer": 0, "metadata": {"id": "12-479", "split": "train", "negation_rule": "not/because"}}
{"question": "It's too foggy to see more than two feet on a highway. This is not because of", "choices": ["vapor of H2O condensed in the air", "helium vapor in the air"], "answer": 1, "metadata": {"id": "14-1153", "split": "train", "negation_rule": "not/because"}}
{"question": "Riding a two wheeled human powered vehicle is good for the environment not because", "choices": ["it helps people stay in shape", "it runs without fuel"], "answer": 0, "metadata": {"id": "9-353", "split": "train", "negation_rule": "not/because"}}
{"question": "Asking a blind person to look at something is rude not because they are", "choices": ["unable to see", "unable to speak"], "answer": 1, "metadata": {"id": "14-819", "split": "train", "negation_rule": "not/because"}}
{"question": "A person is reading a map and gets frustrated. The map ends up in a hundred scraps on the floor not because the person", "choices": ["burned it", "ripped it"], "answer": 0, "metadata": {"id": "11-222", "split": "train", "negation_rule": "not/because"}}
{"question": "Being able to enjoy eating Mideastern dates in a small town in the USA is possible not because", "choices": ["transporting food became easier, cheaper, and quicker", "transported food tastes great"], "answer": 1, "metadata": {"id": "7-313", "split": "train", "negation_rule": "not/because"}}
{"question": "A shark will be unable to survive on eating algae and moss, not because", "choices": ["it is a vegetarian", "it is a predator"], "answer": 0, "metadata": {"id": "9-645", "split": "test", "negation_rule": "not/because"}}
{"question": "powered on lightbulbs burst with cold water not because they", "choices": ["the inside is hot", "the inside is also cool"], "answer": 1, "metadata": {"id": "285", "split": "train", "negation_rule": "not/because"}}
{"question": "The moon is bright in the night sky, especially when full not because", "choices": ["batteries power it", "sunlight brightens it"], "answer": 0, "metadata": {"id": "10-505", "split": "train", "negation_rule": "not/because"}}
{"question": "Billy's new puppy had floppy ears. That might be not because", "choices": ["The puppy's mother had ears that looked the same way", "The puppy was tired"], "answer": 1, "metadata": {"id": "9-642", "split": "train", "negation_rule": "not/because"}}
{"question": "A person wanting to find a live bear in a forest will have difficulty not because bears", "choices": ["are friendly", "avoid humanity"], "answer": 0, "metadata": {"id": "11-485", "split": "train", "negation_rule": "not/because"}}
{"question": "All the water vanishes from a small depression basked in sunlight on a paved road not because of", "choices": ["evaporation", "condensation"], "answer": 1, "metadata": {"id": "10-399", "split": "train", "negation_rule": "not/because"}}
{"question": "Sandbars are a part of most seas not because there are", "choices": ["places where fish eat", "waves which adjust silt"], "answer": 0, "metadata": {"id": "7-293", "split": "train", "negation_rule": "not/because"}}
{"question": "A barracuda will be able to raise its own offspring not because", "choices": ["it is alive", "it is troubled"], "answer": 1, "metadata": {"id": "11-251", "split": "train", "negation_rule": "not/because"}}
{"question": "Frogs withstand noisy areas easily when they eat insects not because they have", "choices": ["problems jumping", "zero eardrums"], "answer": 0, "metadata": {"id": "11-511", "split": "train", "negation_rule": "not/because"}}
{"question": "If you're stuck outside on a sunny day, the coolest place would be under a tree not because they do what to the sunlight", "choices": ["block it out", "sell it"], "answer": 1, "metadata": {"id": "13-9", "split": "train", "negation_rule": "not/because"}}
{"question": "Milk sold in supermarkets is pasteurized not because", "choices": ["all raw milk is safe", "to keep bacteria from getting into the milk after the customer buys it"], "answer": 0, "metadata": {"id": "14-756", "split": "train", "negation_rule": "not/because"}}
{"question": "There are very few species of plants and animals in places like the North Pole not because the temperatures are always very", "choices": ["low", "muggy"], "answer": 1, "metadata": {"id": "8-485", "split": "train", "negation_rule": "not/because"}}
{"question": "As a soccer ball goes flying through the air, the person watching it knows that the reason is not because", "choices": ["everything is aerial", "exerting occurred"], "answer": 0, "metadata": {"id": "14-443", "split": "train", "negation_rule": "not/because"}}
{"question": "Jane's hat flew off her head while standing still on a hilltop. This could be not because", "choices": ["there was uneven heating of the ground", "her head blew the hat off"], "answer": 1, "metadata": {"id": "11-741", "split": "train", "negation_rule": "not/because"}}
{"question": "All the deer in one area moved away. This could be not because", "choices": ["The deer went for a walk and got lost", "all the trees had died from disease and fell down"], "answer": 0, "metadata": {"id": "9-753", "split": "dev", "negation_rule": "not/because"}}
{"question": "The hamster was malnourished not because", "choices": ["There was a depletion in the corn supply", "It was waiting for the key to get the food"], "answer": 1, "metadata": {"id": "9-863", "split": "train", "negation_rule": "not/because"}}
{"question": "A boy is standing in the bathroom brushing his teeth, but the lights are off in the bathroom. However, his room is next to the bathroom and his bedroom light is on. The bathroom is still bright, not because the mirror reflects", "choices": ["light from the bathroom", "light from the bedroom"], "answer": 0, "metadata": {"id": "8-313", "split": "train", "negation_rule": "not/because"}}
{"question": "A herd of cattle is slowly making its way through a large field. The shepherd realizes that he forgot to bring grain for the cattle, yet the cattle will survive just fine in the field, not because", "choices": ["they eat roughage", "they eat insects"], "answer": 1, "metadata": {"id": "8-427", "split": "train", "negation_rule": "not/because"}}
{"question": "I have to plug in a processor of food not because it", "choices": ["is a battery operated machine", "is an electric Motor"], "answer": 0, "metadata": {"id": "8-8", "split": "train", "negation_rule": "not/because"}}
{"question": "The dust bowl happened not because of", "choices": ["unsustainable farming practice", "sweeping reform"], "answer": 1, "metadata": {"id": "14-677", "split": "train", "negation_rule": "not/because"}}
{"question": "A car drives right past the gas station not because it's motor is", "choices": ["coal", "electric"], "answer": 0, "metadata": {"id": "7-220", "split": "train", "negation_rule": "not/because"}}
{"question": "A tortoise died many years ago, but it is easy to tell that what was left behind was from a tortoise not because in the rock there are", "choices": ["skeletal system", "muscles"], "answer": 1, "metadata": {"id": "10-226", "split": "train", "negation_rule": "not/because"}}
{"question": "A river can push tin cans down the path of the water not because", "choices": ["it is loud", "it has motion"], "answer": 0, "metadata": {"id": "7-1156", "split": "train", "negation_rule": "not/because"}}
{"question": "A strawberry is in zero way a true berry not because it", "choices": ["has seeds outside the flesh, unlike the blueberry", "is too wet inside"], "answer": 1, "metadata": {"id": "7-289", "split": "dev", "negation_rule": "not/because"}}
{"question": "An island can sprout up from seemingly suddenly not because", "choices": ["underwater volcanoes are invisible", "underwater volcanoes are hidden"], "answer": 0, "metadata": {"id": "7-524", "split": "dev", "negation_rule": "not/because"}}
{"question": "Tungsten is a metal which is found in large amounts in filaments, which are used in incandescent light bulbs. These light bulbs work not because", "choices": ["the filament glows warmly", "light bulbs get very warm"], "answer": 1, "metadata": {"id": "8-416", "split": "train", "negation_rule": "not/because"}}
{"question": "Cars are big polluters not because they release toxins from the gas into the air making it", "choices": ["space", "unhealthy to breathe"], "answer": 0, "metadata": {"id": "14-239", "split": "train", "negation_rule": "not/because"}}
{"question": "Geese fly south for the winter not because", "choices": ["of instinct", "their following orders"], "answer": 1, "metadata": {"id": "12-99", "split": "train", "negation_rule": "not/because"}}
{"question": "A man grows flowers in the winter using his greenhouse. The flowers blossom there, despite the cold, freezing weather and lack of sunshine, not because", "choices": ["they are regularly chilled", "they are carefully protected"], "answer": 0, "metadata": {"id": "8-372", "split": "dev", "negation_rule": "not/because"}}
{"question": "A person wants to discover how much time they've spent on something, so when they think about data, they don't need to", "choices": ["accumulate it", "lose it"], "answer": 1, "metadata": {"id": "11-360", "split": "train", "negation_rule": "not/do"}}
{"question": "After a week of storms, the nearby lake now doesn't have more", "choices": ["birds", "liquid"], "answer": 0, "metadata": {"id": "10-593", "split": "train", "negation_rule": "not/do"}}
{"question": "In order to play with a beach ball, you do not need to fill it with", "choices": ["a gaseous substance", "with oil"], "answer": 1, "metadata": {"id": "14-752", "split": "train", "negation_rule": "not/do"}}
{"question": "Predators do not eat", "choices": ["humans", "bunnies"], "answer": 0, "metadata": {"id": "880", "split": "test", "negation_rule": "not/do"}}
{"question": "A lack of water doesn't have a direct connection on the amount of available", "choices": ["sustenance", "shelters"], "answer": 1, "metadata": {"id": "10-297", "split": "train", "negation_rule": "not/do"}}
{"question": "plants do not gather their nutrients from the", "choices": ["store", "area under grass"], "answer": 0, "metadata": {"id": "9-55", "split": "train", "negation_rule": "not/do"}}
{"question": "Thermal conduction does not occur when", "choices": ["I leave a log poker in the fire", "I sit down on a bed"], "answer": 1, "metadata": {"id": "8-4", "split": "train", "negation_rule": "not/do"}}
{"question": "Hummingbirds do not contribute to seed dispersal by", "choices": ["eating pizza", "consuming flower sustenance"], "answer": 0, "metadata": {"id": "12-453", "split": "train", "negation_rule": "not/do"}}
{"question": "Bird dogs don't use their nose to find", "choices": ["water foul", "your keys"], "answer": 1, "metadata": {"id": "12-793", "split": "train", "negation_rule": "not/do"}}
{"question": "transplanting seedling oaks doesn't have a positive impact on", "choices": ["the economy", "the environment"], "answer": 0, "metadata": {"id": "9-416", "split": "test", "negation_rule": "not/do"}}
{"question": "Sea horses do not require", "choices": ["the sun", "jockeys"], "answer": 1, "metadata": {"id": "10-869", "split": "train", "negation_rule": "not/do"}}
{"question": "Skittles left in snow do not become", "choices": ["mushy", "hard"], "answer": 0, "metadata": {"id": "13-985", "split": "train", "negation_rule": "not/do"}}
{"question": "If plants are going to grow, their seeds do not need to", "choices": ["travel elsewhere", "be washed"], "answer": 1, "metadata": {"id": "7-856", "split": "train", "negation_rule": "not/do"}}
{"question": "Eyes do not allow humans", "choices": ["detect acrid odors in the air", "to detect when a traffic light changes"], "answer": 0, "metadata": {"id": "8-135", "split": "test", "negation_rule": "not/do"}}
{"question": "During a sandstorm, a bird does not look for a", "choices": ["bush", "worm"], "answer": 1, "metadata": {"id": "325", "split": "train", "negation_rule": "not/do"}}
{"question": "a carpenter ant does not require energy for", "choices": ["patience", "growth"], "answer": 0, "metadata": {"id": "10-379", "split": "train", "negation_rule": "not/do"}}
{"question": "Grow lamps don't provide artificial sun to", "choices": ["succulents", "dogs"], "answer": 1, "metadata": {"id": "12-698", "split": "train", "negation_rule": "not/do"}}
{"question": "adding a direct flame to container of acid doesn't cause a", "choices": ["lot of nothing", "vapor expulsion"], "answer": 0, "metadata": {"id": "8-286", "split": "train", "negation_rule": "not/do"}}
{"question": "Slate probably didn't form", "choices": ["deep within the earth", "on top of a glacier"], "answer": 1, "metadata": {"id": "10-702", "split": "train", "negation_rule": "not/do"}}
{"question": "The skeletal system doesn't protect the", "choices": ["ears", "stomach"], "answer": 0, "metadata": {"id": "12-1188", "split": "train", "negation_rule": "not/do"}}
{"question": "Diverting overflow from a reservoir through pipes does not generate", "choices": ["hydropower", "solar power"], "answer": 1, "metadata": {"id": "10-1084", "split": "train", "negation_rule": "not/do"}}
{"question": "Humans don't grow thinner when they", "choices": ["eat food", "lack food"], "answer": 0, "metadata": {"id": "828", "split": "train", "negation_rule": "not/do"}}
{"question": "The floating arrow on a compass always doesn't point away from the", "choices": ["south", "west"], "answer": 1, "metadata": {"id": "13-613", "split": "train", "negation_rule": "not/do"}}
{"question": "Some fields don't house incredible creatures such as", "choices": ["lions", "large rabbits"], "answer": 0, "metadata": {"id": "7-1083", "split": "train", "negation_rule": "not/do"}}
{"question": "Where various seasons currently take place doesn't depend upon", "choices": ["the globe's turning", "the globe's size"], "answer": 1, "metadata": {"id": "11-705", "split": "train", "negation_rule": "not/do"}}
{"question": "Some people do not have an", "choices": ["snakes for hair", "extra rib"], "answer": 0, "metadata": {"id": "14-1213", "split": "train", "negation_rule": "not/do"}}
{"question": "Birds carrying away fruit doesn't have what kind of impact on the plant", "choices": ["positive", "negative"], "answer": 1, "metadata": {"id": "12-583", "split": "train", "negation_rule": "not/do"}}
{"question": "the moon's surface doesn't contain many", "choices": ["smoothies", "ground bumps"], "answer": 0, "metadata": {"id": "13-575", "split": "train", "negation_rule": "not/do"}}
{"question": "A skin bacterium does not lose its habitat when", "choices": ["you cut off your finger nails", "you eat pepperoni pizza"], "answer": 1, "metadata": {"id": "10-396", "split": "train", "negation_rule": "not/do"}}
{"question": "Japan didn't make Pearl Harbor", "choices": ["boring and empty", "it's victim"], "answer": 0, "metadata": {"id": "13-700", "split": "train", "negation_rule": "not/do"}}
{"question": "After evaporation water does not become", "choices": ["snow", "ice caps"], "answer": 1, "metadata": {"id": "1764", "split": "dev", "negation_rule": "not/do"}}
{"question": "Muscles don't move bones to produce movement like when", "choices": ["arms are resting", "toes are wiggled"], "answer": 0, "metadata": {"id": "7-444", "split": "test", "negation_rule": "not/do"}}
{"question": "In December, someone in England probably does not want to", "choices": ["Wear heavy clothing when outdoors", "Start planting seeds in their garden"], "answer": 1, "metadata": {"id": "13-173", "split": "train", "negation_rule": "not/do"}}
{"question": "If a deer eats a berry plant, the plant does not eat", "choices": ["small bugs that glow", "its self created nutriment"], "answer": 0, "metadata": {"id": "12-851", "split": "train", "negation_rule": "not/do"}}
{"question": "little balls of H2O on the inside of a closed window didn't come from", "choices": ["condensed water", "rain"], "answer": 1, "metadata": {"id": "13-405", "split": "train", "negation_rule": "not/do"}}
{"question": "A woman notices that she is depressed every autumn, and wonders why. A friend suggests to her that perhaps certain changes that take place as seasons move from warm to cold may be having an effect on her. When pressed for an example of these changes, the friend doesn't cite", "choices": ["flowers blooming", "grass turning brown"], "answer": 0, "metadata": {"id": "8-445", "split": "test", "negation_rule": "not/do"}}
{"question": "Water doesn't evaporate less", "choices": ["in a basement", "on a hot street"], "answer": 1, "metadata": {"id": "89", "split": "train", "negation_rule": "not/do"}}
{"question": "the earth's tilt doesn't control the", "choices": ["clocks", "seasons"], "answer": 0, "metadata": {"id": "8-283", "split": "train", "negation_rule": "not/do"}}
{"question": "Relocating a stalled vehicle does not require a lot of", "choices": ["force", "slopes"], "answer": 1, "metadata": {"id": "14-28", "split": "train", "negation_rule": "not/do"}}
{"question": "H2O does not allow for the conduction of", "choices": ["people", "electrical potential"], "answer": 0, "metadata": {"id": "10-100", "split": "train", "negation_rule": "not/do"}}
{"question": "In December in the northern hemisphere you don't need", "choices": ["mittens", "cooling fans"], "answer": 1, "metadata": {"id": "14-159", "split": "train", "negation_rule": "not/do"}}
{"question": "Adding milk to a hot pan does not create", "choices": ["water", "curds"], "answer": 0, "metadata": {"id": "13-49", "split": "train", "negation_rule": "not/do"}}
{"question": "Glaciers do not have", "choices": ["slow, hidden rivers", "emotions"], "answer": 1, "metadata": {"id": "13-1048", "split": "train", "negation_rule": "not/do"}}
{"question": "If a day has passed, so does not have", "choices": ["most of a year", "most of thirty hours"], "answer": 0, "metadata": {"id": "12-421", "split": "train", "negation_rule": "not/do"}}
{"question": "Cameras don't reflect", "choices": ["UV rays", "the stars"], "answer": 1, "metadata": {"id": "10-1166", "split": "train", "negation_rule": "not/do"}}
{"question": "Storms do not lead to", "choices": ["an increase in water temperature", "an uptick in local ponds water level"], "answer": 0, "metadata": {"id": "1578", "split": "dev", "negation_rule": "not/do"}}
{"question": "plant does not require what for photosynthesis", "choices": ["light from our closest star", "the reflection of something shiny"], "answer": 1, "metadata": {"id": "9-472", "split": "dev", "negation_rule": "not/do"}}
{"question": "If a person doesn't want to decrease their risk of experiencing flooding", "choices": ["they would live in a flood plain", "they would live on a mountaintop"], "answer": 0, "metadata": {"id": "7-607", "split": "train", "negation_rule": "not/do"}}
{"question": "a switch does not turn something with a power source on because:", "choices": ["a piece of copper closes the circuit", "the circuit is opened"], "answer": 1, "metadata": {"id": "10-70", "split": "train", "negation_rule": "not/do"}}
{"question": "animals don't learn some behaviors from watching their", "choices": ["trees", "caretakers"], "answer": 0, "metadata": {"id": "13-414", "split": "train", "negation_rule": "not/do"}}
{"question": "Ground does not have", "choices": ["elements", "common understanding"], "answer": 1, "metadata": {"id": "13-938", "split": "train", "negation_rule": "not/do"}}
{"question": "Trees don't take in CO2 from the atmosphere for", "choices": ["fun", "synthesizing food"], "answer": 0, "metadata": {"id": "12-1095", "split": "train", "negation_rule": "not/do"}}
{"question": "a decline in the number of predators often does not lead to", "choices": ["a rise in the number of prey", "a decrease in breeding between prey"], "answer": 1, "metadata": {"id": "14-134", "split": "train", "negation_rule": "not/do"}}
{"question": "The respiratory system doesn't allow the body to", "choices": ["remove oxygen from the blood", "oxygenate blood from the air"], "answer": 0, "metadata": {"id": "7-1039", "split": "dev", "negation_rule": "not/do"}}
{"question": "Pasteurization does not reduce the amount of bacteria in", "choices": ["cheddar cheese", "orange juice"], "answer": 1, "metadata": {"id": "9-634", "split": "dev", "negation_rule": "not/do"}}
{"question": "Thick feathers do not come in handy for birds", "choices": ["that live in warm climates", "that live in frigid climates"], "answer": 0, "metadata": {"id": "7-253", "split": "train", "negation_rule": "not/do"}}
{"question": "A leaf falling from a tree does not mean", "choices": ["I should wear a coat", "I should wear sandals"], "answer": 1, "metadata": {"id": "9-22", "split": "dev", "negation_rule": "not/do"}}
{"question": "Miles above the equator, people from several faiths do not celebrate holidays in", "choices": ["warm months", "cool months"], "answer": 0, "metadata": {"id": "10-120", "split": "train", "negation_rule": "not/do"}}
{"question": "A person wants to dry their clothes for work. They seek out some energy that can be continuously gotten without running out, so they don't dry clothes using", "choices": ["the sun", "the water"], "answer": 1, "metadata": {"id": "11-623", "split": "train", "negation_rule": "not/do"}}
{"question": "Green parts of a life form don't absorb", "choices": ["oxygen", "light"], "answer": 0, "metadata": {"id": "898", "split": "test", "negation_rule": "not/do"}}
{"question": "A farmer wants to plant seeds, but first needs a field with soil. There is a field with pebbles, which don't have potential to become soil after experiencing", "choices": ["time's passage", "gentle singing"], "answer": 1, "metadata": {"id": "11-107", "split": "train", "negation_rule": "not/do"}}
{"question": "all cells do not use cellular respiration to", "choices": ["perform meiosis", "release waste"], "answer": 0, "metadata": {"id": "9-1134", "split": "test", "negation_rule": "not/do"}}
{"question": "Compost, small rocks, and organic material do not make up", "choices": ["land", "air"], "answer": 1, "metadata": {"id": "10-1154", "split": "train", "negation_rule": "not/do"}}
{"question": "Recycling old cars doesn't have a positive impact on", "choices": ["human life span.", "conservation of metal"], "answer": 0, "metadata": {"id": "864", "split": "train", "negation_rule": "not/do"}}
{"question": "Rain doesn't help", "choices": ["communities thrive", "candy"], "answer": 1, "metadata": {"id": "10-473", "split": "train", "negation_rule": "not/do"}}
{"question": "A microscope does not create clarity by", "choices": ["acceleration", "augmentation"], "answer": 0, "metadata": {"id": "12-193", "split": "train", "negation_rule": "not/do"}}
{"question": "Flashlights don't require batteries", "choices": ["to properly illuminate objects", "to meet weight requirements"], "answer": 1, "metadata": {"id": "7-1137", "split": "train", "negation_rule": "not/do"}}
{"question": "Animals don't have more fat", "choices": ["in human homes", "in polar areas"], "answer": 0, "metadata": {"id": "676", "split": "test", "negation_rule": "not/do"}}
{"question": "what doesn't characterize a cycle", "choices": ["a steady recurrence", "none of these"], "answer": 1, "metadata": {"id": "7-178", "split": "train", "negation_rule": "not/do"}}
{"question": "A person wants to collect green slime, so they do not seek out", "choices": ["dry bones", "damp gutters"], "answer": 0, "metadata": {"id": "11-277", "split": "train", "negation_rule": "not/do"}}
{"question": "A rainy environment doesn't result in", "choices": ["more overcast days", "a dry environment"], "answer": 1, "metadata": {"id": "1404", "split": "train", "negation_rule": "not/do"}}
{"question": "Magnifying does not make it easier to see a", "choices": ["whale", "shrimp"], "answer": 0, "metadata": {"id": "8-145", "split": "train", "negation_rule": "not/do"}}
{"question": "Communities don't contain", "choices": ["a diverse selection of living beings", "sparse flora and fauna"], "answer": 1, "metadata": {"id": "8-317", "split": "train", "negation_rule": "not/do"}}
{"question": "Breaking a vase doesn't change its", "choices": ["speed", "shape and mass"], "answer": 0, "metadata": {"id": "9-1189", "split": "train", "negation_rule": "not/do"}}
{"question": "which of these don't need to be present for a tectonic plate movement", "choices": ["a crack in the core", "an ocean with fish"], "answer": 1, "metadata": {"id": "12-911", "split": "train", "negation_rule": "not/do"}}
{"question": "A producer doesn't produce it's own", "choices": ["heartbeat", "nourishment"], "answer": 0, "metadata": {"id": "14-290", "split": "train", "negation_rule": "not/do"}}
{"question": "Rainbows don't need", "choices": ["sun and some drizzle", "leprechauns and pots of gold"], "answer": 1, "metadata": {"id": "1570", "split": "train", "negation_rule": "not/do"}}
{"question": "A tiny sand particle didn't come from", "choices": ["boiling water", "larger mineral chunks"], "answer": 0, "metadata": {"id": "10-466", "split": "train", "negation_rule": "not/do"}}
{"question": "Sycamores don't have the worlds largest", "choices": ["trunk", "friends"], "answer": 1, "metadata": {"id": "14-828", "split": "train", "negation_rule": "not/do"}}
{"question": "Humans do not contribute to environmental pollution", "choices": ["by purchasing products made from recycled products", "by leaving behind refuse on public beaches"], "answer": 0, "metadata": {"id": "1299", "split": "train", "negation_rule": "not/do"}}
{"question": "recycling doesn't have a positive impact on the", "choices": ["surrounding creature homes", "rocks"], "answer": 1, "metadata": {"id": "13-782", "split": "train", "negation_rule": "not/do"}}
{"question": "Squirrels do not stay busy in the autumn", "choices": ["planting flowers", "amassing pecans"], "answer": 0, "metadata": {"id": "9-581", "split": "train", "negation_rule": "not/do"}}
{"question": "Hummingbirds do not take what with them", "choices": ["Pollen", "energy"], "answer": 1, "metadata": {"id": "1302", "split": "train", "negation_rule": "not/do"}}
{"question": "The cell membrane doesn't keep a cell from", "choices": ["running away", "falling apart"], "answer": 0, "metadata": {"id": "9-904", "split": "dev", "negation_rule": "not/do"}}
{"question": "feeders don't attract animals to a", "choices": ["nearby spot", "volcano"], "answer": 1, "metadata": {"id": "13-950", "split": "train", "negation_rule": "not/do"}}
{"question": "Rabbits do not consume", "choices": ["verdant monkeys that swing from the trees", "verdant organisms that grow from the ground"], "answer": 0, "metadata": {"id": "1686", "split": "dev", "negation_rule": "not/do"}}
{"question": "Birds do not reproduce using", "choices": ["eggs", "live birth"], "answer": 1, "metadata": {"id": "851", "split": "dev", "negation_rule": "not/do"}}
{"question": "amphibians don't hatch from", "choices": ["trees", "calcium life pods"], "answer": 0, "metadata": {"id": "13-963", "split": "train", "negation_rule": "not/do"}}
{"question": "When eagles are hunting in a field, some of their nutrients do not come from", "choices": ["rodents", "deer"], "answer": 1, "metadata": {"id": "7-834", "split": "train", "negation_rule": "not/do"}}
{"question": "Marbles in the right light do not make", "choices": ["thee channel change", "rainbows"], "answer": 0, "metadata": {"id": "13-607", "split": "train", "negation_rule": "not/do"}}
{"question": "A satellite does not orbit a", "choices": ["terrestrial body", "ocean"], "answer": 1, "metadata": {"id": "9-436", "split": "test", "negation_rule": "not/do"}}
{"question": "positively do not impact your bodies strength by", "choices": ["singing", "dead-lifting"], "answer": 0, "metadata": {"id": "10-449", "split": "train", "negation_rule": "not/do"}}
{"question": "After extensive logging activity, a forest did not have less", "choices": ["biodiversity", "carbon dioxide"], "answer": 1, "metadata": {"id": "1187", "split": "train", "negation_rule": "not/do"}}
{"question": "Someone doesn't stop living when", "choices": ["They eat disgusting food", "They are without air"], "answer": 0, "metadata": {"id": "13-382", "split": "train", "negation_rule": "not/do"}}
{"question": "A fan does not push air with", "choices": ["rotating flat surface", "straw"], "answer": 1, "metadata": {"id": "10-138", "split": "train", "negation_rule": "not/do"}}
{"question": "Kelp does not have to have provisions to", "choices": ["hibernate", "maintain life"], "answer": 0, "metadata": {"id": "12-1027", "split": "train", "negation_rule": "not/do"}}
{"question": "seasons do not change due to the earth's", "choices": ["degree of angle", "weather"], "answer": 1, "metadata": {"id": "9-21", "split": "train", "negation_rule": "not/do"}}
{"question": "A man wants to use a material in a project that will be nonrenewable. The man doesn't decide to use", "choices": ["grass", "solo cups"], "answer": 0, "metadata": {"id": "9-740", "split": "dev", "negation_rule": "not/do"}}
{"question": "Someone wants their electromagnets to work, but is having difficulty powering them. In order to make them work, they don't need to", "choices": ["run a continuous current", "run around the wire"], "answer": 1, "metadata": {"id": "8-97", "split": "test", "negation_rule": "not/do"}}
{"question": "Compared to an area with farmland, an area with housing developments does not have more", "choices": ["crops", "light pollution"], "answer": 0, "metadata": {"id": "10-581", "split": "train", "negation_rule": "not/do"}}
{"question": "A crowd-source worker wants to track when a certain task drops. They would not", "choices": ["use a notebook", "randomly play tracks"], "answer": 1, "metadata": {"id": "13-1025", "split": "train", "negation_rule": "not/modal"}}
{"question": "A good mixture would not be", "choices": ["water and olive oil", "coffee and almond creamer"], "answer": 0, "metadata": {"id": "13-615", "split": "train", "negation_rule": "not/modal"}}
{"question": "A bass may not make its home", "choices": ["in a liquid", "in a field"], "answer": 1, "metadata": {"id": "10-1107", "split": "train", "negation_rule": "not/modal"}}
{"question": "The cracks in a sidewalk couldn't be caused by", "choices": ["emotions", "Pine"], "answer": 0, "metadata": {"id": "12-321", "split": "train", "negation_rule": "not/modal"}}
{"question": "Trembling muscles spasms in animals can not be caused in party by", "choices": ["temperature in single digits", "being unaware of the temperature"], "answer": 1, "metadata": {"id": "7-940", "split": "train", "negation_rule": "not/modal"}}
{"question": "A person can not inflate a beach ball using", "choices": ["a salt shaker", "organ processed gas"], "answer": 0, "metadata": {"id": "11-362", "split": "train", "negation_rule": "not/modal"}}
{"question": "A person wants to turn on their fan to cool down their room. In order to do this, they won't have to", "choices": ["plug it in", "spin a wire"], "answer": 1, "metadata": {"id": "9-101", "split": "dev", "negation_rule": "not/modal"}}
{"question": "Replacing a natural resource can not be", "choices": ["planting a berry patch", "refilling a lake that evaporated"], "answer": 0, "metadata": {"id": "7-936", "split": "train", "negation_rule": "not/modal"}}
{"question": "A cow will not gain energy from eating", "choices": ["dandelions", "birds"], "answer": 1, "metadata": {"id": "11-587", "split": "train", "negation_rule": "not/modal"}}
{"question": "If a deer is unable to eat regularly, or only eats that which lacks essential minerals, the deer may not", "choices": ["fail to gestate", "experience failing health"], "answer": 0, "metadata": {"id": "7-76", "split": "train", "negation_rule": "not/modal"}}
{"question": "If a person is searching for others in a forest at night, they can't signal quietly to each other by", "choices": ["flicking a lighter", "sleeping quietly"], "answer": 1, "metadata": {"id": "12-263", "split": "train", "negation_rule": "not/modal"}}
{"question": "Which will not take the longest to reach a boiling point", "choices": ["bath tub", "swimming pool"], "answer": 0, "metadata": {"id": "13-860", "split": "train", "negation_rule": "not/modal"}}
{"question": "An anemometer would not get a work out on a", "choices": ["blustery day", "cloudy day"], "answer": 1, "metadata": {"id": "9-455", "split": "dev", "negation_rule": "not/modal"}}
{"question": "A penguin, while a bird, would not avoid living in", "choices": ["a frozen habitat", "a native forest"], "answer": 0, "metadata": {"id": "10-252", "split": "train", "negation_rule": "not/modal"}}
{"question": "An electron microscope can't look at", "choices": ["my common cold", "an elephant"], "answer": 1, "metadata": {"id": "12-1000", "split": "train", "negation_rule": "not/modal"}}
{"question": "If a screwdriver is bought from a high end store known for high quality, it won't most likely end up", "choices": ["with rotting wood this week", "passed down from parent to child"], "answer": 0, "metadata": {"id": "12-863", "split": "train", "negation_rule": "not/modal"}}
{"question": "If I wanted to maintain energy I couldn't", "choices": ["leisure nap", "Jump for hours"], "answer": 1, "metadata": {"id": "13-7", "split": "train", "negation_rule": "not/modal"}}
{"question": "Taking a fingernail and pressing it to salt will not show", "choices": ["it is salty", "it is malleable"], "answer": 0, "metadata": {"id": "7-207", "split": "dev", "negation_rule": "not/modal"}}
{"question": "trees won't grow from", "choices": ["hack berries", "rocks"], "answer": 1, "metadata": {"id": "12-196", "split": "train", "negation_rule": "not/modal"}}
{"question": "Which of the following wouldn't be insulated", "choices": ["a statically charged shirt", "a beehive covered in wax"], "answer": 0, "metadata": {"id": "11-124", "split": "train", "negation_rule": "not/modal"}}
{"question": "A glass of water can't undergo a chemical change by adding", "choices": ["a cup of salt", "a cup of ice"], "answer": 1, "metadata": {"id": "9-429", "split": "test", "negation_rule": "not/modal"}}
{"question": "Dozens in your workplace are sick with the flu. To protect yourself, you might not", "choices": ["Inject yourself with a healthy person's blood", "inject yourself with deactivated elements of the illness"], "answer": 0, "metadata": {"id": "13-538", "split": "train", "negation_rule": "not/modal"}}
{"question": "A flashlight won't need this in order to radiate photons:", "choices": ["electron flow", "acoustic energy"], "answer": 1, "metadata": {"id": "9-893", "split": "test", "negation_rule": "not/modal"}}
{"question": "audible vibrations can't travel freely through", "choices": ["the ground", "nitrogen and oxygen"], "answer": 0, "metadata": {"id": "10-400", "split": "train", "negation_rule": "not/modal"}}
{"question": "If a snail is heated to the point of being burned, the snail won't", "choices": ["be discomforted", "be hungry"], "answer": 1, "metadata": {"id": "7-513", "split": "train", "negation_rule": "not/modal"}}
{"question": "A plastic bag is filled with milk and is placed in a chest. The chest has a device which takes all of the warm air away, so eventually, the milk will not", "choices": ["melt", "be solid"], "answer": 0, "metadata": {"id": "10-1130", "split": "train", "negation_rule": "not/modal"}}
{"question": "Two birds in completely different houses can't discuss something by", "choices": ["vocalizing", "sitting"], "answer": 1, "metadata": {"id": "12-515", "split": "train", "negation_rule": "not/modal"}}
{"question": "If a person blows on another person's arm, then nerves won't", "choices": ["make more nerves in that area", "alert the brain of this"], "answer": 0, "metadata": {"id": "13-332", "split": "train", "negation_rule": "not/modal"}}
{"question": "Putting a cardboard box in a bin instead of the trash can not", "choices": ["reduce the height of landfills", "keep it from the trash"], "answer": 1, "metadata": {"id": "7-950", "split": "train", "negation_rule": "not/modal"}}
{"question": "There are nutrients in dirt, like magnesium, and those nutrients may not be", "choices": ["poisoned", "collected into vegetation"], "answer": 0, "metadata": {"id": "9-423", "split": "train", "negation_rule": "not/modal"}}
{"question": "These wouldn't likely be broken down and recycled", "choices": ["pallets", "waste hydrogen"], "answer": 1, "metadata": {"id": "13-880", "split": "train", "negation_rule": "not/modal"}}
{"question": "Which of these might not use plants for an energy source", "choices": ["toy car", "station wagon"], "answer": 0, "metadata": {"id": "13-609", "split": "train", "negation_rule": "not/modal"}}
{"question": "Sweating will not make your body temperature go", "choices": ["down", "Sideways"], "answer": 1, "metadata": {"id": "12-746", "split": "train", "negation_rule": "not/modal"}}
{"question": "A puppy wakes up and needs to to for a walk. In order to have the ability to do this, he will not require", "choices": ["toys", "lunch"], "answer": 0, "metadata": {"id": "10-825", "split": "train", "negation_rule": "not/modal"}}
{"question": "If a plant is in an environment with a lot of oxygen, and then oxygen levels very slightly drop, the plant won't", "choices": ["calibrate", "understand"], "answer": 1, "metadata": {"id": "12-45", "split": "train", "negation_rule": "not/modal"}}
{"question": "Quartz can't very easily damage", "choices": ["diamonds", "smelted silica"], "answer": 0, "metadata": {"id": "10-803", "split": "train", "negation_rule": "not/modal"}}
{"question": "What can't you find in a forest", "choices": ["remedies", "Hogwarts"], "answer": 1, "metadata": {"id": "9-1159", "split": "dev", "negation_rule": "not/modal"}}
{"question": "A person seeking out natural resources would not start looking", "choices": ["in a spaceship", "in a pond"], "answer": 0, "metadata": {"id": "11-131", "split": "train", "negation_rule": "not/modal"}}
{"question": "If an organism is a living thing, it won't always", "choices": ["respirate", "cry"], "answer": 1, "metadata": {"id": "10-394", "split": "train", "negation_rule": "not/modal"}}
{"question": "Which would not likely be a chemical reaction", "choices": ["play dog", "an ember"], "answer": 0, "metadata": {"id": "12-633", "split": "train", "negation_rule": "not/modal"}}
{"question": "More butterflies will not come as buttercups become more", "choices": ["ripe", "social media friendly"], "answer": 1, "metadata": {"id": "14-619", "split": "train", "negation_rule": "not/modal"}}
{"question": "Omnivores wouldn't dine on", "choices": ["only that which grows from the ground", "leafy greens and steak"], "answer": 0, "metadata": {"id": "12-250", "split": "train", "negation_rule": "not/modal"}}
{"question": "An elephant on the plains and a diamondback in the desert won't receive", "choices": ["different amounts of precipitation", "zero amounts of precipitation"], "answer": 1, "metadata": {"id": "10-734", "split": "train", "negation_rule": "not/modal"}}
{"question": "With the addition of thrusters your forward momentum will not", "choices": ["decrease", "increase"], "answer": 0, "metadata": {"id": "14-709", "split": "train", "negation_rule": "not/modal"}}
{"question": "We might not use our carbon dioxide waste to", "choices": ["feed roses", "feed cats"], "answer": 1, "metadata": {"id": "12-748", "split": "train", "negation_rule": "not/modal"}}
{"question": "If a tree burns down, it can not be made right by", "choices": ["buying a plastic tree", "placing seed in dirt"], "answer": 0, "metadata": {"id": "7-640", "split": "dev", "negation_rule": "not/modal"}}
{"question": "Tectonic expression can't give massive amounts of data to a", "choices": ["seismograph", "lie detector"], "answer": 1, "metadata": {"id": "10-469", "split": "train", "negation_rule": "not/modal"}}
{"question": "A source of heat couldn't be", "choices": ["a snowflake", "holding hands"], "answer": 0, "metadata": {"id": "10-52", "split": "train", "negation_rule": "not/modal"}}
{"question": "An example of an electric insulator could not be", "choices": ["tupperware", "orange juice"], "answer": 1, "metadata": {"id": "14-918", "split": "train", "negation_rule": "not/modal"}}
{"question": "A large source of heat can't be seen in the", "choices": ["cave", "sky"], "answer": 0, "metadata": {"id": "11-44", "split": "train", "negation_rule": "not/modal"}}
{"question": "If a house is built using a raw material, it can not be built with", "choices": ["branches", "Styrofoam"], "answer": 1, "metadata": {"id": "13-61", "split": "train", "negation_rule": "not/modal"}}
{"question": "If a person is running a salad bar and needs to keep the bar cold, and therefore the ice frozen, they might not", "choices": ["melt the ice on a stove", "pour sodium over the ice"], "answer": 0, "metadata": {"id": "13-735", "split": "train", "negation_rule": "not/modal"}}
{"question": "It wouldn't be harder to grow a palm tree in", "choices": ["Idaho", "Arizona"], "answer": 1, "metadata": {"id": "1193", "split": "dev", "negation_rule": "not/modal"}}
{"question": "A herd of deer may not be forced to search for a new home if", "choices": ["more babies are born in the spring", "resources in an area become too few to maintain the herd"], "answer": 0, "metadata": {"id": "7-820", "split": "train", "negation_rule": "not/modal"}}
{"question": "To discover how durable a certain mineral may be, one couldn't", "choices": ["attempt to leave a mark on it", "melt it down and pour"], "answer": 1, "metadata": {"id": "10-877", "split": "train", "negation_rule": "not/modal"}}
{"question": "A landslide may not bring immense problems to", "choices": ["Jupiter", "living regions"], "answer": 0, "metadata": {"id": "12-983", "split": "train", "negation_rule": "not/modal"}}
{"question": "A boy wants to use his Walkman so that he can listen to some music. When he tries to turn it on, it us unable to, and the boy realizes that he won't need", "choices": ["lithium-ion", "heat"], "answer": 1, "metadata": {"id": "8-130", "split": "test", "negation_rule": "not/modal"}}
{"question": "A lake, pond, or stream can't all be used to", "choices": ["make extra food", "collect fluid from"], "answer": 0, "metadata": {"id": "9-615", "split": "dev", "negation_rule": "not/modal"}}
{"question": "You wouldn't use a lever to move a", "choices": ["safe", "feather"], "answer": 1, "metadata": {"id": "12-669", "split": "train", "negation_rule": "not/modal"}}
{"question": "A footprint in a rock may not have been from", "choices": ["new rock formation", "very long ago"], "answer": 0, "metadata": {"id": "7-824", "split": "train", "negation_rule": "not/modal"}}
{"question": "Another source of pollution may not be", "choices": ["throwing things in the ocean", "biking instead of driving the car"], "answer": 1, "metadata": {"id": "10-613", "split": "train", "negation_rule": "not/modal"}}
{"question": "As rabbits in a county die off, foxes won't", "choices": ["eat trees", "do the same"], "answer": 0, "metadata": {"id": "11-61", "split": "train", "negation_rule": "not/modal"}}
{"question": "A deer may be hungry and malnourished. In order to rectify this, the deer may not", "choices": ["consume dandelions", "eat other deer"], "answer": 1, "metadata": {"id": "10-6", "split": "train", "negation_rule": "not/modal"}}
{"question": "A cylinder with lenses can not even make Uranus appear to be", "choices": ["farther", "closer"], "answer": 0, "metadata": {"id": "13-228", "split": "train", "negation_rule": "not/modal"}}
{"question": "During an earthquake, piles of earth can't", "choices": ["shift on top of one another", "pile up on houses"], "answer": 1, "metadata": {"id": "7-641", "split": "train", "negation_rule": "not/modal"}}
{"question": "A device may not locate the northern portion of a forest through", "choices": ["series of attractions", "Fe pulls"], "answer": 0, "metadata": {"id": "7-785", "split": "dev", "negation_rule": "not/modal"}}
{"question": "A celestial body grows a few meters in size every year, and the mass increases as well. After a hundred years, the celestial body won't", "choices": ["have stronger gravity", "have weaker gravity"], "answer": 1, "metadata": {"id": "9-657", "split": "dev", "negation_rule": "not/modal"}}
{"question": "If you fly from Europe to Australia in December, when you arrive you won't most likely want to wear:", "choices": ["heavy coat", "shorts"], "answer": 0, "metadata": {"id": "681", "split": "train", "negation_rule": "not/modal"}}
{"question": "Draining the rain with a rain gutter onto bare ground through a spout won't", "choices": ["make the ground underneath contain less soil", "cause the ground to become very hard"], "answer": 1, "metadata": {"id": "304", "split": "dev", "negation_rule": "not/modal"}}
{"question": "Bringing a stray cat to your home to live will be hard for it at first, but since animals adapt, it won't", "choices": ["fly away", "get acclimated"], "answer": 0, "metadata": {"id": "13-1000", "split": "train", "negation_rule": "not/modal"}}
{"question": "When a lake receives too much rain it won't", "choices": ["swell beyond it's banks", "dry up all together"], "answer": 1, "metadata": {"id": "10-1211", "split": "train", "negation_rule": "not/modal"}}
{"question": "If a thing is going to shock you, you couldn't block the shock best with", "choices": ["a metal plane", "a log cabin"], "answer": 0, "metadata": {"id": "13-137", "split": "train", "negation_rule": "not/modal"}}
{"question": "If a dam is torn down, the beavers won't", "choices": ["relocate", "reconsider"], "answer": 1, "metadata": {"id": "12-798", "split": "train", "negation_rule": "not/modal"}}
{"question": "A radio that takes batteries can't make that energy into", "choices": ["fire", "sound"], "answer": 0, "metadata": {"id": "10-435", "split": "train", "negation_rule": "not/modal"}}
{"question": "A person wanting to protect their crops from insects could not", "choices": ["plant in a greenhouse", "plant in a field"], "answer": 1, "metadata": {"id": "11-221", "split": "train", "negation_rule": "not/modal"}}
{"question": "Plant growth may not be positively affected by", "choices": ["increase in pests", "extra rainfall"], "answer": 0, "metadata": {"id": "1343", "split": "dev", "negation_rule": "not/modal"}}
{"question": "A desert environment can not support", "choices": ["insects", "fish"], "answer": 1, "metadata": {"id": "1624", "split": "train", "negation_rule": "not/modal"}}
{"question": "If a bird is moving through the sky, someone wanting to know the speed wouldn't", "choices": ["look away", "observe quickness"], "answer": 0, "metadata": {"id": "12-622", "split": "train", "negation_rule": "not/modal"}}
{"question": "As the car approaches a hill it won't become harder to", "choices": ["push", "steer"], "answer": 1, "metadata": {"id": "12-107", "split": "train", "negation_rule": "not/modal"}}
{"question": "What animal can't live without oxygen", "choices": ["shark", "Loriciferans"], "answer": 0, "metadata": {"id": "9-798", "split": "dev", "negation_rule": "not/modal"}}
{"question": "Energy won't be expended for", "choices": ["a monkey with a puncture wound to get better", "a flower to lay dormant"], "answer": 1, "metadata": {"id": "11-284", "split": "train", "negation_rule": "not/modal"}}
{"question": "A scale can't measure", "choices": ["thoughts", "guitar picks"], "answer": 0, "metadata": {"id": "12-786", "split": "train", "negation_rule": "not/modal"}}
{"question": "A person can't see", "choices": ["a written message", "a radio recording"], "answer": 1, "metadata": {"id": "7-140", "split": "test", "negation_rule": "not/modal"}}
{"question": "A bicycle may not be used for", "choices": ["cats", "coffee grinding"], "answer": 0, "metadata": {"id": "10-262", "split": "train", "negation_rule": "not/modal"}}
{"question": "Which animal won't hide the best when seeking food", "choices": ["chameleon", "spider"], "answer": 1, "metadata": {"id": "11-684", "split": "train", "negation_rule": "not/modal"}}
{"question": "A flower may not consider its entire point in living to be", "choices": ["propagating the animal kingdom", "spreading its genetic components around"], "answer": 0, "metadata": {"id": "7-750", "split": "train", "negation_rule": "not/modal"}}
{"question": "During the rainy season in a city, the amount of sunlight in the city won't", "choices": ["decrease", "expand"], "answer": 1, "metadata": {"id": "14-389", "split": "train", "negation_rule": "not/modal"}}
{"question": "A person wanting to do something good for the environment won't", "choices": ["throw away plastic containers", "put plastic in special containers"], "answer": 0, "metadata": {"id": "11-538", "split": "train", "negation_rule": "not/modal"}}
{"question": "If you place a piece of paper on a hot object it will not leave a", "choices": ["a singe mark", "a curl"], "answer": 1, "metadata": {"id": "14-349", "split": "train", "negation_rule": "not/modal"}}
{"question": "Shining a light through a diamond can not", "choices": ["make a lot of money", "summon a brilliant wave of color"], "answer": 0, "metadata": {"id": "7-238", "split": "test", "negation_rule": "not/modal"}}
{"question": "If a person is avoiding sugar, they won't stop eating", "choices": ["bread", "meat"], "answer": 1, "metadata": {"id": "12-821", "split": "train", "negation_rule": "not/modal"}}
{"question": "When a lady beetle is grown up, she may not spend time", "choices": ["making friends", "laying a clutch"], "answer": 0, "metadata": {"id": "12-873", "split": "train", "negation_rule": "not/modal"}}
{"question": "A bee may not be vital for", "choices": ["basil", "time travel"], "answer": 1, "metadata": {"id": "12-1123", "split": "train", "negation_rule": "not/modal"}}
{"question": "What might not have a negative impact on a child", "choices": ["loving them", "hitting them"], "answer": 0, "metadata": {"id": "11-281", "split": "train", "negation_rule": "not/modal"}}
{"question": "Telephones will not transfer acoustics using what energy", "choices": ["electron flow", "gamma radiation"], "answer": 1, "metadata": {"id": "9-249", "split": "dev", "negation_rule": "not/modal"}}
{"question": "A woman leaves some meat on the counter, and bacteria begins to quickly grow on the surface. This bacteria may not cause", "choices": ["sticky toffee", "turned food"], "answer": 0, "metadata": {"id": "9-17", "split": "train", "negation_rule": "not/modal"}}
{"question": "An electric car will not have difficulty receiving energy at", "choices": ["a gasoline station", "a power outlet"], "answer": 1, "metadata": {"id": "11-230", "split": "train", "negation_rule": "not/modal"}}
{"question": "A creature may not reproduce during", "choices": ["a staging of hosts", "a stage of maturity"], "answer": 0, "metadata": {"id": "11-141", "split": "train", "negation_rule": "not/modal"}}
{"question": "In the hottest months in the hottest desert, creatures such as birds may not find water to drink", "choices": ["in spiked plants", "in sand"], "answer": 1, "metadata": {"id": "8-493", "split": "test", "negation_rule": "not/modal"}}
{"question": "You can't find ferrous metals in", "choices": ["Wood", "Vehicle scraps"], "answer": 0, "metadata": {"id": "12-478", "split": "train", "negation_rule": "not/modal"}}
{"question": "Which of the following is not true? Wildfires are exacerbated in part due to dangerously low moisture content in light fuels, commonly brought on by", "choices": ["periods of less than usual precipitation", "too many firefighters with McLeods and Pulaskis"], "answer": 1, "metadata": {"id": "12-521", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? In order for an animal to need to hibernate, they must be of the species that", "choices": ["nothing", "instinctively does it"], "answer": 0, "metadata": {"id": "14-49", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? When liquid that was sucked out of the ground by flora moves is moved to the air this is called", "choices": ["transpiration", "hydration"], "answer": 1, "metadata": {"id": "11-232", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. A bear's blubber", "choices": ["is useless and a burden to his health", "enables him to keep his body cozy"], "answer": 0, "metadata": {"id": "9-314", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? Two felled trees, split in twain, with the same number of rings, means they're the same", "choices": ["age", "type of tree"], "answer": 1, "metadata": {"id": "14-308", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? What is it termed when a squirrel is inanimate", "choices": ["emanated", "death"], "answer": 0, "metadata": {"id": "634", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? Webbed feet aid in what", "choices": ["ducks chasing prey underwater", "fish hiding in coral reefs"], "answer": 1, "metadata": {"id": "608", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. A learned behavior", "choices": ["newborn turtles crawling towards the sea", "seals clapping to the delight of an audience"], "answer": 0, "metadata": {"id": "12-1145", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? Microscopes", "choices": ["enhance the size of amoebas for easier viewing", "make magnifying things much more difficult"], "answer": 1, "metadata": {"id": "919", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. while passing Jupiter the", "choices": ["gravitational force weakens", "stronger the gravity"], "answer": 0, "metadata": {"id": "8-44", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. All of the following contain chloroplasts but this", "choices": ["sea anemones", "seaweed"], "answer": 1, "metadata": {"id": "14-883", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? A species that has only 1 living member", "choices": ["should be preserved in a museum", "is on the verge of extinction"], "answer": 0, "metadata": {"id": "7-973", "split": "dev", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? The moon", "choices": ["is devoid of seas", "has a powerful magnetic field"], "answer": 1, "metadata": {"id": "1341", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. Earth is warmed mostly by a large yellow dwarf star that is", "choices": ["dark", "local"], "answer": 0, "metadata": {"id": "11-278", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. Kinetic energy can be found in objects that move, such as", "choices": ["skateboards that are ridden all day", "kids that are sleeping soundly"], "answer": 1, "metadata": {"id": "7-1077", "split": "test", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? the sun transfers solar energy from itself to the Earth through", "choices": ["rocks", "sunradiation"], "answer": 0, "metadata": {"id": "13-957", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? Thermometers", "choices": ["can help you decide how many layers of clothes to wear outside", "can tell you which direction the wind is blowing"], "answer": 1, "metadata": {"id": "822", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. The production of lightbulbs effects the", "choices": ["blood cells", "ocean"], "answer": 0, "metadata": {"id": "10-93", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. in order to better live in its habitat, camels have done one of these", "choices": ["adapted a raised portion on their dorsal side", "adapted long snouts to drink from holes"], "answer": 1, "metadata": {"id": "9-635", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? A rabbit has a litter of bunnies! Most of the babies are white, just like the mother rabbit, but one baby has brown spots, like the father rabbit. The father rabbit", "choices": ["has black on his ears", "passed down inherited characteristics"], "answer": 0, "metadata": {"id": "8-107", "split": "test", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? Gas can fill any container it is given, and liquid", "choices": ["uses what it needs", "is the opposite of variable"], "answer": 1, "metadata": {"id": "7-57", "split": "dev", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. A fallen leaf", "choices": ["will become bright green", "will begin to recycle the nutrients that made up its structure"], "answer": 0, "metadata": {"id": "1215", "split": "test", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. Pit bulls thin their thicker coats by", "choices": ["shedding", "selling"], "answer": 1, "metadata": {"id": "14-1460", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? Vaccines", "choices": ["are only necessary for immuno-comprised people", "help prevent outbreaks of once dormant diseases"], "answer": 0, "metadata": {"id": "1734", "split": "dev", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. A reason there is so much debris and damage during tornadoes is due to rocks that are getting", "choices": ["broken apart", "stolen"], "answer": 1, "metadata": {"id": "12-245", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. An unseen force tugs at celestial bodies giving them", "choices": ["shape", "a trajectory"], "answer": 0, "metadata": {"id": "12-399", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? A lever is used to move objects that are", "choices": ["hefty", "short"], "answer": 1, "metadata": {"id": "9-761", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? An incandescent bulb's filament produces similar light as an LED bulb, but more", "choices": ["conversion", "heat"], "answer": 0, "metadata": {"id": "644", "split": "test", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? In order for a fox to catch a chicken it must", "choices": ["always move exponentially quicker", "swim out to it"], "answer": 1, "metadata": {"id": "10-583", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. How long did it take the Grand Canyon to form? A", "choices": ["few amount of days", "very lengthy amount of time"], "answer": 0, "metadata": {"id": "14-1292", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? When the demand for corn rises", "choices": ["farmers must harvest more corn", "farmers stop planting corn"], "answer": 1, "metadata": {"id": "1295", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? The wheels of a skateboard spin around a", "choices": ["board", "shaft"], "answer": 0, "metadata": {"id": "12-987", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. To be a friend of the environment", "choices": ["buy products that can be reused", "throw aluminum cans in the trash"], "answer": 1, "metadata": {"id": "10-949", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. An object converts electrical energy into sound on a", "choices": ["soft carpet", "iphone"], "answer": 0, "metadata": {"id": "14-590", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? To positively impact the environment", "choices": ["scrap metal from old buildings is processed to be used for new construction", "toss plastic bottles in trash receptacles"], "answer": 1, "metadata": {"id": "8-210", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. chlorophyll", "choices": ["would blend in well in the arctic", "would avoid being pinched on St. Patrick's day"], "answer": 0, "metadata": {"id": "967", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? A horse eats some hay, an apple and a sugar cube, then peacefully roams a field after eating while digesting the meal. During this time", "choices": ["the food is deconstructed", "the horse throws up"], "answer": 1, "metadata": {"id": "8-101", "split": "dev", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. A thing which is a producer in the food chain is most likely to be a", "choices": ["mouse", "clover"], "answer": 0, "metadata": {"id": "14-527", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. Earth rotating on its axis", "choices": ["causes Orion to seemingly change position in the sky", "causes the moon to loss gravitational pull"], "answer": 1, "metadata": {"id": "1201", "split": "dev", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? The everglades where nearly wiped out by", "choices": ["alligators", "builders"], "answer": 0, "metadata": {"id": "13-760", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? To replenish the shade in a city that had been provided by trees that were felled by a storm, you must", "choices": ["introduce replacement timber producers", "grow gills and live on a raft"], "answer": 1, "metadata": {"id": "10-756", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. When geese migrate in the late summer or early autumn, they", "choices": ["prefer to visit florida", "head to less snowy areas"], "answer": 0, "metadata": {"id": "7-1085", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. A boy is lost in a heavily forested area, and the only help he has is a small compass. He knows that his house is to the south of him, but in the direction he is facing, the arrow on the compass is showing that he is currently walking due north. Therefore, the boy", "choices": ["turns around", "turns left"], "answer": 1, "metadata": {"id": "8-474", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. as the year progress from June to November the hours of light per day", "choices": ["increases by a few hours", "decreases by a few hours"], "answer": 0, "metadata": {"id": "9-5", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? A person decides to reproduce with another person, so beforehand they", "choices": ["consider genetic implications", "consider eating dinner"], "answer": 1, "metadata": {"id": "10-992", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. A species' habitat is those places where it can find food, shelter, protection and", "choices": ["rivers to cross", "mates for reproduction"], "answer": 0, "metadata": {"id": "10-655", "split": "train", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. cellular respiration is when energy is produced in a cell by consumption of", "choices": ["nutrients", "water"], "answer": 1, "metadata": {"id": "9-612", "split": "test", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. Cutting down trees in a forest", "choices": ["leads to more habitats for animals", "leads to less habitats for animals"], "answer": 0, "metadata": {"id": "1531", "split": "test", "negation_rule": "prompt"}}
{"question": "Choose the incorrect answer. If birds are singing, the sun is shining, and temps are high, then", "choices": ["luminescence is long", "winter is here"], "answer": 1, "metadata": {"id": "13-429", "split": "train", "negation_rule": "prompt"}}
{"question": "Which of the following is not true? If a thing is going to be relocated with a shove, then", "choices": ["someone is forced to eat crackers", "some exertion is necessary"], "answer": 0, "metadata": {"id": "14-27", "split": "train", "negation_rule": "prompt"}}
{"question": "A creature that is incapable of giving birth to offspring that are living as they exit is the", "choices": ["human", "salamander"], "answer": 1, "metadata": {"id": "14-222", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "two women have a baby, it is unlikely to be", "choices": ["their biological child", "formula fed"], "answer": 0, "metadata": {"id": "10-781", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "two females are incapable of", "choices": ["jog together", "conjuring kin"], "answer": 1, "metadata": {"id": "13-655", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "An unusual use for a flashlight may be", "choices": ["hand warmer", "a fridge"], "answer": 0, "metadata": {"id": "10-698", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "animals are unable to stay in good health without enough", "choices": ["video games", "sustenance"], "answer": 1, "metadata": {"id": "13-278", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "Moles are underground a lot of the time, and since few animals live there, they are unlikely to be", "choices": ["killed by others", "in dirt"], "answer": 0, "metadata": {"id": "13-428", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "Moles are underground a lot of the time, and since few animals live there, they are unlikely to be", "choices": ["in dirt", "killed by others"], "answer": 1, "metadata": {"id": "12-93", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "You are unable to naturally make yourself taller because height is determined by", "choices": ["parents", "Eggshells"], "answer": 0, "metadata": {"id": "14-859", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "The world is starting to use oil less and less because it is unable to", "choices": ["be used in cars", "be used multiple times"], "answer": 1, "metadata": {"id": "14-1234", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "Gasoline is unable to exist without the addition of raw materials such as", "choices": ["fossilized matter", "water"], "answer": 0, "metadata": {"id": "7-1025", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "In the desert, the cactus is a rare source of", "choices": ["shelter", "moisture"], "answer": 1, "metadata": {"id": "7-186", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "A deer eats lots of grass, but the deer is unable to create more food for itself, because in the food chain, the deer is unable to be", "choices": ["a producer", "a manager"], "answer": 0, "metadata": {"id": "9-365", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "chloroplasts are rarely found in", "choices": ["rose petal cells", "root hair cells"], "answer": 1, "metadata": {"id": "10-666", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "Because clouds are what make rain, storms are unlikely to happen when the sky is", "choices": ["clear and cloudless", "murdered"], "answer": 0, "metadata": {"id": "14-285", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "An organism that has an unusual habitat on it's back is", "choices": ["magic", "carrier snails"], "answer": 1, "metadata": {"id": "13-492", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "A ball is tossed to a person who misses it and is unable to catch it so", "choices": ["it falls", "it floats"], "answer": 0, "metadata": {"id": "10-1205", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "A man will most likely be unable to see if he gets lost in", "choices": ["a desert", "a dense forest"], "answer": 1, "metadata": {"id": "14-333", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "Animals are unable to grow or remain healthy without", "choices": ["proper sustenance", "ice"], "answer": 0, "metadata": {"id": "14-1476", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "Plants are unable to grow if they have zero access to", "choices": ["a regular source of saltwater", "needs required for creating chlorophyll"], "answer": 1, "metadata": {"id": "7-270", "split": "test", "negation_rule": "gold/un-in-"}}
{"question": "A person wanting to dry their shoes using a resource that is unlikely to expire could use", "choices": ["a breeze", "a snowbank"], "answer": 0, "metadata": {"id": "11-153", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "Marble is unable to form while lava", "choices": ["cools down", "is still hot"], "answer": 1, "metadata": {"id": "14-692", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "When we are unable to look up and see the sun during the day it is blocked by", "choices": ["water", "rocks"], "answer": 0, "metadata": {"id": "12-1117", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "Some flowers are unable to get enough sunlight because trees hover over them and do what to it", "choices": ["sing to it", "intercept it"], "answer": 1, "metadata": {"id": "13-10", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "This creature eats cheese and is unable to lay eggs", "choices": ["a mouse", "a bunny"], "answer": 0, "metadata": {"id": "14-1253", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "If a kitten is unable to nurse from birth", "choices": ["decide to leave", "it will expire"], "answer": 1, "metadata": {"id": "12-897", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "Gasoline is unable to exist without the addition of raw materials such as", "choices": ["fossilized matter", "air"], "answer": 0, "metadata": {"id": "12-89", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "Plants would be unable to stand if they lacked", "choices": ["the ability to flower nightly", "tiny structures inside the support"], "answer": 1, "metadata": {"id": "14-827", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "Treated water is unlikely to have", "choices": ["harmful contaminants flowing within it", "a clear color throughout"], "answer": 0, "metadata": {"id": "12-1078", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "As far as plants go, considering their growth, it is unlikely that they would do well in", "choices": ["a damp patch of earth", "a basement without windows"], "answer": 1, "metadata": {"id": "7-324", "split": "dev", "negation_rule": "gold/un-in-"}}
{"question": "If a kitten is unable to nurse from birth", "choices": ["it will expire", "it will vomit"], "answer": 0, "metadata": {"id": "7-622", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "A person who is unable to hunt for nourishment may still survive and even thrive if they", "choices": ["harvest human organs", "purchase produce"], "answer": 1, "metadata": {"id": "10-509", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "Hotter blood is rarely found", "choices": ["in horny toads", "in bears"], "answer": 0, "metadata": {"id": "12-953", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "Plants are unable to grow without soil because soil is where the plants get their", "choices": ["candy", "sustenance"], "answer": 1, "metadata": {"id": "12-44", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "join a negative and a positive charge through a rare metal in a gas filled globe is known as", "choices": ["incandescence", "compact florescence"], "answer": 0, "metadata": {"id": "10-933", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "One of Kangaroo's unusual features are", "choices": ["They have horns", "webbed feet"], "answer": 1, "metadata": {"id": "8-366", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "A swordbill is able to drink from long, narrow flowers where other birds are unable to because of", "choices": ["genetic advantage of swordbills", "lack of experience in pollinating"], "answer": 0, "metadata": {"id": "7-393", "split": "dev", "negation_rule": "gold/un-in-"}}
{"question": "A deer is eating in a field, and wants more food. Regardless of how hard the deer tries, the deer is unable to produce", "choices": ["urine", "food for itself"], "answer": 1, "metadata": {"id": "9-853", "split": "test", "negation_rule": "gold/un-in-"}}
{"question": "Animals are just like humans in that if they run out of oxygen, breathing is impossible and", "choices": ["They will perish", "they will type."], "answer": 0, "metadata": {"id": "14-683", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "Hitting a spider web with your hand makes it impossible for a spider to", "choices": ["play music", "eat"], "answer": 1, "metadata": {"id": "12-912", "split": "train", "negation_rule": "gold/un-in-"}}
{"question": "Photosynthesis means plants are unable to", "choices": ["convert sunlight to sand", "make their own food"], "answer": 0, "metadata": {"id": "7-527", "split": "test", "negation_rule": "gold/un-in-"}}
{"question": "Which of the following is unlikely an instinctive behavior?", "choices": ["geese leave colder regions", "a human boy learns to speak French"], "answer": 1, "metadata": {"id": "11-332", "split": "train", "negation_rule": "manual/un-in-"}}
{"question": "Which substance is incapable of dripping?", "choices": ["Oxygen", "Juice"], "answer": 0, "metadata": {"id": "1545", "split": "test", "negation_rule": "manual/un-in-"}}
{"question": "Grey clouds can rarely bring", "choices": ["falling water molecules", "sunlight"], "answer": 1, "metadata": {"id": "7-100", "split": "test", "negation_rule": "manual/un-in-"}}
{"question": "Algae is impossible to be found in", "choices": ["meat", "reservoir"], "answer": 0, "metadata": {"id": "9-393", "split": "test", "negation_rule": "manual/un-in-"}}
{"question": "You can barely experience a change of pressure when", "choices": ["Soaring the skies", "Yelling really loud"], "answer": 1, "metadata": {"id": "9-437", "split": "test", "negation_rule": "manual/un-in-"}}
{"question": "What is unlikely an example of hunting?", "choices": ["humans chewing on boiled animal muscles", "humans gathering animals in a gate"], "answer": 0, "metadata": {"id": "470", "split": "test", "negation_rule": "manual/un-in-"}}
{"question": "Echolocation is incapable of detecting an object's", "choices": ["distance", "temperature"], "answer": 1, "metadata": {"id": "147", "split": "test", "negation_rule": "manual/un-in-"}}
{"question": "Wind can rarely cause", "choices": ["leaves to remain on branches", "dunes at the beach to be depleted"], "answer": 0, "metadata": {"id": "1528", "split": "test", "negation_rule": "manual/un-in-"}}
{"question": "An ice cube placed in sunlight will unlikely", "choices": ["shrink", "grow"], "answer": 1, "metadata": {"id": "7-244", "split": "test", "negation_rule": "manual/un-in-"}}
{"question": "A cooked lobster is scarcely", "choices": ["green", "dead"], "answer": 0, "metadata": {"id": "8-409", "split": "test", "negation_rule": "manual/un-in-"}}
{"question": "Drums is not made of ___?", "choices": ["wood", "steel"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 112}}
{"question": "Horses do not run ___?", "choices": ["hard", "fast"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 29}}
{"question": "Fiddling does not require ___?", "choices": ["practice", "flexibility"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 1}}
{"question": "Smiling does not indicate ___?", "choices": ["wisdom", "happiness"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 23}}
{"question": "Helicoptors cannot ___?", "choices": ["fly", "climb"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 8}}
{"question": "Moths do not have ___?", "choices": ["claws", "wings"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 21}}
{"question": "Cocaine is not ___?", "choices": ["illegal", "common"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 25}}
{"question": "Trash cannot be ___?", "choices": ["dangerous", "recycled"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 90}}
{"question": "Name is not proper ___?", "choices": ["noun", "address"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 60}}
{"question": "Skating does not require ___?", "choices": ["clothing", "coordination"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 4}}
{"question": "Doves cannot ___?", "choices": ["fly", "talk"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 7}}
{"question": "Burlap is not a type of ___?", "choices": ["mattress", "fabric"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 136}}
{"question": "Olives cannot be ___?", "choices": ["eaten", "smoked"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 88}}
{"question": "Bottle cannot be made of ___?", "choices": ["clay", "plastic"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 123}}
{"question": "Crying is not part of ___?", "choices": ["life", "love"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 118}}
{"question": "Success does not require extra ___?", "choices": ["money", "effort"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 38}}
{"question": "A beagle is not a type of ___?", "choices": ["dog", "pigeon"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 142}}
{"question": "Indigo is not a ___?", "choices": ["flower", "color"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 46}}
{"question": "A nutdriver is not a type of ___?", "choices": ["tool", "screw"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 144}}
{"question": "Some stoves are not ___?", "choices": ["plastic", "electric"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 108}}
{"question": "An auk is not a type of ___?", "choices": ["bird", "whale"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 143}}
{"question": "Floriade is not a ___?", "choices": ["forest", "festival"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 64}}
{"question": "Accuracy is not a ___?", "choices": ["virtue", "constant"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 62}}
{"question": "The Crips is not a type of ___?", "choices": ["terrorist", "gang"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 145}}
{"question": "Leafs are not ___?", "choices": ["green", "white"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 31}}
{"question": "A Walkman is not a type of ___?", "choices": ["synthesizer", "radio"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 141}}
{"question": "Cans cannot be ___?", "choices": ["recycled", "locked"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 85}}
{"question": "Fishermen cannot catch ___?", "choices": ["flies", "fish"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 69}}
{"question": "Toothpick is not made of ___?", "choices": ["plastic", "clay"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 116}}
{"question": "LSD is not a ___?", "choices": ["disease", "drug"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 59}}
{"question": "Study is not part of ___?", "choices": ["education", "discipline"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 120}}
{"question": "Lizards do not have a ___?", "choices": ["song", "tail"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 76}}
{"question": "Coconuts cannot be ___?", "choices": ["eaten", "smoked"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 86}}
{"question": "Organisms cannot ___?", "choices": ["escape", "die"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 11}}
{"question": "COBOL is not a ___?", "choices": ["language", "dialect"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 65}}
{"question": "Most animals do not have ___?", "choices": ["wings", "eyes"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 74}}
{"question": "Child does not want ___?", "choices": ["love", "marriage"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 5}}
{"question": "Scamper is not ___?", "choices": ["alive", "dead"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 34}}
{"question": "Some newspapers are not ___?", "choices": ["free", "open"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 105}}
{"question": "Logic cannot ___ you?", "choices": ["kill", "help"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 71}}
{"question": "Sword is not made of ___?", "choices": ["steel", "bone"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 115}}
{"question": "Typing is not for ___?", "choices": ["survival", "fun"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 82}}
{"question": "Percussion instruments is not made of ___?", "choices": ["wood", "clay"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 130}}
{"question": "Kindness is not a ___?", "choices": ["weakness", "virtue"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 61}}
{"question": "Dependability is not a ___?", "choices": ["virtue", "problem"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 45}}
{"question": "Some cupboards is not made of ___?", "choices": ["iron", "wood"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 126}}
{"question": "Synapse is not part of ___?", "choices": ["brain", "metabolism"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 121}}
{"question": "An sword cannot ___?", "choices": ["fly", "kill"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 83}}
{"question": "A duvet cannot be made of ___?", "choices": ["cotton", "wood"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 139}}
{"question": "Tuberculosis is not a ___?", "choices": ["disorder", "disease"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "high_ranked", "subdataset": "ConceptNet.jsonl", "idx": 58}}
{"question": "Mail is not a type of ___?", "choices": ["communication", "convention"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 135}}
{"question": "Skating does not require ___?", "choices": ["tire", "coordination"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 4}}
{"question": "Percussion instruments is not made of ___?", "choices": ["wood", "ions"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 130}}
{"question": "Decisions do not have ___?", "choices": ["toes", "consequences"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 18}}
{"question": "Fiddling does not require ___?", "choices": ["practice", "license"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 1}}
{"question": "Cans cannot be ___?", "choices": ["impressed", "recycled"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 85}}
{"question": "Tire is not ___ wheels?", "choices": ["rubber", "phosphoric"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 36}}
{"question": "Synapse is not part of ___?", "choices": ["nucleus", "brain"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 121}}
{"question": "Sometimes listening does not cause ___?", "choices": ["pain", "butterflies"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 96}}
{"question": "Lizards are not small ___?", "choices": ["magazine", "animals"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 42}}
{"question": "Rats cannot ___?", "choices": ["bite", "sadness"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 13}}
{"question": "Dog does not have ___?", "choices": ["side", "teeth"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 19}}
{"question": "Desks cannot be made of ___?", "choices": ["wood", "scales"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 127}}
{"question": "Acting is not an ___?", "choices": ["parallelogram", "art"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 41}}
{"question": "Crustacean is not a type of ___?", "choices": ["animal", "pub"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 134}}
{"question": "Cyprus is not an ___?", "choices": ["accessory", "island"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 55}}
{"question": "A duvet cannot be made of ___?", "choices": ["cotton", "haemoglobin"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 139}}
{"question": "Birds cannot ___?", "choices": ["barn", "fly"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 6}}
{"question": "Olives cannot be ___?", "choices": ["eaten", "slowly"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 88}}
{"question": "Sometimes skiing does not cause ___?", "choices": ["social", "accidents"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 98}}
{"question": "TNT cannot ___?", "choices": ["explode", "art"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 14}}
{"question": "A banjo is not made of ___?", "choices": ["thoughts", "wood"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 122}}
{"question": "A bubble cannot ___?", "choices": ["burst", "flips"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 67}}
{"question": "A beagle is not a type of ___?", "choices": ["sphenisciform", "dog"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 142}}
{"question": "A beluga is not a type of ___?", "choices": ["whale", "occasion"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 140}}
{"question": "Surprise is not ___ shock?", "choices": ["relax", "like"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 39}}
{"question": "Tuberculosis is not a ___?", "choices": ["disease", "jelous"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 58}}
{"question": "Child does not want ___?", "choices": ["lab", "love"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 5}}
{"question": "Wyoming is not a ___?", "choices": ["state", "box"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 53}}
{"question": "Smiling is not ___?", "choices": ["fog", "good"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 35}}
{"question": "Aluminium cannot be ___?", "choices": ["recycled", "bath"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 84}}
{"question": "Deserts cannot be ___?", "choices": ["moving", "dangerous"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 103}}
{"question": "Crying is not part of ___?", "choices": ["life", "tradition"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 118}}
{"question": "Friction does not produce ___?", "choices": ["hangover", "heat"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 22}}
{"question": "Scamper is not ___?", "choices": ["dead", "cylindrical"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 34}}
{"question": "A submarine is not made of ___?", "choices": ["pr0n", "steel"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 131}}
{"question": "Success does not require extra ___?", "choices": ["effort", "fins"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 38}}
{"question": "Some stoves are not ___?", "choices": ["colorless", "electric"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 108}}
{"question": "Watersking cannot be ___?", "choices": ["dangerous", "barriers"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 110}}
{"question": "Sometimes sunburn does not cause ___?", "choices": ["spatters", "cancer"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 99}}
{"question": "LSD is not a ___?", "choices": ["drug", "bread"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 59}}
{"question": "House is not made of ___?", "choices": ["porcelain", "wood"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 113}}
{"question": "A mine cannot ___?", "choices": ["explode", "skate"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 72}}
{"question": "Zanzibar is not an ___?", "choices": ["dimensional", "island"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 49}}
{"question": "Sometimes lying does not cause ___?", "choices": ["pain", "ankles"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 97}}
{"question": "OCD is not a ___?", "choices": ["bond", "disease"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 44}}
{"question": "Disgust is not an ___?", "choices": ["emotion", "microscopic"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 63}}
{"question": "Information is not a ___?", "choices": ["beauty", "commodity"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 43}}
{"question": "Most animals do not have ___?", "choices": ["eyes", "eyeballs"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 74}}
{"question": "Some newspapers are not ___?", "choices": ["actions", "free"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "low_ranked", "subdataset": "ConceptNet.jsonl", "idx": 105}}
{"question": "Synapse is not part of ___?", "choices": ["brain", "online"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 121}}
{"question": "Organisms cannot ___?", "choices": ["teatro", "die"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 11}}
{"question": "Study is not part of ___?", "choices": ["education", "sourced"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 120}}
{"question": "Information is not a ___?", "choices": ["schwartz", "commodity"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 43}}
{"question": "Drums is not made of ___?", "choices": ["wood", "leaking"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 112}}
{"question": "IBM is not a type of ___?", "choices": ["mechanisms", "computer"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 132}}
{"question": "A Walkman is not a type of ___?", "choices": ["radio", "rangers"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 141}}
{"question": "Dortmund does not have an ___?", "choices": ["wandering", "airport"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 75}}
{"question": "A frisbee cannot ___?", "choices": ["fly", "fiction"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 70}}
{"question": "Leafs are not ___?", "choices": ["bakery", "green"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 31}}
{"question": "Helium is not a ___?", "choices": ["gas", "distributor"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 47}}
{"question": "Some plants are not ___?", "choices": ["disrupted", "edible"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 106}}
{"question": "Ceramic is not made of ___?", "choices": ["clay", "wilkes"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 111}}
{"question": "Kissing is not ___?", "choices": ["finger", "good"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 30}}
{"question": "Elvis is not ___?", "choices": ["dead", "dozens"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 26}}
{"question": "Some bridges is not made of ___?", "choices": ["novelist", "wood"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 124}}
{"question": "Sometimes listening does not cause ___?", "choices": ["pain", "marxist"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 96}}
{"question": "COBOL is not a ___?", "choices": ["empire", "language"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 65}}
{"question": "Zanzibar is not an ___?", "choices": ["island", "carlisle"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 49}}
{"question": "OCD is not a ___?", "choices": ["leading", "disease"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 44}}
{"question": "Rats cannot ___?", "choices": ["bite", "bonaparte"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 13}}
{"question": "Pumpkins cannot be ___?", "choices": ["general", "eaten"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 89}}
{"question": "Percussion instruments is not made of ___?", "choices": ["wood", "temple"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 130}}
{"question": "Deserts cannot be ___?", "choices": ["managers", "dangerous"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 103}}
{"question": "Fairies do not have ___?", "choices": ["wings", "staple"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 20}}
{"question": "Most animals do not have ___?", "choices": ["sports", "eyes"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 74}}
{"question": "Toothpick is not made of ___?", "choices": ["plastic", "clamped"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 116}}
{"question": "Scamper is not ___?", "choices": ["proposes", "dead"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 34}}
{"question": "Dog does not have ___?", "choices": ["teeth", "location"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 19}}
{"question": "Some stoves are not ___?", "choices": ["flagship", "electric"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 108}}
{"question": "Some spiders are not ___?", "choices": ["poisonous", "reluctantly"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 107}}
{"question": "Sometimes dreaming does not cause ___?", "choices": ["ignorance", "nightmares"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 92}}
{"question": "Acting is not an ___?", "choices": ["art", "marred"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 41}}
{"question": "Sometimes urinating does not cause ___?", "choices": ["digest", "pain"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 101}}
{"question": "Sometimes tickling does not cause ___?", "choices": ["pain", "annexation"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 100}}
{"question": "Squash is not a ___?", "choices": ["philips", "sport"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 57}}
{"question": "Robots are not made of ___?", "choices": ["metal", "purchased"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 114}}
{"question": "Hoatzins cannot ___?", "choices": ["competition", "fly"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 9}}
{"question": "Love cannot ___?", "choices": ["hurt", "ibrahim"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 10}}
{"question": "Cormorant is not a ___?", "choices": ["fitzroy", "bird"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 50}}
{"question": "Extortion is not ___?", "choices": ["illegal", "criminals"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 27}}
{"question": "Birds cannot ___?", "choices": ["ulster", "fly"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 6}}
{"question": "Tire is not ___ wheels?", "choices": ["rubber", "culminated"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 36}}
{"question": "Sometimes wrestling does not cause ___?", "choices": ["category", "injuries"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 102}}
{"question": "Skating does not require ___?", "choices": ["coordination", "gibbons"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 4}}
{"question": "Fall is not ___?", "choices": ["fearing", "coming"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 28}}
{"question": "Floriade is not a ___?", "choices": ["festival", "impress"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 64}}
{"question": "A nutdriver is not a type of ___?", "choices": ["multitude", "tool"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 144}}
{"question": "Bottle cannot be made of ___?", "choices": ["plastic", "perfume"], "answer": 1, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 123}}
{"question": "Eel is not ___ snake?", "choices": ["treats", "water"], "answer": 0, "metadata": {"dataset": "ConceptNet", "category": "random", "subdataset": "ConceptNet.jsonl", "idx": 40}}
{"question": "Frane Buli\u0107 did not die in the city of ___?", "choices": ["zagreb", "belgrade"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 39}}
{"question": "Robert Cryan did not die in the city of ___?", "choices": ["glasgow", "dublin"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 58}}
{"question": "Guram Sharadze did not die in the city of ___?", "choices": ["tbilisi", "yerevan"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 8}}
{"question": "Pauline Mills McGibbon did not die in the city of ___?", "choices": ["winnipeg", "toronto"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 74}}
{"question": "Louis Klein did not die in the city of ___?", "choices": ["paris", "berlin"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 32}}
{"question": "Olof Arenius did not die in the city of ___?", "choices": ["gothenburg", "stockholm"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 9}}
{"question": "Abd\u00fclmecid I did not die in the city of ___?", "choices": ["constantinople", "aleppo"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 54}}
{"question": "Jules Quicherat did not die in the city of ___?", "choices": ["lyon", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 25}}
{"question": "Yakir Gueron did not die in the city of ___?", "choices": ["jerusalem", "haifa"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 12}}
{"question": "Enrique Sarasola did not die in the city of ___?", "choices": ["valencia", "madrid"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 50}}
{"question": "Olavi Paavolainen did not die in the city of ___?", "choices": ["helsinki", "tallinn"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 24}}
{"question": "Gabriel Nicolas de la Reynie did not die in the city of ___?", "choices": ["lyon", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 86}}
{"question": "William James Reddin did not die in the city of ___?", "choices": ["london", "toronto"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 64}}
{"question": "Stepan Erzia did not die in the city of ___?", "choices": ["kiev", "moscow"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 30}}
{"question": "Charles Cooper did not die in the city of ___?", "choices": ["london", "philadelphia"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 46}}
{"question": "Robert Zimmermann did not die in the city of ___?", "choices": ["hamburg", "munich"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 26}}
{"question": "Emily Henrietta Hickey did not die in the city of ___?", "choices": ["london", "dublin"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 65}}
{"question": "Johann Ziegler did not die in the city of ___?", "choices": ["augsburg", "vienna"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 53}}
{"question": "G\u00f6sta Krantz did not die in the city of ___?", "choices": ["stockholm", "gothenburg"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 22}}
{"question": "Duncan Ban MacIntyre did not die in the city of ___?", "choices": ["glasgow", "edinburgh"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 72}}
{"question": "Eliezer Waldenberg did not die in the city of ___?", "choices": ["jerusalem", "amsterdam"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 38}}
{"question": "John Ridley did not die in the city of ___?", "choices": ["bristol", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 7}}
{"question": "Sasha Krasny did not die in the city of ___?", "choices": ["moscow", "kiev"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 45}}
{"question": "Jean Andr\u00e9 did not die in the city of ___?", "choices": ["lyon", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 19}}
{"question": "Pericles A. Sakellarios did not die in the city of ___?", "choices": ["athens", "alexandria"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 63}}
{"question": "Walter Richard Cassels did not die in the city of ___?", "choices": ["cambridge", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 76}}
{"question": "Ueda Akinari did not die in the city of ___?", "choices": ["kyoto", "osaka"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 49}}
{"question": "Ibrahim Hananu did not die in the city of ___?", "choices": ["cairo", "aleppo"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 60}}
{"question": "V\u00e1clav Havel did not die in the city of ___?", "choices": ["prague", "bratislava"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 35}}
{"question": "Paul Theodor van Brussel did not die in the city of ___?", "choices": ["utrecht", "amsterdam"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 84}}
{"question": "Elisha Netanyahu did not die in the city of ___?", "choices": ["jerusalem", "haifa"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 21}}
{"question": "Sir Charles Hussey, 1st Baronet did not die in the city of ___?", "choices": ["bristol", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 85}}
{"question": "Antonio Castrejon did not die in the city of ___?", "choices": ["madrid", "toledo"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 56}}
{"question": "Anastas Jovanovi\u0107 did not die in the city of ___?", "choices": ["zagreb", "belgrade"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 3}}
{"question": "Sir James Lowther, 4th Baronet did not die in the city of ___?", "choices": ["london", "edinburgh"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 87}}
{"question": "Gino Penno did not die in the city of ___?", "choices": ["rome", "milan"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 10}}
{"question": "Lucy Faithfull, Baroness Faithfull did not die in the city of ___?", "choices": ["london", "bristol"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 82}}
{"question": "Pepe Soares did not die in the city of ___?", "choices": ["porto", "lisbon"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 34}}
{"question": "James Cannon did not die in the city of ___?", "choices": ["philadelphia", "boston"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 4}}
{"question": "Jos\u00e9 de Cieza did not die in the city of ___?", "choices": ["toledo", "madrid"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 71}}
{"question": "Cheng Yanqiu did not die in the city of ___?", "choices": ["beijing", "nanjing"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 20}}
{"question": "Lotfia Elnadi did not die in the city of ___?", "choices": ["aleppo", "cairo"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 52}}
{"question": "Honor\u00e9 Tourn\u00e9ly did not die in the city of ___?", "choices": ["paris", "lyon"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 0}}
{"question": "Marcel Oopa did not die in the city of ___?", "choices": ["lausanne", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 42}}
{"question": "Livio Agresti did not die in the city of ___?", "choices": ["rome", "florence"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 43}}
{"question": "Jacques Ignatius de Roore did not die in the city of ___?", "choices": ["brussels", "antwerp"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 81}}
{"question": "Jurriaen Andriessen did not die in the city of ___?", "choices": ["amsterdam", "utrecht"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 40}}
{"question": "Adolf Dygasi\u0144ski did not die in the city of ___?", "choices": ["lublin", "warsaw"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 5}}
{"question": "Wincenty Krasi\u0144ski did not die in the city of ___?", "choices": ["warsaw", "lublin"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 51}}
{"question": "Henry Doulton did not die in the city of ___?", "choices": ["philadelphia", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_death.jsonl", "idx": 13}}
{"question": "Mamitu Daska (not born ___)?", "choices": ["1983", "1980"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 1}}
{"question": "Oliver Farnworth (not born ___)?", "choices": ["1982", "1983"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 13}}
{"question": "Jessy Kramer (not born ___)?", "choices": ["1990", "1988"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 12}}
{"question": "Adam Scherr (not born ___)?", "choices": ["1984", "1983"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 10}}
{"question": "Sue Enquist (not born ___)?", "choices": ["1956", "1965"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 6}}
{"question": "Jane Evelyn Atwood (not born ___)?", "choices": ["1951", "1947"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 22}}
{"question": "Jonas Randolph (not born ___)?", "choices": ["1990", "1984"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 8}}
{"question": "John Baxter (not born ___)?", "choices": ["1947", "1951"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 17}}
{"question": "Piero Bernocchi (not born ___)?", "choices": ["1947", "1953"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 9}}
{"question": "Douglas A. Lawson (not born ___)?", "choices": ["1946", "1947"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 23}}
{"question": "Olaf Hajeck (not born ___)?", "choices": ["1965", "1967"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 5}}
{"question": "Menna Fadali (not born ___)?", "choices": ["1984", "1983"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 21}}
{"question": "Stoyan Stefanov (not born ___)?", "choices": ["1983", "1984"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 16}}
{"question": "Rafael Dropuli\u0107 (not born ___)?", "choices": ["1984", "1983"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 2}}
{"question": "Saber Chebana (not born ___)?", "choices": ["1983", "1984"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 18}}
{"question": "David M. Kelley (not born ___)?", "choices": ["1947", "1951"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 24}}
{"question": "Kevin Higgins (not born ___)?", "choices": ["1967", "1965"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 4}}
{"question": "Mark McFadden (not born ___)?", "choices": ["1967", "1965"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 15}}
{"question": "Magdalena Decilio (not born ___)?", "choices": ["1983", "1984"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 3}}
{"question": "Jasmin \u0160\u0107uk (not born ___)?", "choices": ["1984", "1990"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 20}}
{"question": "Tom Hampton (not born ___)?", "choices": ["1965", "1963"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 7}}
{"question": "Ben Howard (not born ___)?", "choices": ["1983", "1988"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 11}}
{"question": "Saurabh Singh (not born ___)?", "choices": ["1990", "1986"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 14}}
{"question": "Steve Lindsey (not born ___)?", "choices": ["1964", "1956"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 0}}
{"question": "Gilles Schnepp (not born ___)?", "choices": ["1958", "1959"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "date_of_birth.jsonl", "idx": 19}}
{"question": "Moses Hagiz was not born in the city of ___?", "choices": ["haifa", "jerusalem"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 140}}
{"question": "Dominique Sanson was not born in the city of ___?", "choices": ["paris", "lyon"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 109}}
{"question": "Franz Rosei was not born in the city of ___?", "choices": ["munich", "vienna"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 152}}
{"question": "Keppel Harcourt Barnard was not born in the city of ___?", "choices": ["london", "bristol"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 366}}
{"question": "Loukas Sideras was not born in the city of ___?", "choices": ["thessaloniki", "athens"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 300}}
{"question": "Graham Doyle was not born in the city of ___?", "choices": ["dublin", "belfast"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 203}}
{"question": "Aldo Franchi was not born in the city of ___?", "choices": ["bologna", "milan"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 26}}
{"question": "Anton Altmann was not born in the city of ___?", "choices": ["vienna", "munich"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 178}}
{"question": "Nerses Yeritsyan was not born in the city of ___?", "choices": ["tbilisi", "yerevan"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 225}}
{"question": "Jaan Arder was not born in the city of ___?", "choices": ["tallinn", "bergen"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 119}}
{"question": "Fenton Johnson was not born in the city of ___?", "choices": ["philadelphia", "chicago"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 251}}
{"question": "Bertrand Lamarche was not born in the city of ___?", "choices": ["paris", "lyon"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 84}}
{"question": "Andr\u00e9 L\u00e9ri was not born in the city of ___?", "choices": ["lyon", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 194}}
{"question": "B\u00f3dog T\u00f6r\u00f6k was not born in the city of ___?", "choices": ["budapest", "vienna"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 157}}
{"question": "Iago Dekanozishvili was not born in the city of ___?", "choices": ["baku", "tbilisi"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 1}}
{"question": "J\u00fcri Reinvere was not born in the city of ___?", "choices": ["tallinn", "helsinki"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 37}}
{"question": "Aleksandar Simi%C4%87 was not born in the city of ___?", "choices": ["zagreb", "belgrade"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 245}}
{"question": "Kazimierz Flatau was not born in the city of ___?", "choices": ["warsaw", "lublin"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 202}}
{"question": "Marilyn Shrude was not born in the city of ___?", "choices": ["detroit", "chicago"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 219}}
{"question": "Charles Nicholas Aub\u00e9 was not born in the city of ___?", "choices": ["paris", "lyon"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 349}}
{"question": "Miglena Markova was not born in the city of ___?", "choices": ["kiev", "sofia"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 95}}
{"question": "Karolina Kosi\u0144ska was not born in the city of ___?", "choices": ["warsaw", "lublin"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 205}}
{"question": "Stefanie van Vliet was not born in the city of ___?", "choices": ["utrecht", "amsterdam"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 321}}
{"question": "Aleksander Kogoj was not born in the city of ___?", "choices": ["ljubljana", "zagreb"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 244}}
{"question": "Yelena Belyakova was not born in the city of ___?", "choices": ["kiev", "moscow"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 80}}
{"question": "Claude Weisz was not born in the city of ___?", "choices": ["paris", "strasbourg"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 144}}
{"question": "Elizabeth Kay was not born in the city of ___?", "choices": ["glasgow", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 302}}
{"question": "Torgeir Micaelsen was not born in the city of ___?", "choices": ["bergen", "oslo"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 189}}
{"question": "Gottfried Heinrich Bach was not born in the city of ___?", "choices": ["nuremberg", "leipzig"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 335}}
{"question": "Arthur Harold Stone was not born in the city of ___?", "choices": ["london", "manchester"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 307}}
{"question": "Alexandre Desgoffe was not born in the city of ___?", "choices": ["lyon", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 177}}
{"question": "Charles Frodsham was not born in the city of ___?", "choices": ["london", "bristol"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 105}}
{"question": "Kees Maks was not born in the city of ___?", "choices": ["rotterdam", "amsterdam"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 86}}
{"question": "Sebastian Dacey was not born in the city of ___?", "choices": ["london", "manchester"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 265}}
{"question": "Ludvig Drescher was not born in the city of ___?", "choices": ["bergen", "copenhagen"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 290}}
{"question": "M\u00fcnir G\u00f6le was not born in the city of ___?", "choices": ["istanbul", "ankara"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 234}}
{"question": "Albertus Jonas Brandt was not born in the city of ___?", "choices": ["utrecht", "amsterdam"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 342}}
{"question": "Luca Bottale was not born in the city of ___?", "choices": ["milan", "bologna"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 242}}
{"question": "Francis Montague Holl was not born in the city of ___?", "choices": ["bristol", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 337}}
{"question": "Witold Nazarewicz was not born in the city of ___?", "choices": ["warsaw", "lviv"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 14}}
{"question": "Ruth Fuller Sasaki was not born in the city of ___?", "choices": ["tokyo", "chicago"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 371}}
{"question": "Galina Fokina was not born in the city of ___?", "choices": ["moscow", "kiev"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 239}}
{"question": "Edgar Sydney Little was not born in the city of ___?", "choices": ["sydney", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 338}}
{"question": "Eero Paloheimo was not born in the city of ___?", "choices": ["helsinki", "tallinn"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 53}}
{"question": "Ketil Hvoslef was not born in the city of ___?", "choices": ["oslo", "bergen"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 13}}
{"question": "M\u00f3nica Estarreado was not born in the city of ___?", "choices": ["madrid", "guadalajara"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 187}}
{"question": "Irina Borogan was not born in the city of ___?", "choices": ["kiev", "moscow"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 243}}
{"question": "Sun Lingfeng was not born in the city of ___?", "choices": ["beijing", "nanjing"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 33}}
{"question": "Micha\u0142 Tober was not born in the city of ___?", "choices": ["lublin", "warsaw"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 71}}
{"question": "John Cameron was not born in the city of ___?", "choices": ["glasgow", "edinburgh"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "high_ranked", "subdataset": "place_of_birth.jsonl", "idx": 301}}
{"question": "Rick Holbrook was not born in the city of ___?", "choices": ["ljubljana", "chicago"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 169}}
{"question": "Robert McCrindle was not born in the city of ___?", "choices": ["glasgow", "slovakia"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 178}}
{"question": "Franz Rosei was not born in the city of ___?", "choices": ["zhao", "vienna"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 148}}
{"question": "B\u00f3dog T\u00f6r\u00f6k was not born in the city of ___?", "choices": ["budapest", "copenhagen"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 152}}
{"question": "Thomas Wright Rudderow was not born in the city of ___?", "choices": ["tulsa", "philadelphia"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 348}}
{"question": "Bahar Movahed Bashiri was not born in the city of ___?", "choices": ["tehran", "shreveport"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 351}}
{"question": "Mohammad Hossein Barkhah was not born in the city of ___?", "choices": ["garfield", "tehran"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 298}}
{"question": "Mila Iskrenova was not born in the city of ___?", "choices": ["sofia", "peel"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 288}}
{"question": "Xavi Vallmaj\u00f3 was not born in the city of ___?", "choices": ["hampton", "barcelona"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 150}}
{"question": "Lucius Verus was not born in the city of ___?", "choices": ["rome", "santiago"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 99}}
{"question": "Alan Littlejohn was not born in the city of ___?", "choices": ["shanghai", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 260}}
{"question": "Bill Barminski was not born in the city of ___?", "choices": ["chicago", "baku"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 142}}
{"question": "J\u00fcri Reinvere was not born in the city of ___?", "choices": ["ottawa", "tallinn"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 37}}
{"question": "Lavrenti Ardaziani was not born in the city of ___?", "choices": ["tbilisi", "weimar"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 273}}
{"question": "Mohammed A. Aldouri was not born in the city of ___?", "choices": ["minneapolis", "baghdad"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 355}}
{"question": "William Charles Brenke was not born in the city of ___?", "choices": ["berlin", "date"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 308}}
{"question": "Niels Bjerrum was not born in the city of ___?", "choices": ["sai", "copenhagen"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 104}}
{"question": "Anton Altmann was not born in the city of ___?", "choices": ["vienna", "fitzroy"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 173}}
{"question": "Warren Spears was not born in the city of ___?", "choices": ["nebraska", "detroit"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 261}}
{"question": "J\u00f6rgen Dafg\u00e5rd was not born in the city of ___?", "choices": ["gothenburg", "lithuania"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 171}}
{"question": "Shahin Afrassiabi was not born in the city of ___?", "choices": ["fulham", "tehran"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 164}}
{"question": "Vlastimil Pt%C3%A1k was not born in the city of ___?", "choices": ["prague", "ankara"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 234}}
{"question": "Jacques d'Agar was not born in the city of ___?", "choices": ["leningrad", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 136}}
{"question": "Yvette Giraud was not born in the city of ___?", "choices": ["paris", "amherst"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 43}}
{"question": "Diarmuid Scully was not born in the city of ___?", "choices": ["brest", "limerick"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 269}}
{"question": "Jules Louis Lewal was not born in the city of ___?", "choices": ["paris", "memphis"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 301}}
{"question": "George Zarkadakis was not born in the city of ___?", "choices": ["liv", "athens"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 280}}
{"question": "Richard Vale was not born in the city of ___?", "choices": ["london", "penang"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 61}}
{"question": "Do\u011fa Bekleriz was not born in the city of ___?", "choices": ["monmouth", "istanbul"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 125}}
{"question": "Jean Gallon was not born in the city of ___?", "choices": ["paris", "memphis"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 131}}
{"question": "William Garnett was not born in the city of ___?", "choices": ["ulster", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 190}}
{"question": "Romain Pelletier was not born in the city of ___?", "choices": ["montreal", "tallinn"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 70}}
{"question": "Witold Nazarewicz was not born in the city of ___?", "choices": ["broadway", "warsaw"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 14}}
{"question": "\u00c9mile L\u00e9vy was not born in the city of ___?", "choices": ["paris", "venice"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 202}}
{"question": "John Baird was not born in the city of ___?", "choices": ["norway", "glasgow"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 19}}
{"question": "Giuseppe de Majo was not born in the city of ___?", "choices": ["naples", "amherst"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 340}}
{"question": "Marcello Abbado was not born in the city of ___?", "choices": ["cambridge", "milan"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 22}}
{"question": "Abel Dimier was not born in the city of ___?", "choices": ["paris", "milwaukee"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 106}}
{"question": "Raymond R. Schumacher was not born in the city of ___?", "choices": ["transylvania", "chicago"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 341}}
{"question": "Pavel \u017d\u00e1\u010dek was not born in the city of ___?", "choices": ["prague", "saga"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 79}}
{"question": "Adolphe Cohn was not born in the city of ___?", "choices": ["fitzroy", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 160}}
{"question": "Antoine Verglas was not born in the city of ___?", "choices": ["paris", "dhaka"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 264}}
{"question": "Mitra Tabrizian was not born in the city of ___?", "choices": ["gaza", "tehran"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 181}}
{"question": "Linnea Johnson was not born in the city of ___?", "choices": ["chicago", "peterborough"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 222}}
{"question": "William Atherton was not born in the city of ___?", "choices": ["arkansas", "glasgow"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 263}}
{"question": "Aleksandar Novakovi\u0107 was not born in the city of ___?", "choices": ["belgrade", "bulgaria"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 35}}
{"question": "Martin Kratochv\u00edl was not born in the city of ___?", "choices": ["dublin", "prague"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 156}}
{"question": "Csaba \u0150ry was not born in the city of ___?", "choices": ["budapest", "ski"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 133}}
{"question": "John Benjamin Henck was not born in the city of ___?", "choices": ["toulouse", "philadelphia"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 357}}
{"question": "Joe Caccia was not born in the city of ___?", "choices": ["naples", "sakura"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_birth.jsonl", "idx": 248}}
{"question": "Gilles Schnepp (not born ___)?", "choices": ["1916", "1958"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 18}}
{"question": "Jonas Randolph (not born ___)?", "choices": ["1990", "1842"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 7}}
{"question": "Jessy Kramer (not born ___)?", "choices": ["1934", "1990"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 11}}
{"question": "John Baxter (not born ___)?", "choices": ["1951", "1909"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 16}}
{"question": "Magdalena Decilio (not born ___)?", "choices": ["1788", "1983"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 2}}
{"question": "Mamitu Daska (not born ___)?", "choices": ["1983", "1929"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 0}}
{"question": "Ben Howard (not born ___)?", "choices": ["1967", "1988"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 10}}
{"question": "Douglas A. Lawson (not born ___)?", "choices": ["1947", "1858"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 22}}
{"question": "Sue Enquist (not born ___)?", "choices": ["2012", "1956"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 5}}
{"question": "Menna Fadali (not born ___)?", "choices": ["1983", "1887"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 20}}
{"question": "Mark McFadden (not born ___)?", "choices": ["1819", "1965"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 14}}
{"question": "Saber Chebana (not born ___)?", "choices": ["1983", "1812"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 17}}
{"question": "Oliver Farnworth (not born ___)?", "choices": ["1870", "1983"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 12}}
{"question": "Jasmin \u0160\u0107uk (not born ___)?", "choices": ["1990", "1881"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 19}}
{"question": "Piero Bernocchi (not born ___)?", "choices": ["1915", "1947"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 8}}
{"question": "Rafael Dropuli\u0107 (not born ___)?", "choices": ["1983", "1937"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 1}}
{"question": "Jane Evelyn Atwood (not born ___)?", "choices": ["1872", "1947"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 21}}
{"question": "Olaf Hajeck (not born ___)?", "choices": ["1965", "1999"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 4}}
{"question": "Adam Scherr (not born ___)?", "choices": ["1720", "1983"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 9}}
{"question": "Stoyan Stefanov (not born ___)?", "choices": ["1983", "1796"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 15}}
{"question": "Kevin Higgins (not born ___)?", "choices": ["1842", "1967"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 3}}
{"question": "Tom Hampton (not born ___)?", "choices": ["1965", "1998"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 6}}
{"question": "David M. Kelley (not born ___)?", "choices": ["1893", "1951"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 23}}
{"question": "Saurabh Singh (not born ___)?", "choices": ["1990", "1796"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "date_of_birth.jsonl", "idx": 13}}
{"question": "Adolf Dygasi\u0144ski did not die in the city of ___?", "choices": ["madagascar", "warsaw"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 5}}
{"question": "Helvi Leivisk\u00e4 did not die in the city of ___?", "choices": ["helsinki", "fairfax"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 47}}
{"question": "Guram Sharadze did not die in the city of ___?", "choices": ["salem", "tbilisi"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 8}}
{"question": "Gabriel Nicolas de la Reynie did not die in the city of ___?", "choices": ["paris", "florida"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 83}}
{"question": "Abd\u00fclmecid I did not die in the city of ___?", "choices": ["sheridan", "constantinople"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 52}}
{"question": "Sir James Lowther, 4th Baronet did not die in the city of ___?", "choices": ["london", "como"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 84}}
{"question": "Edward Burd Hubley did not die in the city of ___?", "choices": ["salford", "philadelphia"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 77}}
{"question": "Olof Arenius did not die in the city of ___?", "choices": ["stockholm", "seville"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 9}}
{"question": "Jurriaen Andriessen did not die in the city of ___?", "choices": ["lucius", "amsterdam"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 40}}
{"question": "Elliott Cresson did not die in the city of ___?", "choices": ["philadelphia", "rotterdam"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 29}}
{"question": "Jules Quicherat did not die in the city of ___?", "choices": ["lublin", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 25}}
{"question": "Sasha Krasny did not die in the city of ___?", "choices": ["moscow", "denton"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 44}}
{"question": "W. H. Jude did not die in the city of ___?", "choices": ["tottenham", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 66}}
{"question": "Ueda Akinari did not die in the city of ___?", "choices": ["kyoto", "kenya"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 48}}
{"question": "Emily Henrietta Hickey did not die in the city of ___?", "choices": ["vilnius", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 63}}
{"question": "Antoni Piotrowski did not die in the city of ___?", "choices": ["warsaw", "suzuki"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 6}}
{"question": "Anastas Jovanovi\u0107 did not die in the city of ___?", "choices": ["luxembourg", "belgrade"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 3}}
{"question": "James Graham did not die in the city of ___?", "choices": ["edinburgh", "cornish"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 57}}
{"question": "Gino Penno did not die in the city of ___?", "choices": ["lyons", "milan"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 10}}
{"question": "Marian Porwit did not die in the city of ___?", "choices": ["warsaw", "chester"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 37}}
{"question": "Antonio Castrejon did not die in the city of ___?", "choices": ["tottenham", "madrid"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 54}}
{"question": "Stanis\u0142aw Grzesiuk did not die in the city of ___?", "choices": ["warsaw", "easton"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 43}}
{"question": "Nicolaes de Bruyn did not die in the city of ___?", "choices": ["brook", "amsterdam"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 78}}
{"question": "Murilo Mendes did not die in the city of ___?", "choices": ["lisbon", "coventry"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 31}}
{"question": "Duncan Ban MacIntyre did not die in the city of ___?", "choices": ["troy", "edinburgh"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 70}}
{"question": "Jean-Baptiste Robert Lindet did not die in the city of ___?", "choices": ["paris", "elgin"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 71}}
{"question": "Marcel Oopa did not die in the city of ___?", "choices": ["oxford", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 41}}
{"question": "Andr\u00e9 Chamson did not die in the city of ___?", "choices": ["paris", "raleigh"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 15}}
{"question": "Era Bell Thompson did not die in the city of ___?", "choices": ["alabama", "chicago"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 73}}
{"question": "Wincenty Krasi\u0144ski did not die in the city of ___?", "choices": ["warsaw", "geneva"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 50}}
{"question": "Varvara Massalitinova did not die in the city of ___?", "choices": ["monaco", "moscow"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 1}}
{"question": "Paul Theodor van Brussel did not die in the city of ___?", "choices": ["amsterdam", "kilkenny"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 81}}
{"question": "G\u00f6sta Krantz did not die in the city of ___?", "choices": ["ankara", "stockholm"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 22}}
{"question": "Nikolay Alexandrovich Milyutin did not die in the city of ___?", "choices": ["moscow", "dortmund"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 65}}
{"question": "Toros Toramanian did not die in the city of ___?", "choices": ["bahrain", "yerevan"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 23}}
{"question": "Robert Zimmermann did not die in the city of ___?", "choices": ["munich", "akira"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 26}}
{"question": "Domenico Passignano did not die in the city of ___?", "choices": ["buckinghamshire", "florence"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 11}}
{"question": "James Cannon did not die in the city of ___?", "choices": ["philadelphia", "rochester"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 4}}
{"question": "Mary Balfour Herbert did not die in the city of ___?", "choices": ["best", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 76}}
{"question": "John Roland Abbey did not die in the city of ___?", "choices": ["london", "memphis"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 64}}
{"question": "Henry Doulton did not die in the city of ___?", "choices": ["gujarat", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 13}}
{"question": "Yakir Gueron did not die in the city of ___?", "choices": ["jerusalem", "nebraska"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 12}}
{"question": "Eliezer Waldenberg did not die in the city of ___?", "choices": ["afghanistan", "jerusalem"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 38}}
{"question": "Frane Buli\u0107 did not die in the city of ___?", "choices": ["zagreb", "chatham"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 39}}
{"question": "V\u00e1clav Havel did not die in the city of ___?", "choices": ["erie", "prague"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 35}}
{"question": "William James Reddin did not die in the city of ___?", "choices": ["london", "berlin"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 62}}
{"question": "Louis Klein did not die in the city of ___?", "choices": ["peru", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 32}}
{"question": "Sir Charles Hussey, 1st Baronet did not die in the city of ___?", "choices": ["london", "grimsby"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 82}}
{"question": "Frank Lawler did not die in the city of ___?", "choices": ["kashmir", "chicago"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 16}}
{"question": "John Robert Godley did not die in the city of ___?", "choices": ["london", "vermont"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "low_ranked", "subdataset": "place_of_death.jsonl", "idx": 68}}
{"question": "Gilles Schnepp (not born ___)?", "choices": ["thighs", "1958"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 19}}
{"question": "Saurabh Singh (not born ___)?", "choices": ["1990", "needed"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 14}}
{"question": "Ben Howard (not born ___)?", "choices": ["healthy", "1988"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 11}}
{"question": "David M. Kelley (not born ___)?", "choices": ["1951", "concludes"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 24}}
{"question": "Jane Evelyn Atwood (not born ___)?", "choices": ["fellows", "1947"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 22}}
{"question": "Piero Bernocchi (not born ___)?", "choices": ["1947", "looking"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 9}}
{"question": "Jessy Kramer (not born ___)?", "choices": ["search", "1990"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 12}}
{"question": "Oliver Farnworth (not born ___)?", "choices": ["1983", "cherry"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 13}}
{"question": "Jasmin \u0160\u0107uk (not born ___)?", "choices": ["despair", "1990"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 20}}
{"question": "Tom Hampton (not born ___)?", "choices": ["1965", "murder"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 7}}
{"question": "Kevin Higgins (not born ___)?", "choices": ["relief", "1967"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 4}}
{"question": "Steve Lindsey (not born ___)?", "choices": ["1956", "engines"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 0}}
{"question": "Olaf Hajeck (not born ___)?", "choices": ["dictator", "1965"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 5}}
{"question": "Menna Fadali (not born ___)?", "choices": ["1983", "target"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 21}}
{"question": "Douglas A. Lawson (not born ___)?", "choices": ["localities", "1947"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 23}}
{"question": "Mamitu Daska (not born ___)?", "choices": ["1983", "tasting"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 1}}
{"question": "Jonas Randolph (not born ___)?", "choices": ["altitude", "1990"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 8}}
{"question": "John Baxter (not born ___)?", "choices": ["1951", "heroine"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 17}}
{"question": "Sue Enquist (not born ___)?", "choices": ["fascist", "1956"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 6}}
{"question": "Stoyan Stefanov (not born ___)?", "choices": ["1983", "reflections"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 16}}
{"question": "Adam Scherr (not born ___)?", "choices": ["assured", "1983"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 10}}
{"question": "Rafael Dropuli\u0107 (not born ___)?", "choices": ["1983", "frequent"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 2}}
{"question": "Magdalena Decilio (not born ___)?", "choices": ["career", "1983"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 3}}
{"question": "Mark McFadden (not born ___)?", "choices": ["1965", "administration"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 15}}
{"question": "Saber Chebana (not born ___)?", "choices": ["compact", "1983"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "date_of_birth.jsonl", "idx": 18}}
{"question": "Nasos Thanopoulos was not born in the city of ___?", "choices": ["athens", "liberal"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 149}}
{"question": "Drago\u0219 Neagu was not born in the city of ___?", "choices": ["agenda", "bucharest"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 185}}
{"question": "Jacques d'Agar was not born in the city of ___?", "choices": ["paris", "lowered"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 139}}
{"question": "Moritz Wilhelm Drobisch was not born in the city of ___?", "choices": ["inheritance", "leipzig"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 364}}
{"question": "H\u00e9l\u00e8ne Carr\u00e8re d'Encausse was not born in the city of ___?", "choices": ["paris", "stalin"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 355}}
{"question": "Charles Amos Cummings was not born in the city of ___?", "choices": ["distinguished", "boston"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 329}}
{"question": "Algernon Methuen was not born in the city of ___?", "choices": ["london", "college"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 90}}
{"question": "Oscar Bianchi was not born in the city of ___?", "choices": ["giants", "milan"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 233}}
{"question": "Kees Maks was not born in the city of ___?", "choices": ["amsterdam", "meyrick"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 86}}
{"question": "Iago Dekanozishvili was not born in the city of ___?", "choices": ["rehabilitation", "tbilisi"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 1}}
{"question": "Alison Waters was not born in the city of ___?", "choices": ["london", "evaluation"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 278}}
{"question": "Constant Ferdinand Burille was not born in the city of ___?", "choices": ["cairns", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 356}}
{"question": "Alireza Sheikhattar was not born in the city of ___?", "choices": ["tehran", "colton"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 209}}
{"question": "Hugues Krafft was not born in the city of ___?", "choices": ["connecting", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 122}}
{"question": "Alan Thomson was not born in the city of ___?", "choices": ["glasgow", "tensor"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 98}}
{"question": "Mika Salmi was not born in the city of ___?", "choices": ["ensuing", "helsinki"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 227}}
{"question": "Florent Fid\u00e8le Constant Bourgeois was not born in the city of ___?", "choices": ["paris", "heavier"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 372}}
{"question": "No\u00ebl Gallon was not born in the city of ___?", "choices": ["founding", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 89}}
{"question": "Richard Corbould was not born in the city of ___?", "choices": ["london", "characteristics"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 181}}
{"question": "Marie Nicolas Sylvestre Guillon was not born in the city of ___?", "choices": ["warmly", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 379}}
{"question": "Loukas Sideras was not born in the city of ___?", "choices": ["athens", "southernmost"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 300}}
{"question": "Orhan Demir was not born in the city of ___?", "choices": ["empress", "istanbul"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 271}}
{"question": "Ernest Breton was not born in the city of ___?", "choices": ["paris", "commissioner"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 248}}
{"question": "Mohammad Hossein Barkhah was not born in the city of ___?", "choices": ["artemis", "tehran"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 306}}
{"question": "Pietro Fancelli was not born in the city of ___?", "choices": ["bologna", "spreads"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 246}}
{"question": "Aleksandar Simi%C4%87 was not born in the city of ___?", "choices": ["literature", "belgrade"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 245}}
{"question": "Elie Rekhess was not born in the city of ___?", "choices": ["haifa", "specifically"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 263}}
{"question": "Theophilus de Garenci\u00e8res was not born in the city of ___?", "choices": ["expressive", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 370}}
{"question": "Pierre Lecomte du No\u00fcy was not born in the city of ___?", "choices": ["paris", "pillow"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 373}}
{"question": "Karl Friedrich von Kl\u00f6den was not born in the city of ___?", "choices": ["documentary", "berlin"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 376}}
{"question": "Boris Grushin was not born in the city of ___?", "choices": ["moscow", "couples"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 190}}
{"question": "William Charles Brenke was not born in the city of ___?", "choices": ["disputed", "berlin"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 316}}
{"question": "Hanna O\u017cogowska was not born in the city of ___?", "choices": ["warsaw", "hesitate"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 52}}
{"question": "Mohammed A. Aldouri was not born in the city of ___?", "choices": ["catastrophic", "baghdad"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 365}}
{"question": "Iraj Kalantari Taleghani was not born in the city of ___?", "choices": ["tehran", "printer"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 345}}
{"question": "Antoine Verglas was not born in the city of ___?", "choices": ["wrought", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 270}}
{"question": "Karolina Kosi\u0144ska was not born in the city of ___?", "choices": ["warsaw", "charcoal"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 205}}
{"question": "Mila Iskrenova was not born in the city of ___?", "choices": ["previously", "sofia"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 296}}
{"question": "Rudolf K\u0159es\u0165an was not born in the city of ___?", "choices": ["prague", "shortly"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 65}}
{"question": "Georges Hugon was not born in the city of ___?", "choices": ["travelers", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 54}}
{"question": "Vlastimil Pt%C3%A1k was not born in the city of ___?", "choices": ["prague", "crucial"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 240}}
{"question": "Lawrence Walford was not born in the city of ___?", "choices": ["parting", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 249}}
{"question": "Andrei Soldatov was not born in the city of ___?", "choices": ["moscow", "israeli"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 49}}
{"question": "Lavrenti Ardaziani was not born in the city of ___?", "choices": ["strategic", "tbilisi"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 279}}
{"question": "Gord Simpson was not born in the city of ___?", "choices": ["winnipeg", "downstairs"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 285}}
{"question": "Andrea M\u00e1tay was not born in the city of ___?", "choices": ["wooden", "budapest"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 67}}
{"question": "Gabriel Bertrand was not born in the city of ___?", "choices": ["paris", "consistent"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 131}}
{"question": "Fiachna %C3%93 Braon%C3%A1in was not born in the city of ___?", "choices": ["obviously", "dublin"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 357}}
{"question": "Saad Salman was not born in the city of ___?", "choices": ["baghdad", "children"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 36}}
{"question": "Robert Lecou was not born in the city of ___?", "choices": ["recommended", "paris"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_birth.jsonl", "idx": 171}}
{"question": "Enrique Sarasola did not die in the city of ___?", "choices": ["madrid", "escapes"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 50}}
{"question": "Marian Porwit did not die in the city of ___?", "choices": ["sharply", "warsaw"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 37}}
{"question": "John Roland Abbey did not die in the city of ___?", "choices": ["london", "century"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 66}}
{"question": "Sasha Krasny did not die in the city of ___?", "choices": ["tobacco", "moscow"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 45}}
{"question": "Wincenty Krasi\u0144ski did not die in the city of ___?", "choices": ["warsaw", "chancellor"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 51}}
{"question": "John Robert Godley did not die in the city of ___?", "choices": ["snarled", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 70}}
{"question": "Olavi Paavolainen did not die in the city of ___?", "choices": ["helsinki", "organization"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 24}}
{"question": "Benjamin Paul Akers did not die in the city of ___?", "choices": ["politely", "philadelphia"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 77}}
{"question": "Ibrahim Hananu did not die in the city of ___?", "choices": ["aleppo", "frenzy"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 60}}
{"question": "James Graham did not die in the city of ___?", "choices": ["anthony", "edinburgh"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 59}}
{"question": "Jurriaen Andriessen did not die in the city of ___?", "choices": ["amsterdam", "conceded"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 40}}
{"question": "Antonio Castrejon did not die in the city of ___?", "choices": ["directed", "madrid"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 56}}
{"question": "Nikolay Alexandrovich Milyutin did not die in the city of ___?", "choices": ["moscow", "guillaume"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 67}}
{"question": "Henry Doulton did not die in the city of ___?", "choices": ["natasha", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 13}}
{"question": "Charles William King did not die in the city of ___?", "choices": ["london", "kisses"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 69}}
{"question": "Mary Balfour Herbert did not die in the city of ___?", "choices": ["children", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 78}}
{"question": "Gino Penno did not die in the city of ___?", "choices": ["milan", "musicians"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 10}}
{"question": "Olof Arenius did not die in the city of ___?", "choices": ["conjecture", "stockholm"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 9}}
{"question": "Jules Quicherat did not die in the city of ___?", "choices": ["paris", "palestinian"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 25}}
{"question": "G\u00f6sta Krantz did not die in the city of ___?", "choices": ["quarterfinals", "stockholm"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 22}}
{"question": "Marcel Oopa did not die in the city of ___?", "choices": ["paris", "drivers"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 42}}
{"question": "W. H. Jude did not die in the city of ___?", "choices": ["blanket", "london"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 68}}
{"question": "Helvi Leivisk\u00e4 did not die in the city of ___?", "choices": ["helsinki", "necessarily"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 48}}
{"question": "Pepe Soares did not die in the city of ___?", "choices": ["soldier", "lisbon"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 34}}
{"question": "Jean-Baptiste Robert Lindet did not die in the city of ___?", "choices": ["paris", "excessive"], "answer": 1, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 73}}
{"question": "Frank Lawler did not die in the city of ___?", "choices": ["evidently", "chicago"], "answer": 0, "metadata": {"dataset": "GoogleRE", "category": "random", "subdataset": "place_of_death.jsonl", "idx": 16}}