forked from huggingface/transformers
-
Notifications
You must be signed in to change notification settings - Fork 1
/
WSC_switched_label.json
3005 lines (3005 loc) · 115 KB
/
WSC_switched_label.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"index": 0,
"is_switchable": 0,
"sentence": "The city councilmen refused the demonstrators a permit because [they] feared violence.",
"answer1": "The demonstrators",
"answer0": "The city councilmen",
"sentence_switched": "The demonstrators refused the city councilmen a permit because [they] feared violence.",
"correct_answer": "The city councilmen",
"relational_word": "none",
"is_associative": 0
},
{
"index": 1,
"is_switchable": 0,
"sentence": "The city councilmen refused the demonstrators a permit because [they] advocated violence.",
"answer1": "The demonstrators",
"answer0": "The city councilmen",
"sentence_switched": "The demonstrators refused the city councilmen a permit because [they] advocated violence.",
"correct_answer": "The demonstrators",
"relational_word": "none",
"is_associative": 0
},
{
"index": 2,
"is_switchable": 0,
"sentence": "The trophy doesn't fit into the brown suitcase because [it] is too large.",
"answer1": "the suitcase",
"answer0": "the trophy",
"sentence_switched": "The suitcase doesn't fit into the brown trophy because [it] is too large.",
"correct_answer": "the trophy",
"relational_word": "fit into:large/small",
"is_associative": 0
},
{
"index": 3,
"is_switchable": 0,
"sentence": "The trophy doesn't fit into the brown suitcase because [it] is too small.",
"answer1": "the suitcase",
"answer0": "the trophy",
"sentence_switched": "The suitcase doesn't fit into the brown trophy because [it] is too small.",
"correct_answer": "the suitcase",
"relational_word": "fit into:large/small",
"is_associative": 0
},
{
"index": 4,
"is_switchable": 1,
"sentence": "Joan made sure to thank Susan for all the help [she] had recieved.",
"answer1": "Susan",
"answer0": "Joan",
"sentence_switched": "Susan made sure to thank joan for all the help [she] had recieved.",
"correct_answer": "Joan",
"relational_word": "thank:receive/give",
"is_associative": 0
},
{
"index": 5,
"is_switchable": 1,
"sentence": "Joan made sure to thank Susan for all the help [she] had given.",
"answer1": "Susan",
"answer0": "Joan",
"sentence_switched": "Susan made sure to thank joan for all the help [she] had given.",
"correct_answer": "Susan",
"relational_word": "thank:receive/give",
"is_associative": 0
},
{
"index": 6,
"is_switchable": 1,
"sentence": "Paul tried to call George on the phone, but [he] wasn't successful.",
"answer1": "George",
"answer0": "Paul",
"sentence_switched": "George tried to call paul on the phone, but [he] wasn't successful.",
"correct_answer": "Paul",
"relational_word": "call:successful available",
"is_associative": 0
},
{
"index": 7,
"is_switchable": 1,
"sentence": "Paul tried to call George on the phone, but [he] wasn't available.",
"answer1": "George",
"answer0": "Paul",
"sentence_switched": "George tried to call paul on the phone, but [he] wasn't available.",
"correct_answer": "George",
"relational_word": "call:successful available",
"is_associative": 0
},
{
"index": 8,
"is_switchable": 0,
"sentence": "The lawyer asked the witness a question, but [he] was reluctant to repeat it.",
"answer1": "the witness",
"answer0": "the lawyer",
"sentence_switched": "The witness asked the lawyer a question, but [he] was reluctant to repeat it.",
"correct_answer": "the lawyer",
"relational_word": "ask:repeat answer",
"is_associative": 0
},
{
"index": 9,
"is_switchable": 0,
"sentence": "The lawyer asked the witness a question, but [he] was reluctant to answer it.",
"answer1": "the witness",
"answer0": "the lawyer",
"sentence_switched": "The witness asked the lawyer a question, but [he] was reluctant to answer it.",
"correct_answer": "the witness",
"relational_word": "ask:repeat answer",
"is_associative": 0
},
{
"index": 10,
"is_switchable": 1,
"sentence": "The delivery truck zoomed by the school bus because [it] was going so fast.",
"answer1": "the school bus",
"answer0": "the delivery truck",
"sentence_switched": "The school bus zoomed by the delivery truck because [it] was going so fast.",
"correct_answer": "the delivery truck",
"relational_word": "zoom by:fast/slow",
"is_associative": 0
},
{
"index": 11,
"is_switchable": 1,
"sentence": "The delivery truck zoomed by the school bus because [it] was going so slow.",
"answer1": "the school bus",
"answer0": "the delivery truck",
"sentence_switched": "The school bus zoomed by the delivery truck because [it] was going so slow.",
"correct_answer": "the school bus",
"relational_word": "zoom by:fast/slow",
"is_associative": 0
},
{
"index": 12,
"is_switchable": 1,
"sentence": "Frank felt vindicated when his longtime rival Bill revealed that [he] was the winner of the competition.",
"answer1": "Bill",
"answer0": "Frank",
"sentence_switched": "Bill felt vindicated when his longtime rival frank revealed that [he] was the winner of the competition.",
"correct_answer": "Frank",
"relational_word": "vindicated/crushed:be the winner",
"is_associative": 0
},
{
"index": 13,
"is_switchable": 1,
"sentence": "Frank felt crushed when his longtime rival Bill revealed that [he] was the winner of the competition.",
"answer1": "Bill",
"answer0": "Frank",
"sentence_switched": "Bill felt crushed when his longtime rival frank revealed that [he] was the winner of the competition.",
"correct_answer": "Bill",
"relational_word": "vindicated/crushed:be the winner",
"is_associative": 0
},
{
"index": 14,
"is_switchable": 1,
"sentence": "The man couldn't lift his son because [he] was so weak.",
"answer1": "The son",
"answer0": "The man",
"sentence_switched": "The son couldn't lift the man because [he] was so weak.",
"correct_answer": "The man",
"relational_word": "lift:weak heavy",
"is_associative": 0
},
{
"index": 15,
"is_switchable": 1,
"sentence": "The man couldn't lift his son because [he] was so heavy.",
"answer1": "The son",
"answer0": "The man",
"sentence_switched": "The son couldn't lift his man because [he] was so heavy.",
"correct_answer": "The son",
"relational_word": "lift:weak heavy",
"is_associative": 0
},
{
"index": 16,
"is_switchable": 0,
"sentence": "The large ball crashed right through the table because [it] was made of steel.",
"answer1": "The table",
"answer0": "The large ball",
"sentence_switched": "The table crashed right through the large ball because [it] was made of steel.",
"correct_answer": "The large ball",
"relational_word": "crash through:[hard]/[soft]",
"is_associative": 0
},
{
"index": 17,
"is_switchable": 0,
"sentence": "The large ball crashed right through the table because [it] was made of styrofoam.",
"answer1": "The table",
"answer0": "The large ball",
"sentence_switched": "The table crashed right through the large ball because [it] was made of styrofoam.",
"correct_answer": "The table",
"relational_word": "crash through:[hard]/[soft]",
"is_associative": 0
},
{
"index": 18,
"is_switchable": 1,
"sentence": "John couldn't see the stage with Billy in front of him because [he] is so short.",
"answer1": "Billy",
"answer0": "John",
"sentence_switched": "Billy couldn't see the stage with john in front of him because [he] is so short.",
"correct_answer": "John",
"relational_word": "[block]:short/tall",
"is_associative": 0
},
{
"index": 19,
"is_switchable": 1,
"sentence": "John couldn't see the stage with Billy in front of him because [he] is so tall.",
"answer1": "Billy",
"answer0": "John",
"sentence_switched": "Billy couldn't see the stage with john in front of him because [he] is so tall.",
"correct_answer": "Billy",
"relational_word": "[block]:short/tall",
"is_associative": 0
},
{
"index": 20,
"is_switchable": 1,
"sentence": "Tom threw his schoolbag down to Ray after [he] reached the top of the stairs.",
"answer1": "Ray",
"answer0": "Tom",
"sentence_switched": "Ray threw his schoolbag down to tom after [he] reached the top of the stairs.",
"correct_answer": "Tom",
"relational_word": "down to:top/bottom",
"is_associative": 0
},
{
"index": 21,
"is_switchable": 1,
"sentence": "Tom threw his schoolbag down to Ray after [he] reached the bottom of the stairs.",
"answer1": "Ray",
"answer0": "Tom",
"sentence_switched": "Ray threw his schoolbag down to tom after [he] reached the botray of the stairs.",
"correct_answer": "Ray",
"relational_word": "down to:top/bottom",
"is_associative": 0
},
{
"index": 22,
"is_switchable": 1,
"sentence": "Although they ran at about the same speed, Sue beat Sally because [she] had such a good start.",
"answer1": "Sally",
"answer0": "Sue",
"sentence_switched": "Although they ran at about the same speed, sally beat sue because [she] had such a good start.",
"correct_answer": "Sue",
"relational_word": "beat:good/bad",
"is_associative": 0
},
{
"index": 23,
"is_switchable": 1,
"sentence": "Although they ran at about the same speed, Sue beat Sally because [she] had such a bad start.",
"answer1": "Sally",
"answer0": "Sue",
"sentence_switched": "Although they ran at about the same speed, sally beat sue because [she] had such a bad start.",
"correct_answer": "Sally",
"relational_word": "beat:good/bad",
"is_associative": 0
},
{
"index": 24,
"is_switchable": 0,
"sentence": "The sculpture rolled off the shelf because [it] wasn't anchored.",
"answer1": "The shelf",
"answer0": "The sculpture",
"sentence_switched": "The shelf rolled off the sculpture because [it] wasn't anchored.",
"correct_answer": "The sculpture",
"relational_word": "roll off:anchored level",
"is_associative": 0
},
{
"index": 25,
"is_switchable": 0,
"sentence": "The sculpture rolled off the shelf because [it] wasn't level.",
"answer1": "The shelf",
"answer0": "The sculpture",
"sentence_switched": "The shelf rolled off the sculpture because [it] wasn't level.",
"correct_answer": "The shelf",
"relational_word": "roll off:anchored level",
"is_associative": 0
},
{
"index": 26,
"is_switchable": 1,
"sentence": "Sam's drawing was hung just above Tina's and [it] did look much better with another one below it.",
"answer1": "Tina's drawing",
"answer0": "Sam's drawing",
"sentence_switched": "Tina's drawing was hung just above sam's and [it] did look much better with another one below it.",
"correct_answer": "Sam's drawing",
"relational_word": "above/below",
"is_associative": 0
},
{
"index": 27,
"is_switchable": 1,
"sentence": "Sam's drawing was hung just above Tina's and [it] did look much better with another one above it.",
"answer1": "Tina's drawing",
"answer0": "Sam's drawing",
"sentence_switched": "Tina's drawing was hung just above sam's and [it] did look much better with another one above it.",
"correct_answer": "Tina's drawing",
"relational_word": "above/below",
"is_associative": 0
},
{
"index": 28,
"is_switchable": 1,
"sentence": "Anna did a lot better than her good friend Lucy on the test because [she] had studied so hard.",
"answer1": "Lucy",
"answer0": "Anna",
"sentence_switched": "Lucy did a lot better than her good friend anna on the test because [she] had studied so hard.",
"correct_answer": "Anna",
"relational_word": "better/worse:study hard",
"is_associative": 0
},
{
"index": 29,
"is_switchable": 1,
"sentence": "Anna did a lot worse than her good friend Lucy on the test because [she] had studied so hard.",
"answer1": "Lucy",
"answer0": "Anna",
"sentence_switched": "Lucy did a lot worse than her good friend anna on the test because [she] had studied so hard.",
"correct_answer": "Lucy",
"relational_word": "better/worse:study hard",
"is_associative": 0
},
{
"index": 30,
"is_switchable": 1,
"sentence": "The firemen arrived after the police because [they] were coming from so far away.",
"answer1": "The police",
"answer0": "The firemen",
"sentence_switched": "The police arrived after the firemen because [they] were coming from so far away.",
"correct_answer": "The firemen",
"relational_word": "after/before:far away",
"is_associative": 0
},
{
"index": 31,
"is_switchable": 1,
"sentence": "The firemen arrived before the police because [they] were coming from so far away.",
"answer1": "The police",
"answer0": "The firemen",
"sentence_switched": "The police arrived before the firemen because [they] were coming from so far away.",
"correct_answer": "The police",
"relational_word": "after/before:far away",
"is_associative": 0
},
{
"index": 32,
"is_switchable": 1,
"sentence": "Frank was upset with Tom because the toaster [he] had bought from him didn't work.",
"answer1": "Tom",
"answer0": "Frank",
"sentence_switched": "Tom was upset with frank because the toaster [he] had bought from him didn't work.",
"correct_answer": "Frank",
"relational_word": "be upset with:buy from not work/sell not work",
"is_associative": 2
},
{
"index": 33,
"is_switchable": 1,
"sentence": "Frank was upset with Tom because the toaster [he] had sold him didn't work.",
"answer1": "Tom",
"answer0": "Frank",
"sentence_switched": "Tom was upset with frank because the toaster [he] had sold him didn't work.",
"correct_answer": "Tom",
"relational_word": "be upset with:buy from not work/sell not work",
"is_associative": 2
},
{
"index": 34,
"is_switchable": 1,
"sentence": "Jim yelled at Kevin because [he] was so upset.",
"answer1": "Kevin",
"answer0": "Jim",
"sentence_switched": "Kevin yelled at jim because [he] was so upset.",
"correct_answer": "Jim",
"relational_word": "?yell at comfort:upset",
"is_associative": 0
},
{
"index": 35,
"is_switchable": 1,
"sentence": "Jim comforted Kevin because [he] was so upset.",
"answer1": "Kevin",
"answer0": "Jim",
"sentence_switched": "Kevin comforted jim because [he] was so upset.",
"correct_answer": "Kevin",
"relational_word": "?yell at comfort:upset",
"is_associative": 0
},
{
"index": 36,
"is_switchable": 1,
"sentence": "The sack of potatoes had been placed above the bag of flour, so [it] had to be moved first.",
"answer1": "The bag of flour",
"answer0": "The sack of potatoes",
"sentence_switched": "The bag of flour had been placed above the sack of potatoes, so [it] had to be moved first.",
"correct_answer": "The sack of potatoes",
"relational_word": "above/below:moved first",
"is_associative": 0
},
{
"index": 37,
"is_switchable": 1,
"sentence": "The sack of potatoes had been placed below the bag of flour, so [it] had to be moved first.",
"answer1": "The bag of flour",
"answer0": "The sack of potatoes",
"sentence_switched": "The bag of flour had been placed below the sack of potatoes, so [it] had to be moved first.",
"correct_answer": "The bag of flour",
"relational_word": "above/below:moved first",
"is_associative": 0
},
{
"index": 38,
"is_switchable": 1,
"sentence": "Pete envies Martin although [he] is very successful.",
"answer1": "Martin",
"answer0": "Pete",
"sentence_switched": "Martin envies pete although [he] is very successful.",
"correct_answer": "Pete",
"relational_word": "although/because",
"is_associative": 0
},
{
"index": 39,
"is_switchable": 1,
"sentence": "Pete envies Martin because [he] is very successful.",
"answer1": "Martin",
"answer0": "Pete",
"sentence_switched": "Martin envies pete because [he] is very successful.",
"correct_answer": "Martin",
"relational_word": "although/because",
"is_associative": 0
},
{
"index": 40,
"is_switchable": 1,
"sentence": "The older students were bullying the younger ones, so we punished [them] .",
"answer1": "The younger students",
"answer0": "The older students",
"sentence_switched": "The younger students were bullying the older ones, so we punished [them] .",
"correct_answer": "The older students",
"relational_word": "bully:punish rescue",
"is_associative": 0
},
{
"index": 41,
"is_switchable": 1,
"sentence": "The older students were bullying the younger ones, so we rescued [them] .",
"answer1": "The younger students",
"answer0": "The older students",
"sentence_switched": "The younger students were bullying the older ones, so we rescued [them] .",
"correct_answer": "The younger students",
"relational_word": "bully:punish rescue",
"is_associative": 0
},
{
"index": 42,
"is_switchable": 1,
"sentence": "I poured water from the bottle into the cup until [it] was empty.",
"answer1": "the cup",
"answer0": "the bottle",
"sentence_switched": "I poured water from the cup into the bottle until [it] was empty.",
"correct_answer": "the bottle",
"relational_word": "pour:empty/full",
"is_associative": 0
},
{
"index": 43,
"is_switchable": 1,
"sentence": "I poured water from the bottle into the cup until [it] was full.",
"answer1": "the cup",
"answer0": "the bottle",
"sentence_switched": "I poured water from the cup into the bottle until [it] was full.",
"correct_answer": "the cup",
"relational_word": "pour:empty/full",
"is_associative": 0
},
{
"index": 44,
"is_switchable": 1,
"sentence": "Susan knows all about Ann's personal problems because [she] is nosy.",
"answer1": "Ann",
"answer0": "Susan",
"sentence_switched": "Ann knows all about susan's personal problems because [she] is nosy.",
"correct_answer": "Susan",
"relational_word": "know:nosy indiscreet",
"is_associative": 0
},
{
"index": 45,
"is_switchable": 1,
"sentence": "Susan knows all about Ann's personal problems because [she] is indiscreet.",
"answer1": "Ann",
"answer0": "Susan",
"sentence_switched": "Ann knows all about susan's personal problems because [she] is indiscreet.",
"correct_answer": "Ann",
"relational_word": "know:nosy indiscreet",
"is_associative": 0
},
{
"index": 46,
"is_switchable": 1,
"sentence": "Sid explained his theory to Mark but [he] couldn't convince him.",
"answer1": "Mark",
"answer0": "Sid",
"sentence_switched": "Mark explained his theory to sid but [he] couldn't convince him.",
"correct_answer": "Sid",
"relational_word": "explain:convince/understand",
"is_associative": 2
},
{
"index": 47,
"is_switchable": 1,
"sentence": "Sid explained his theory to Mark but [he] couldn't understand him.",
"answer1": "Mark",
"answer0": "Sid",
"sentence_switched": "Mark explained his theory to sid but [he] couldn't understand him.",
"correct_answer": "Mark",
"relational_word": "explain:convince/understand",
"is_associative": 2
},
{
"index": 48,
"is_switchable": 1,
"sentence": "Susan knew that Ann's son had been in a car accident, so [she] told her about it.",
"answer1": "Ann",
"answer0": "Susan",
"sentence_switched": "Ann knew that susan's son had been in a car accident, so [she] told her about it.",
"correct_answer": "Susan",
"relational_word": "?know tell:so/because",
"is_associative": 2
},
{
"index": 49,
"is_switchable": 1,
"sentence": "Susan knew that Ann's son had been in a car accident, because [she] told her about it.",
"answer1": "Ann",
"answer0": "Susan",
"sentence_switched": "Ann knew that susan's son had been in a car accident, because [she] told her about it.",
"correct_answer": "Ann",
"relational_word": "?know tell:so/because",
"is_associative": 2
},
{
"index": 50,
"is_switchable": 0,
"sentence": "Joe's uncle can still beat him at tennis, even though [he] is 30 years younger.",
"answer1": "Joe's uncle",
"answer0": "Joe",
"sentence_switched": "Joe's uncle can still beat him at tennis, even though [he] is 30 years younger.",
"correct_answer": "Joe",
"relational_word": "beat:younger/older",
"is_associative": 0
},
{
"index": 51,
"is_switchable": 0,
"sentence": "Joe's uncle can still beat him at tennis, even though [he] is 30 years older.",
"answer1": "Joe's uncle",
"answer0": "Joe",
"sentence_switched": "Joe can still beat him at tennis, even though [he] is 30 years older.",
"correct_answer": "Joe's uncle",
"relational_word": "beat:younger/older",
"is_associative": 0
},
{
"index": 52,
"is_switchable": 0,
"sentence": "The painting in Mark's living room shows an oak tree. [It] is to the right of the bookcase.",
"answer1": "The oak tree",
"answer0": "The painting",
"sentence_switched": "The oak tree in mark's living room shows a painting. [it] is to the right of the bookcase.",
"correct_answer": "The painting",
"relational_word": "none",
"is_associative": 0
},
{
"index": 53,
"is_switchable": 0,
"sentence": "The painting in Mark's living room shows an oak tree. [It] is to the right of a house.",
"answer1": "The oak tree",
"answer0": "The painting",
"sentence_switched": "The oak tree in mark's living room shows a painting. [it] is to the right of a house.",
"correct_answer": "The oak tree",
"relational_word": "none",
"is_associative": 1
},
{
"index": 54,
"is_switchable": 0,
"sentence": "There is a gap in the wall. You can see the garden through [it] .",
"answer1": "The wall",
"answer0": "The gap",
"sentence_switched": "There is a wall in the gap. you can see the garden through [it] .",
"correct_answer": "The gap",
"relational_word": "none",
"is_associative": 1
},
{
"index": 55,
"is_switchable": 0,
"sentence": "There is a gap in the wall. You can see the garden behind [it] .",
"answer1": "The wall",
"answer0": "The gap",
"sentence_switched": "There is a wall in the gap. you can see the garden behind [it] .",
"correct_answer": "The wall",
"relational_word": "none",
"is_associative": 1
},
{
"index": 56,
"is_switchable": 0,
"sentence": "The drain is clogged with hair. [It] has to be cleaned.",
"answer1": "The hair",
"answer0": "The drain",
"sentence_switched": "The hair is clogged with drain. [it] has to be cleaned.",
"correct_answer": "The drain",
"relational_word": "clog:cleaned removed",
"is_associative": 0
},
{
"index": 57,
"is_switchable": 0,
"sentence": "The drain is clogged with hair. [It] has to be removed.",
"answer1": "The hair",
"answer0": "The drain",
"sentence_switched": "The hair is clogged with drain. [it] has to be removed.",
"correct_answer": "The hair",
"relational_word": "clog:cleaned removed",
"is_associative": 0
},
{
"index": 58,
"is_switchable": 0,
"sentence": "My meeting started at 4:00 and I needed to catch the train at 4:30, so there wasn't much time. Luckily, [it] was short, so it worked out.",
"answer1": "The train",
"answer0": "The meeting",
"sentence_switched": "My train started at 4:00 and i needed to catch the meeting at 4:30, so there wasn't much time. luckily, [it] was short, so it worked out.",
"correct_answer": "The meeting",
"relational_word": "?immediately follow:short delayed",
"is_associative": 1
},
{
"index": 59,
"is_switchable": 0,
"sentence": "My meeting started at 4:00 and I needed to catch the train at 4:30, so there wasn't much time. Luckily, [it] was delayed, so it worked out.",
"answer1": "The train",
"answer0": "The meeting",
"sentence_switched": "My train started at 4:00 and i needed to catch the meeting at 4:30, so there wasn't much time. luckily, [it] was delayed, so it worked out.",
"correct_answer": "The train",
"relational_word": "?immediately follow:short delayed",
"is_associative": 0
},
{
"index": 60,
"is_switchable": 0,
"sentence": "There is a pillar between me and the stage, and I can't see around [it] .",
"answer1": "The stage",
"answer0": "The pillar",
"sentence_switched": "There is a stage between me and the pillar, and i can't see around [it] .",
"correct_answer": "The pillar",
"relational_word": "?between:see see around",
"is_associative": 2
},
{
"index": 61,
"is_switchable": 0,
"sentence": "There is a pillar between me and the stage, and I can't see [it] .",
"answer1": "The stage",
"answer0": "The pillar",
"sentence_switched": "There is a stage between me and the pillar, and i can't see [it] .",
"correct_answer": "The stage",
"relational_word": "?between:see see around",
"is_associative": 2
},
{
"index": 62,
"is_switchable": 0,
"sentence": "They broadcast an announcement, but a subway came into the station and I couldn't hear [it] .",
"answer1": "The subway",
"answer0": "The announcement",
"sentence_switched": "They broadcast a subway, but an announcement came into the station and i couldn't hear [it] .",
"correct_answer": "The announcement",
"relational_word": "none",
"is_associative": 0
},
{
"index": 63,
"is_switchable": 0,
"sentence": "They broadcast an announcement, but a subway came into the station and I couldn't hear over [it] .",
"answer1": "The subway",
"answer0": "The announcement",
"sentence_switched": "They broadcast a subway, but an announcement came into the station and i couldn't hear over [it] .",
"correct_answer": "The subway",
"relational_word": "none",
"is_associative": 0
},
{
"index": 64,
"is_switchable": 0,
"sentence": "In the middle of the outdoor concert, the rain started falling, but [it] continued until 10.",
"answer1": "The rain",
"answer0": "The concert",
"sentence_switched": "In the middle of the outdoor rain, the concert started falling, but [it] continued until 10.",
"correct_answer": "The concert",
"relational_word": "but/and",
"is_associative": 0
},
{
"index": 65,
"is_switchable": 0,
"sentence": "In the middle of the outdoor concert, the rain started falling, and [it] continued until 10.",
"answer1": "The rain",
"answer0": "The concert",
"sentence_switched": "In the middle of the outdoor rain, the concert started falling, and [it] continued until 10.",
"correct_answer": "The rain",
"relational_word": "but/and",
"is_associative": 0
},
{
"index": 66,
"is_switchable": 0,
"sentence": "I used an old rag to clean the knife, and then I put [it] in the trash.",
"answer1": "The knife",
"answer0": "The rag",
"sentence_switched": "I used an old knife to clean the rag, and then i put [it] in the trash.",
"correct_answer": "The rag",
"relational_word": "clean:put in the trash put in the drawer",
"is_associative": 0
},
{
"index": 67,
"is_switchable": 0,
"sentence": "I used an old rag to clean the knife, and then I put [it] in the drawer.",
"answer1": "The knife",
"answer0": "The rag",
"sentence_switched": "I used an old knife to clean the rag, and then i put [it] in the drawer.",
"correct_answer": "The knife",
"relational_word": "clean:put in the trash put in the drawer",
"is_associative": 0
},
{
"index": 68,
"is_switchable": 1,
"sentence": "Ann asked Mary what time the library closes, because [she] had forgotten.",
"answer1": "Mary",
"answer0": "Ann",
"sentence_switched": "Mary asked ann what time the library closes, because [she] had forgotten.",
"correct_answer": "Ann",
"relational_word": "because/but",
"is_associative": 0
},
{
"index": 69,
"is_switchable": 1,
"sentence": "Ann asked Mary what time the library closes, but [she] had forgotten.",
"answer1": "Mary",
"answer0": "Ann",
"sentence_switched": "Mary asked ann what time the library closes, but [she] had forgotten.",
"correct_answer": "Mary",
"relational_word": "because/but",
"is_associative": 0
},
{
"index": 70,
"is_switchable": 0,
"sentence": "I took the water bottle out of the backpack so that [it] would be handy.",
"answer1": "The backpack",
"answer0": "The water bottle",
"sentence_switched": "I took the backpack out of the water bottle so that [it] would be handy.",
"correct_answer": "The water bottle",
"relational_word": "out of:handy lighter",
"is_associative": 0
},
{
"index": 71,
"is_switchable": 0,
"sentence": "I took the water bottle out of the backpack so that [it] would be lighter.",
"answer1": "The backpack",
"answer0": "The water bottle",
"sentence_switched": "I took the backpack out of the water bottle so that [it] would be lighter.",
"correct_answer": "The backpack",
"relational_word": "out of:handy lighter",
"is_associative": 0
},
{
"index": 72,
"is_switchable": 0,
"sentence": "I couldn't put the pot on the shelf because [it] was too tall.",
"answer1": "The shelf",
"answer0": "The pot",
"sentence_switched": "I couldn't put the shelf on the pot because [it] was too tall.",
"correct_answer": "The pot",
"relational_word": "put:tall high",
"is_associative": 1
},
{
"index": 73,
"is_switchable": 0,
"sentence": "I couldn't put the pot on the shelf because [it] was too high.",
"answer1": "The shelf",
"answer0": "The pot",
"sentence_switched": "I couldn't put the shelf on the pot because [it] was too high.",
"correct_answer": "The shelf",
"relational_word": "put:tall high",
"is_associative": 0
},
{
"index": 74,
"is_switchable": 0,
"sentence": "I'm sure that my map will show this building; [it] is very good.",
"answer1": "The building",
"answer0": "The map",
"sentence_switched": "I'm sure that my building will show this map; [it] is very good.",
"correct_answer": "The map",
"relational_word": "show:good famous",
"is_associative": 1
},
{
"index": 75,
"is_switchable": 0,
"sentence": "I'm sure that my map will show this building; [it] is very famous.",
"answer1": "The building",
"answer0": "The map",
"sentence_switched": "I'm sure that my building will show this map; [it] is very famous.",
"correct_answer": "The building",
"relational_word": "show:good famous",
"is_associative": 1
},
{
"index": 76,
"is_switchable": 1,
"sentence": "Bob paid for Charlie's college education. [He] is very generous.",
"answer1": "Charlie",
"answer0": "Bob",
"sentence_switched": "Charlie paid for bob's college education. [he] is very generous.",
"correct_answer": "Bob",
"relational_word": "pay for:generous grateful",
"is_associative": 0
},
{
"index": 77,
"is_switchable": 1,
"sentence": "Bob paid for Charlie's college education. [He] is very grateful.",
"answer1": "Charlie",
"answer0": "Bob",
"sentence_switched": "Charlie paid for bob's college education. [he] is very grateful.",
"correct_answer": "Charlie",
"relational_word": "pay for:generous grateful",
"is_associative": 0
},
{
"index": 78,
"is_switchable": 1,
"sentence": "Bob paid for Charlie's college education, but now Charlie acts as though it never happened. [He] is very hurt.",
"answer1": "Charlie",
"answer0": "Bob",
"sentence_switched": "Charlie paid for bob's college education, but now bob acts as though it never happened. [he] is very hurt.",
"correct_answer": "Bob",
"relational_word": "but",
"is_associative": 0
},
{
"index": 79,
"is_switchable": 1,
"sentence": "Bob paid for Charlie's college education, but now Charlie acts as though it never happened. [He] is very ungrateful.",
"answer1": "Charlie",
"answer0": "Bob",
"sentence_switched": "Charlie paid for bob's college education, but now bob acts as though it never happened. [he] is very ungrateful.",
"correct_answer": "Charlie",
"relational_word": "but",
"is_associative": 0
},
{
"index": 80,
"is_switchable": 1,
"sentence": "Bob was playing cards with Adam and was way ahead. If Adam hadn't had a sudden run of good luck, [he] would have won.",
"answer1": "Adam",
"answer0": "Bob",
"sentence_switched": "Adam was playing cards with bob and was way ahead. if bob hadn't had a sudden run of good luck, [he] would have won.",
"correct_answer": "Bob",
"relational_word": "if",
"is_associative": 0
},
{
"index": 81,
"is_switchable": 1,
"sentence": "Bob was playing cards with Adam and was way ahead. If Adam hadn't had a sudden run of good luck, [he] would have lost.",
"answer1": "Adam",
"answer0": "Bob",
"sentence_switched": "Adam was playing cards with bob and was way ahead. if bob hadn't had a sudden run of good luck, [he] would have lost.",
"correct_answer": "Adam",
"relational_word": "if",
"is_associative": 0
},
{
"index": 82,
"is_switchable": 1,
"sentence": "Adam can't leave work here until Bob arrives to replace him. If Bob had left home for work on time, [he] would be gone by this time.",
"answer1": "Bob",
"answer0": "Adam",
"sentence_switched": "Bob can't leave work here until adam arrives to replace him. if adam had left home for work on time, [he] would be gone by this time.",
"correct_answer": "Adam",
"relational_word": "if",
"is_associative": 0
},
{
"index": 83,
"is_switchable": 1,
"sentence": "Adam can't leave work here until Bob arrives to replace him. If Bob had left home for work on time, [he] would be here by this time.",
"answer1": "Bob",
"answer0": "Adam",
"sentence_switched": "Bob can't leave work here until adam arrives to replace him. if adam had left home for work on time, [he] would be here by this time.",
"correct_answer": "Bob",
"relational_word": "if",
"is_associative": 0
},
{
"index": 84,
"is_switchable": 0,
"sentence": "If the con artist has succeeded in fooling Sam, [he] would have gotten a lot of money.",
"answer1": "Sam",
"answer0": "The con artist",
"sentence_switched": "If sam has succeeded in fooling the con artist, [he] would have gotten a lot of money.",
"correct_answer": "The con artist",
"relational_word": "fool:get/lose",
"is_associative": 0
},
{
"index": 85,
"is_switchable": 0,
"sentence": "If the con artist has succeeded in fooling Sam, [he] would have lost a lot of money.",
"answer1": "Sam",
"answer0": "The con artist",
"sentence_switched": "If sam has succeeded in fooling the con artist, [he] would have lost a lot of money.",
"correct_answer": "Sam",
"relational_word": "fool:get/lose",
"is_associative": 0
},
{
"index": 86,
"is_switchable": 0,
"sentence": "It was a summer afternoon, and the dog was sitting in the middle of the lawn. After a while, it got up and moved to a spot under the tree, because [it] was hot.",
"answer1": "The spot under the tree",
"answer0": "The dog",
"sentence_switched": "It was a summer afternoon, and the spot under tree was sitting in the middle of the lawn. after a while, it got up and moved to a dog, because [it] was hot.",
"correct_answer": "The dog",
"relational_word": "none",
"is_associative": 0
},
{
"index": 87,
"is_switchable": 0,
"sentence": "It was a summer afternoon, and the dog was sitting in the middle of the lawn. After a while, it got up and moved to a spot under the tree, because [it] was cooler.",
"answer1": "The spot under the tree",
"answer0": "The dog",
"sentence_switched": "It was a summer afternoon, and the spot under tree was sitting in the middle of the lawn. after a while, it got up and moved to a dog, because [it] was cooler.",
"correct_answer": "The spot under the tree",
"relational_word": "none",
"is_associative": 1
},
{
"index": 88,
"is_switchable": 0,
"sentence": "The cat was lying by the mouse hole waiting for the mouse, but [it] was too impatient.",
"answer1": "The mouse",
"answer0": "The cat",
"sentence_switched": "The mouse was lying by the cat hole waiting for the cat, but [it] was too impatient.",
"correct_answer": "The cat",
"relational_word": "wait:impatient cautious",
"is_associative": 0
},
{
"index": 89,
"is_switchable": 0,
"sentence": "The cat was lying by the mouse hole waiting for the mouse, but [it] was too cautious.",
"answer1": "The mouse",
"answer0": "The cat",
"sentence_switched": "The mouse was lying by the cat hole waiting for the cat, but [it] was too cautious.",
"correct_answer": "The mouse",
"relational_word": "wait:impatient cautious",
"is_associative": 0
},
{
"index": 90,
"is_switchable": 0,
"sentence": "Anne gave birth to a daughter last month. [She] is a very charming woman.",
"answer1": "Anne's daughter",
"answer0": "Anne",
"sentence_switched": "Anne's daughter gave birth to Anne last month. [she] is a very charming woman.",
"correct_answer": "Anne",
"relational_word": "give birth:woman baby",