flunardelli commited on
Commit
5a57731
·
1 Parent(s): 36f9d17

Add script for splitting JSONL files and update task datasets

Browse files
split_jsonl.py ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ import os
3
+ import shutil
4
+ import random
5
+ from pathlib import Path
6
+
7
+ def split_jsonl(task_folder):
8
+ # Path to the all.jsonl file
9
+ all_file = Path(task_folder) / "all.jsonl"
10
+
11
+ if not all_file.exists():
12
+ print(f"Skipping {task_folder}: No all.jsonl file found")
13
+ return
14
+
15
+ # Read all lines from all.jsonl
16
+ with open(all_file, 'r', encoding='utf-8') as f:
17
+ lines = f.readlines()
18
+
19
+ # Make sure we have at least 5 entries
20
+ if len(lines) < 5:
21
+ print(f"Warning: {task_folder} has fewer than 5 entries")
22
+ return
23
+
24
+ # Take first 5 entries for dev set
25
+ dev_lines = lines[:5]
26
+
27
+ # Get remaining lines for test set
28
+ test_lines = lines[5:]
29
+
30
+
31
+ # # Randomly select 5 entries for dev set
32
+ # dev_indices = random.sample(range(len(lines)), 5)
33
+ # dev_lines = [lines[i] for i in dev_indices]
34
+ # Write dev.jsonl
35
+ with open(all_file.parent / "dev.jsonl", 'w', encoding='utf-8') as f:
36
+ f.writelines(dev_lines)
37
+
38
+ # Write test.jsonl
39
+ with open(all_file.parent / "test.jsonl", 'w', encoding='utf-8') as f:
40
+ f.writelines(test_lines)
41
+
42
+ print(f"Processed {task_folder}:")
43
+ print(f" - Dev set: 5 entries")
44
+ print(f" - Test set: {len(test_lines)} entries")
45
+
46
+ def main():
47
+ # Get the base directory containing task folders
48
+ base_dir = Path("PUB")
49
+
50
+ # Process each task folder
51
+ for task_folder in base_dir.glob("task_*"):
52
+ if task_folder.is_dir():
53
+ split_jsonl(task_folder)
54
+
55
+ if __name__ == "__main__":
56
+ main()
task_1/dev.jsonl CHANGED
@@ -1,5 +1,5 @@
1
- {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nQuestion: Are you satisfied with how things have turned out?\nResponse: I am satisfied with how things have turned out .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "456"}
2
- {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nQuestion: Are you into any sports?\nResponse: I'm more of a video game guy.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "102"}
3
- {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nQuestion: Do you work near by?\nResponse: I work near by .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1126"}
4
- {"pretext": "Context: X wants to know about Y's food preferences.\nQuestion: Do you like eating out?\nResponse: Eating out is the best\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "1003"}
5
- {"pretext": "Context: Y has just travelled from a different city to meet X.\nQuestion: Did you come here by car?\nResponse: I did come here by car .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "914"}
 
1
+ {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nQuestion: Do you want me to give you a lift home?\nResponse: I want me to give I a lift home .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "0"}
2
+ {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nQuestion: Did you go anywhere last weekend?\nResponse: I did go anywhere last weekend .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1"}
3
+ {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nQuestion: Should I give you my number?\nResponse: You should give I my number .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "2"}
4
+ {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nQuestion: Is your work physically demanding?\nResponse: My position required that I sit in front of computer all day.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "3"}
5
+ {"pretext": "Context: Y has just travelled from a different city to meet X.\nQuestion: Would you like to watch a show?\nResponse: Let's just get drunk at a bar.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "4"}
task_1/test.jsonl CHANGED
@@ -1,8 +1,3 @@
1
- {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nQuestion: Do you want me to give you a lift home?\nResponse: I want me to give I a lift home .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "0"}
2
- {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nQuestion: Did you go anywhere last weekend?\nResponse: I did go anywhere last weekend .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1"}
3
- {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nQuestion: Should I give you my number?\nResponse: You should give I my number .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "2"}
4
- {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nQuestion: Is your work physically demanding?\nResponse: My position required that I sit in front of computer all day.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "3"}
5
- {"pretext": "Context: Y has just travelled from a different city to meet X.\nQuestion: Would you like to watch a show?\nResponse: Let's just get drunk at a bar.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "4"}
6
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nQuestion: Is New York your only option?\nResponse: New York is my only option .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "5"}
7
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nQuestion: Do you like going to movies?\nResponse: I like going to movies .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "6"}
8
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nQuestion: Did you move here?\nResponse: I did move here .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "7"}
@@ -100,6 +95,7 @@
100
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nQuestion: Are you coming to work tomorrow?\nResponse: I am coming to work tomorrow .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "99"}
101
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nQuestion: Have you read anything from the NYT bestseller list?\nResponse: I have read something from the NYT bestseller list .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "100"}
102
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nQuestion: Should the new company be located near home?\nResponse: The closer the better.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "101"}
 
103
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nQuestion: Are you wanting to read Doctor Sleep?\nResponse: I am wanting to read Doctor Sleep .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "103"}
104
  {"pretext": "Context: X wants to know about Y's food preferences.\nQuestion: Are you into Chinese cuisine?\nResponse: I love all Chinese food.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "104"}
105
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nQuestion: Do you have any plans for the weekend?\nResponse: I have plans for the weekend .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "105"}
@@ -453,6 +449,7 @@
453
  {"pretext": "Context: X wants to know about Y's food preferences.\nQuestion: Want to go somewhere in the Domain?\nResponse: Sure, if you want to\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "453"}
454
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nQuestion: Would you need to earn more money?\nResponse: I would need to earn more money .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "454"}
455
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nQuestion: Do you like murder mystery books?\nResponse: I like murder mystery books .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "455"}
 
456
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nQuestion: Have you read the 50 Shades trilogy yet?\nResponse: I have read the 50 Shades trilogy yet .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "457"}
457
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nQuestion: Have you ever read any of the classics?\nResponse: I have a whole wall of classics.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "458"}
458
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nQuestion: Will your kids be going to the local school?\nResponse: My kids will be going to the local school .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "459"}
@@ -910,6 +907,7 @@
910
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nQuestion: Should the new company be located near home?\nResponse: I would prefer that.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "911"}
911
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nQuestion: Would you like to get together sometime?\nResponse: I would like to get together sometime .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "912"}
912
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nQuestion: Do you have a job lined up in New York?\nResponse: I'm still looking.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "913"}
 
913
  {"pretext": "Context: X wants to know about Y's music preferences.\nQuestion: Hey do you enjoy jazz lounges?\nResponse: Hey do I enjoy jazz lounges .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "915"}
914
  {"pretext": "Context: X wants to know about Y's food preferences.\nQuestion: Are you allergic to any foods?\nResponse: I am allergic to foods .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "916"}
915
  {"pretext": "Context: Y has just travelled from a different city to meet X.\nQuestion: Have you seen the new Star Wars movie yet?\nResponse: The last movie I saw was Return of the Jedi.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "917"}
@@ -998,6 +996,7 @@
998
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nQuestion: Do you like going for walks?\nResponse: I prefer running.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "1000"}
999
  {"pretext": "Context: X wants to know about Y's food preferences.\nQuestion: Are you on a budget?\nResponse: I am on a budget .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1001"}
1000
  {"pretext": "Context: X wants to know about Y's food preferences.\nQuestion: Are you into trying new foods?\nResponse: I am into trying new foods .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1002"}
 
1001
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nQuestion: Are community gatherings important?\nResponse: Community gatherings am important .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1004"}
1002
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nQuestion: Are you enjoying the neighborhood?\nResponse: It's nice and quiet.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "1005"}
1003
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nQuestion: Is this a fun neighbourhood?\nResponse: I don't know yet\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "1006"}
@@ -1120,6 +1119,7 @@
1120
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nQuestion: Do you still talk to our friend Katie?\nResponse: I talk to our friend Katie .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1123"}
1121
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nQuestion: Shall we arrange to meet again soon?\nResponse: We shall arrange to meet again .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1124"}
1122
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nQuestion: Can we catch up?\nResponse: We can catch up .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1125"}
 
1123
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nQuestion: Is it close to all the places you like?\nResponse: It is like .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1127"}
1124
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nQuestion: Are you planning to take a vacation soon?\nResponse: I am planning to take a vacation soon .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1128"}
1125
  {"pretext": "Context: X wants to know about Y's music preferences.\nQuestion: Do you go to concerts?\nResponse: I love to.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "1129"}
 
 
 
 
 
 
1
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nQuestion: Is New York your only option?\nResponse: New York is my only option .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "5"}
2
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nQuestion: Do you like going to movies?\nResponse: I like going to movies .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "6"}
3
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nQuestion: Did you move here?\nResponse: I did move here .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "7"}
 
95
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nQuestion: Are you coming to work tomorrow?\nResponse: I am coming to work tomorrow .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "99"}
96
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nQuestion: Have you read anything from the NYT bestseller list?\nResponse: I have read something from the NYT bestseller list .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "100"}
97
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nQuestion: Should the new company be located near home?\nResponse: The closer the better.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "101"}
98
+ {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nQuestion: Are you into any sports?\nResponse: I'm more of a video game guy.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "102"}
99
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nQuestion: Are you wanting to read Doctor Sleep?\nResponse: I am wanting to read Doctor Sleep .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "103"}
100
  {"pretext": "Context: X wants to know about Y's food preferences.\nQuestion: Are you into Chinese cuisine?\nResponse: I love all Chinese food.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "104"}
101
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nQuestion: Do you have any plans for the weekend?\nResponse: I have plans for the weekend .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "105"}
 
449
  {"pretext": "Context: X wants to know about Y's food preferences.\nQuestion: Want to go somewhere in the Domain?\nResponse: Sure, if you want to\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "453"}
450
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nQuestion: Would you need to earn more money?\nResponse: I would need to earn more money .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "454"}
451
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nQuestion: Do you like murder mystery books?\nResponse: I like murder mystery books .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "455"}
452
+ {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nQuestion: Are you satisfied with how things have turned out?\nResponse: I am satisfied with how things have turned out .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "456"}
453
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nQuestion: Have you read the 50 Shades trilogy yet?\nResponse: I have read the 50 Shades trilogy yet .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "457"}
454
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nQuestion: Have you ever read any of the classics?\nResponse: I have a whole wall of classics.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "458"}
455
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nQuestion: Will your kids be going to the local school?\nResponse: My kids will be going to the local school .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "459"}
 
907
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nQuestion: Should the new company be located near home?\nResponse: I would prefer that.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "911"}
908
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nQuestion: Would you like to get together sometime?\nResponse: I would like to get together sometime .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "912"}
909
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nQuestion: Do you have a job lined up in New York?\nResponse: I'm still looking.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "913"}
910
+ {"pretext": "Context: Y has just travelled from a different city to meet X.\nQuestion: Did you come here by car?\nResponse: I did come here by car .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "914"}
911
  {"pretext": "Context: X wants to know about Y's music preferences.\nQuestion: Hey do you enjoy jazz lounges?\nResponse: Hey do I enjoy jazz lounges .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "915"}
912
  {"pretext": "Context: X wants to know about Y's food preferences.\nQuestion: Are you allergic to any foods?\nResponse: I am allergic to foods .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "916"}
913
  {"pretext": "Context: Y has just travelled from a different city to meet X.\nQuestion: Have you seen the new Star Wars movie yet?\nResponse: The last movie I saw was Return of the Jedi.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "917"}
 
996
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nQuestion: Do you like going for walks?\nResponse: I prefer running.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "1000"}
997
  {"pretext": "Context: X wants to know about Y's food preferences.\nQuestion: Are you on a budget?\nResponse: I am on a budget .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1001"}
998
  {"pretext": "Context: X wants to know about Y's food preferences.\nQuestion: Are you into trying new foods?\nResponse: I am into trying new foods .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1002"}
999
+ {"pretext": "Context: X wants to know about Y's food preferences.\nQuestion: Do you like eating out?\nResponse: Eating out is the best\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "1003"}
1000
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nQuestion: Are community gatherings important?\nResponse: Community gatherings am important .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1004"}
1001
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nQuestion: Are you enjoying the neighborhood?\nResponse: It's nice and quiet.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "1005"}
1002
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nQuestion: Is this a fun neighbourhood?\nResponse: I don't know yet\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "1006"}
 
1119
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nQuestion: Do you still talk to our friend Katie?\nResponse: I talk to our friend Katie .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1123"}
1120
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nQuestion: Shall we arrange to meet again soon?\nResponse: We shall arrange to meet again .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1124"}
1121
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nQuestion: Can we catch up?\nResponse: We can catch up .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1125"}
1122
+ {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nQuestion: Do you work near by?\nResponse: I work near by .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1126"}
1123
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nQuestion: Is it close to all the places you like?\nResponse: It is like .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1127"}
1124
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nQuestion: Are you planning to take a vacation soon?\nResponse: I am planning to take a vacation soon .\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Direct answer", "id": "1128"}
1125
  {"pretext": "Context: X wants to know about Y's music preferences.\nQuestion: Do you go to concerts?\nResponse: I love to.\n", "options": ["Direct answer", "Indirect answer"], "correct answer": "Indirect answer", "id": "1129"}
task_10/dev.jsonl CHANGED
@@ -1,5 +1,5 @@
1
- {"pretext": "Premise: Stacy did not sprint to the banks.\nHypothesis: Stacy sprinted to the banks.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "571"}
2
- {"pretext": "Premise: Alicia did not sprint to that hospital.\nHypothesis: Alicia ran to that hospital.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "419"}
3
- {"pretext": "Premise: The guests tried to bore Natalie.\nHypothesis: The guests did not try to bore Natalie.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "356"}
4
- {"pretext": "Premise: Tiffany is not brilliant.\nHypothesis: Tiffany is not smart.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1728"}
5
- {"pretext": "Premise: These senators couldn't regret those hills appear.\nHypothesis: These senators didn't need to regret those hills appear.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "130"}
 
1
+ {"pretext": "Premise: Amy could prevent Stephen from hiding.\nHypothesis: Amy couldn't prevent Stephen from hiding.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "0"}
2
+ {"pretext": "Premise: That tomato needed to fall.\nHypothesis: That tomato could fall.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1"}
3
+ {"pretext": "Premise: Rebecca needed to research banks.\nHypothesis: Rebecca couldn't research banks.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "2"}
4
+ {"pretext": "Premise: Timothy could like to fall asleep.\nHypothesis: Timothy couldn't like to fall asleep.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "3"}
5
+ {"pretext": "Premise: Those men didn't need to fall asleep.\nHypothesis: Those men couldn't fall asleep.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "4"}
task_10/test.jsonl CHANGED
@@ -1,8 +1,3 @@
1
- {"pretext": "Premise: Amy could prevent Stephen from hiding.\nHypothesis: Amy couldn't prevent Stephen from hiding.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "0"}
2
- {"pretext": "Premise: That tomato needed to fall.\nHypothesis: That tomato could fall.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1"}
3
- {"pretext": "Premise: Rebecca needed to research banks.\nHypothesis: Rebecca couldn't research banks.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "2"}
4
- {"pretext": "Premise: Timothy could like to fall asleep.\nHypothesis: Timothy couldn't like to fall asleep.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "3"}
5
- {"pretext": "Premise: Those men didn't need to fall asleep.\nHypothesis: Those men couldn't fall asleep.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "4"}
6
  {"pretext": "Premise: Alice couldn't lie.\nHypothesis: Alice didn't need to lie.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "5"}
7
  {"pretext": "Premise: The actors couldn't sit down.\nHypothesis: The actors didn't need to sit down.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "6"}
8
  {"pretext": "Premise: That unicycle needed to crash.\nHypothesis: That unicycle could crash.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "7"}
@@ -128,6 +123,7 @@
128
  {"pretext": "Premise: Clyde didn't need to arrive at the Great Lakes.\nHypothesis: Clyde couldn't arrive at the Great Lakes.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "127"}
129
  {"pretext": "Premise: The glacier couldn't bore Lawrence.\nHypothesis: The glacier could bore Lawrence.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "128"}
130
  {"pretext": "Premise: That tomato couldn't fall.\nHypothesis: That tomato could fall.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "129"}
 
131
  {"pretext": "Premise: Nina needed to hunt.\nHypothesis: Nina couldn't hunt.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "131"}
132
  {"pretext": "Premise: Andrew didn't need to fix the carts.\nHypothesis: Andrew needed to fix the carts.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "132"}
133
  {"pretext": "Premise: Carl didn't need to observe Benjamin.\nHypothesis: Carl needed to observe Benjamin.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "133"}
@@ -353,6 +349,7 @@
353
  {"pretext": "Premise: Beth did not get to the mall.\nHypothesis: Beth went towards the mall.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "353"}
354
  {"pretext": "Premise: Patricia did not try to embarrass Bradley.\nHypothesis: Patricia managed to embarrass Bradley.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "354"}
355
  {"pretext": "Premise: Dana did not run to this museum.\nHypothesis: Dana sprinted to this museum.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "355"}
 
356
  {"pretext": "Premise: Scott did not try to escape from Dawn.\nHypothesis: Scott did not manage to escape from Dawn.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "357"}
357
  {"pretext": "Premise: Ella tried to hate Naomi.\nHypothesis: Ella did not try to hate Naomi.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "358"}
358
  {"pretext": "Premise: This patient did not go towards the banks.\nHypothesis: This patient got to the banks.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "359"}
@@ -415,6 +412,7 @@
415
  {"pretext": "Premise: Alan did not get to schools.\nHypothesis: Alan got to schools.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "416"}
416
  {"pretext": "Premise: The Impressionists did not sprint to the hill.\nHypothesis: The Impressionists did not run to the hill.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "417"}
417
  {"pretext": "Premise: Amelia tried to come here.\nHypothesis: Amelia managed to come here.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "418"}
 
418
  {"pretext": "Premise: Cynthia did not manage to negotiate.\nHypothesis: Cynthia tried to negotiate.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "420"}
419
  {"pretext": "Premise: The doctors did not try to resemble most sketches.\nHypothesis: The doctors did not manage to resemble most sketches.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "421"}
420
  {"pretext": "Premise: Amelia did not manage to come here.\nHypothesis: Amelia tried to come here.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "422"}
@@ -566,6 +564,7 @@
566
  {"pretext": "Premise: These senators went towards this river.\nHypothesis: These senators did not go towards this river.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "568"}
567
  {"pretext": "Premise: Daniel did not sprint to these museums.\nHypothesis: Daniel ran to these museums.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "569"}
568
  {"pretext": "Premise: Sharon tried to dislike Catherine.\nHypothesis: Sharon did not manage to dislike Catherine.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "570"}
 
569
  {"pretext": "Premise: William did not manage to dislike Kristen.\nHypothesis: William did not try to dislike Kristen.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "572"}
570
  {"pretext": "Premise: Those boys did not sprint to those closets.\nHypothesis: Those boys ran to those closets.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "573"}
571
  {"pretext": "Premise: Ellen did not run to movie theaters.\nHypothesis: Ellen sprinted to movie theaters.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "574"}
@@ -1722,6 +1721,7 @@
1722
  {"pretext": "Premise: Hills are not fine.\nHypothesis: Hills are not great.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1725"}
1723
  {"pretext": "Premise: Beth is not smart.\nHypothesis: Beth is not brilliant.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1726"}
1724
  {"pretext": "Premise: This rug is not good.\nHypothesis: This rug is not excellent.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1727"}
 
1725
  {"pretext": "Premise: This pasta is big.\nHypothesis: This pasta is enourmous.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1729"}
1726
  {"pretext": "Premise: Laura is enourmous.\nHypothesis: Laura is not big.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1730"}
1727
  {"pretext": "Premise: These banks are not fine.\nHypothesis: These banks are not great.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1731"}
 
 
 
 
 
 
1
  {"pretext": "Premise: Alice couldn't lie.\nHypothesis: Alice didn't need to lie.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "5"}
2
  {"pretext": "Premise: The actors couldn't sit down.\nHypothesis: The actors didn't need to sit down.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "6"}
3
  {"pretext": "Premise: That unicycle needed to crash.\nHypothesis: That unicycle could crash.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "7"}
 
123
  {"pretext": "Premise: Clyde didn't need to arrive at the Great Lakes.\nHypothesis: Clyde couldn't arrive at the Great Lakes.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "127"}
124
  {"pretext": "Premise: The glacier couldn't bore Lawrence.\nHypothesis: The glacier could bore Lawrence.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "128"}
125
  {"pretext": "Premise: That tomato couldn't fall.\nHypothesis: That tomato could fall.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "129"}
126
+ {"pretext": "Premise: These senators couldn't regret those hills appear.\nHypothesis: These senators didn't need to regret those hills appear.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "130"}
127
  {"pretext": "Premise: Nina needed to hunt.\nHypothesis: Nina couldn't hunt.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "131"}
128
  {"pretext": "Premise: Andrew didn't need to fix the carts.\nHypothesis: Andrew needed to fix the carts.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "132"}
129
  {"pretext": "Premise: Carl didn't need to observe Benjamin.\nHypothesis: Carl needed to observe Benjamin.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "133"}
 
349
  {"pretext": "Premise: Beth did not get to the mall.\nHypothesis: Beth went towards the mall.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "353"}
350
  {"pretext": "Premise: Patricia did not try to embarrass Bradley.\nHypothesis: Patricia managed to embarrass Bradley.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "354"}
351
  {"pretext": "Premise: Dana did not run to this museum.\nHypothesis: Dana sprinted to this museum.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "355"}
352
+ {"pretext": "Premise: The guests tried to bore Natalie.\nHypothesis: The guests did not try to bore Natalie.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "356"}
353
  {"pretext": "Premise: Scott did not try to escape from Dawn.\nHypothesis: Scott did not manage to escape from Dawn.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "357"}
354
  {"pretext": "Premise: Ella tried to hate Naomi.\nHypothesis: Ella did not try to hate Naomi.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "358"}
355
  {"pretext": "Premise: This patient did not go towards the banks.\nHypothesis: This patient got to the banks.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "359"}
 
412
  {"pretext": "Premise: Alan did not get to schools.\nHypothesis: Alan got to schools.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "416"}
413
  {"pretext": "Premise: The Impressionists did not sprint to the hill.\nHypothesis: The Impressionists did not run to the hill.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "417"}
414
  {"pretext": "Premise: Amelia tried to come here.\nHypothesis: Amelia managed to come here.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "418"}
415
+ {"pretext": "Premise: Alicia did not sprint to that hospital.\nHypothesis: Alicia ran to that hospital.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "419"}
416
  {"pretext": "Premise: Cynthia did not manage to negotiate.\nHypothesis: Cynthia tried to negotiate.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "420"}
417
  {"pretext": "Premise: The doctors did not try to resemble most sketches.\nHypothesis: The doctors did not manage to resemble most sketches.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "421"}
418
  {"pretext": "Premise: Amelia did not manage to come here.\nHypothesis: Amelia tried to come here.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "422"}
 
564
  {"pretext": "Premise: These senators went towards this river.\nHypothesis: These senators did not go towards this river.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "568"}
565
  {"pretext": "Premise: Daniel did not sprint to these museums.\nHypothesis: Daniel ran to these museums.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "569"}
566
  {"pretext": "Premise: Sharon tried to dislike Catherine.\nHypothesis: Sharon did not manage to dislike Catherine.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "570"}
567
+ {"pretext": "Premise: Stacy did not sprint to the banks.\nHypothesis: Stacy sprinted to the banks.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "571"}
568
  {"pretext": "Premise: William did not manage to dislike Kristen.\nHypothesis: William did not try to dislike Kristen.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "572"}
569
  {"pretext": "Premise: Those boys did not sprint to those closets.\nHypothesis: Those boys ran to those closets.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "573"}
570
  {"pretext": "Premise: Ellen did not run to movie theaters.\nHypothesis: Ellen sprinted to movie theaters.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "574"}
 
1721
  {"pretext": "Premise: Hills are not fine.\nHypothesis: Hills are not great.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1725"}
1722
  {"pretext": "Premise: Beth is not smart.\nHypothesis: Beth is not brilliant.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1726"}
1723
  {"pretext": "Premise: This rug is not good.\nHypothesis: This rug is not excellent.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1727"}
1724
+ {"pretext": "Premise: Tiffany is not brilliant.\nHypothesis: Tiffany is not smart.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1728"}
1725
  {"pretext": "Premise: This pasta is big.\nHypothesis: This pasta is enourmous.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1729"}
1726
  {"pretext": "Premise: Laura is enourmous.\nHypothesis: Laura is not big.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1730"}
1727
  {"pretext": "Premise: These banks are not fine.\nHypothesis: These banks are not great.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1731"}
task_11/dev.jsonl CHANGED
@@ -1,5 +1,5 @@
1
- {"pretext": "Premise: Has Lisa learned how the students wear those socks?\nHypothesis: Lisa has learned how the students wear those socks.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "61"}
2
- {"pretext": "Premise: If Ruth conceals why Derek figures out who murmurs, it's okay.\nHypothesis: Derek figures out who murmurs", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "191"}
3
- {"pretext": "Premise: Rose's ice did stun the children.\nHypothesis: Rose has ice.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "447"}
4
- {"pretext": "Premise: Does Candice's projector bother ladies?\nHypothesis: These actors has a projector.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "476"}
5
- {"pretext": "Premise: Both customers who aren't talking have argued about Rhonda.\nHypothesis: There are exactly two cashiers who aren't talking", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "1034"}
 
1
+ {"pretext": "Premise: Natalie hasn't discovered where Tracy worries.\nHypothesis: Tracy doesn't worry.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "0"}
2
+ {"pretext": "Premise: If April forgot where that hat did twirl, it's okay.\nHypothesis: That hat didn't twirl.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1"}
3
+ {"pretext": "Premise: If the teachers forget about where Thomas was happening to criticize Liam, it's okay.\nHypothesis: Thomas wasn't happening to criticize Liam.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "2"}
4
+ {"pretext": "Premise: Rebecca might have investigated how these windows shut.\nHypothesis: Rebecca has investigated how these windows shut.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "3"}
5
+ {"pretext": "Premise: That committee might forget where Kirsten has coughed.\nHypothesis: Kirsten hasn't coughed.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "4"}
task_11/test.jsonl CHANGED
@@ -1,8 +1,3 @@
1
- {"pretext": "Premise: Natalie hasn't discovered where Tracy worries.\nHypothesis: Tracy doesn't worry.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "0"}
2
- {"pretext": "Premise: If April forgot where that hat did twirl, it's okay.\nHypothesis: That hat didn't twirl.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1"}
3
- {"pretext": "Premise: If the teachers forget about where Thomas was happening to criticize Liam, it's okay.\nHypothesis: Thomas wasn't happening to criticize Liam.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "2"}
4
- {"pretext": "Premise: Rebecca might have investigated how these windows shut.\nHypothesis: Rebecca has investigated how these windows shut.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "3"}
5
- {"pretext": "Premise: That committee might forget where Kirsten has coughed.\nHypothesis: Kirsten hasn't coughed.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "4"}
6
  {"pretext": "Premise: If Claire was figuring out when guys marry, it's okay.\nHypothesis: Guys don't marry.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "5"}
7
  {"pretext": "Premise: If Denise is investigating where the people talk to Melanie, it's okay.\nHypothesis: Museums talk to Melanie.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "6"}
8
  {"pretext": "Premise: Spain hasn't figured out where the lakes melt.\nHypothesis: Most rivers melt.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "7"}
@@ -59,6 +54,7 @@
59
  {"pretext": "Premise: Marcus might reveal when Galileo smiles.\nHypothesis: Galileo doesn't smile.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "58"}
60
  {"pretext": "Premise: Gary realized why Kenneth does stun Jodi.\nHypothesis: Kenneth doesn't stun Jodi.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "59"}
61
  {"pretext": "Premise: This student does conceal how the boys worked hard.\nHypothesis: The boys worked hard", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "60"}
 
62
  {"pretext": "Premise: Has Spain figured out where the lakes melt?\nHypothesis: The lakes don't melt.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "62"}
63
  {"pretext": "Premise: Russell was wondering when the dancers chat.\nHypothesis: The dancers don't chat.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "63"}
64
  {"pretext": "Premise: Monet doesn't find out why the glove shrank.\nHypothesis: The glove didn't shrink.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "64"}
@@ -188,6 +184,7 @@
188
  {"pretext": "Premise: Douglas had forgotten about why Lucille had enticed Claire's brothers to forget Alice.\nHypothesis: Lori had enticed Claire's brothers to forget Alice.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "188"}
189
  {"pretext": "Premise: If Natalie had discovered where Tracy worries, it's okay.\nHypothesis: Tracy worries", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "189"}
190
  {"pretext": "Premise: These organizations might be forgetting about why the teachers have left.\nHypothesis: These organizations were forgetting about why the teachers have left.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "190"}
 
191
  {"pretext": "Premise: These organizations aren't forgetting about why the teachers have left.\nHypothesis: The teachers have left", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "192"}
192
  {"pretext": "Premise: Martha might remember where Lucille spurred these banks to collaborate.\nHypothesis: Cindy spurred these banks to collaborate.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "193"}
193
  {"pretext": "Premise: Did Gary realize why Kenneth does stun Jodi?\nHypothesis: Kenneth doesn't stun Jodi.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "194"}
@@ -443,6 +440,7 @@
443
  {"pretext": "Premise: These teenagers' pictures didn't appear.\nHypothesis: These teenagers don't have pictures.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "444"}
444
  {"pretext": "Premise: Jeffrey's grocery stores did disappear.\nHypothesis: Jeffrey doesn't have grocery stores.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "445"}
445
  {"pretext": "Premise: Do Randolf's cars crack?\nHypothesis: Richard has cars.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "446"}
 
446
  {"pretext": "Premise: If Florence's car did irritate Christina, it's okay.\nHypothesis: Florence has a car.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "448"}
447
  {"pretext": "Premise: Do this person's steps distract the guest?\nHypothesis: Benjamin has steps.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "449"}
448
  {"pretext": "Premise: Jennifer's car might have shocked Becky.\nHypothesis: Jennifer has a car.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "450"}
@@ -471,6 +469,7 @@
471
  {"pretext": "Premise: Suzanne's college campus does bore Claire.\nHypothesis: Suzanne has a college campus.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "473"}
472
  {"pretext": "Premise: Thomas's shirt does resemble drawings.\nHypothesis: The girl has a shirt.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "474"}
473
  {"pretext": "Premise: Thomas's shirt doesn't resemble drawings.\nHypothesis: Thomas has a shirt.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "475"}
 
474
  {"pretext": "Premise: Do Susan's bosses mutter?\nHypothesis: Susan doesn't have bosses.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "477"}
475
  {"pretext": "Premise: Candice's projector doesn't bother ladies.\nHypothesis: Candice has a projector.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "478"}
476
  {"pretext": "Premise: Paul's doctor does cook.\nHypothesis: This teenager has a doctor.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "479"}
@@ -1028,6 +1027,7 @@
1028
  {"pretext": "Premise: Both doctors that sat down might think Thomas pressured George to see most icicles.\nHypothesis: There are exactly two teenagers that sat down", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "1031"}
1029
  {"pretext": "Premise: If both guys who were compromising are sitting down, it's okay.\nHypothesis: There are exactly two guys who were compromising", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "1032"}
1030
  {"pretext": "Premise: Both actresses that argue about James might have complained about Stephen.\nHypothesis: There are more than two actresses that argue about James.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1033"}
 
1031
  {"pretext": "Premise: Were both guests that cook going fishing?\nHypothesis: There aren't exactly two guests that cook", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1035"}
1032
  {"pretext": "Premise: If both cashiers who fired Walter have donated, it's okay.\nHypothesis: There are dozens of cashiers who fired Walter.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1036"}
1033
  {"pretext": "Premise: Both cashiers who fired Walter have donated.\nHypothesis: There are exactly two girls who fired Walter", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "1037"}
 
 
 
 
 
 
1
  {"pretext": "Premise: If Claire was figuring out when guys marry, it's okay.\nHypothesis: Guys don't marry.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "5"}
2
  {"pretext": "Premise: If Denise is investigating where the people talk to Melanie, it's okay.\nHypothesis: Museums talk to Melanie.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "6"}
3
  {"pretext": "Premise: Spain hasn't figured out where the lakes melt.\nHypothesis: Most rivers melt.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "7"}
 
54
  {"pretext": "Premise: Marcus might reveal when Galileo smiles.\nHypothesis: Galileo doesn't smile.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "58"}
55
  {"pretext": "Premise: Gary realized why Kenneth does stun Jodi.\nHypothesis: Kenneth doesn't stun Jodi.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "59"}
56
  {"pretext": "Premise: This student does conceal how the boys worked hard.\nHypothesis: The boys worked hard", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "60"}
57
+ {"pretext": "Premise: Has Lisa learned how the students wear those socks?\nHypothesis: Lisa has learned how the students wear those socks.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "61"}
58
  {"pretext": "Premise: Has Spain figured out where the lakes melt?\nHypothesis: The lakes don't melt.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "62"}
59
  {"pretext": "Premise: Russell was wondering when the dancers chat.\nHypothesis: The dancers don't chat.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "63"}
60
  {"pretext": "Premise: Monet doesn't find out why the glove shrank.\nHypothesis: The glove didn't shrink.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "64"}
 
184
  {"pretext": "Premise: Douglas had forgotten about why Lucille had enticed Claire's brothers to forget Alice.\nHypothesis: Lori had enticed Claire's brothers to forget Alice.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "188"}
185
  {"pretext": "Premise: If Natalie had discovered where Tracy worries, it's okay.\nHypothesis: Tracy worries", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "189"}
186
  {"pretext": "Premise: These organizations might be forgetting about why the teachers have left.\nHypothesis: These organizations were forgetting about why the teachers have left.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "190"}
187
+ {"pretext": "Premise: If Ruth conceals why Derek figures out who murmurs, it's okay.\nHypothesis: Derek figures out who murmurs", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "191"}
188
  {"pretext": "Premise: These organizations aren't forgetting about why the teachers have left.\nHypothesis: The teachers have left", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "192"}
189
  {"pretext": "Premise: Martha might remember where Lucille spurred these banks to collaborate.\nHypothesis: Cindy spurred these banks to collaborate.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "193"}
190
  {"pretext": "Premise: Did Gary realize why Kenneth does stun Jodi?\nHypothesis: Kenneth doesn't stun Jodi.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "194"}
 
440
  {"pretext": "Premise: These teenagers' pictures didn't appear.\nHypothesis: These teenagers don't have pictures.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "444"}
441
  {"pretext": "Premise: Jeffrey's grocery stores did disappear.\nHypothesis: Jeffrey doesn't have grocery stores.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "445"}
442
  {"pretext": "Premise: Do Randolf's cars crack?\nHypothesis: Richard has cars.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "446"}
443
+ {"pretext": "Premise: Rose's ice did stun the children.\nHypothesis: Rose has ice.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "447"}
444
  {"pretext": "Premise: If Florence's car did irritate Christina, it's okay.\nHypothesis: Florence has a car.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "448"}
445
  {"pretext": "Premise: Do this person's steps distract the guest?\nHypothesis: Benjamin has steps.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "449"}
446
  {"pretext": "Premise: Jennifer's car might have shocked Becky.\nHypothesis: Jennifer has a car.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "450"}
 
469
  {"pretext": "Premise: Suzanne's college campus does bore Claire.\nHypothesis: Suzanne has a college campus.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "473"}
470
  {"pretext": "Premise: Thomas's shirt does resemble drawings.\nHypothesis: The girl has a shirt.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "474"}
471
  {"pretext": "Premise: Thomas's shirt doesn't resemble drawings.\nHypothesis: Thomas has a shirt.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "475"}
472
+ {"pretext": "Premise: Does Candice's projector bother ladies?\nHypothesis: These actors has a projector.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "476"}
473
  {"pretext": "Premise: Do Susan's bosses mutter?\nHypothesis: Susan doesn't have bosses.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "477"}
474
  {"pretext": "Premise: Candice's projector doesn't bother ladies.\nHypothesis: Candice has a projector.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "478"}
475
  {"pretext": "Premise: Paul's doctor does cook.\nHypothesis: This teenager has a doctor.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "479"}
 
1027
  {"pretext": "Premise: Both doctors that sat down might think Thomas pressured George to see most icicles.\nHypothesis: There are exactly two teenagers that sat down", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "1031"}
1028
  {"pretext": "Premise: If both guys who were compromising are sitting down, it's okay.\nHypothesis: There are exactly two guys who were compromising", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely true given premise", "id": "1032"}
1029
  {"pretext": "Premise: Both actresses that argue about James might have complained about Stephen.\nHypothesis: There are more than two actresses that argue about James.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1033"}
1030
+ {"pretext": "Premise: Both customers who aren't talking have argued about Rhonda.\nHypothesis: There are exactly two cashiers who aren't talking", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "1034"}
1031
  {"pretext": "Premise: Were both guests that cook going fishing?\nHypothesis: There aren't exactly two guests that cook", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1035"}
1032
  {"pretext": "Premise: If both cashiers who fired Walter have donated, it's okay.\nHypothesis: There are dozens of cashiers who fired Walter.", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis is definitely not true given premise", "id": "1036"}
1033
  {"pretext": "Premise: Both cashiers who fired Walter have donated.\nHypothesis: There are exactly two girls who fired Walter", "options": ["Hypothesis is definitely true given premise", "Hypothesis might be true given premise", "Hypothesis is definitely not true given premise"], "correct answer": "Hypothesis might be true given premise", "id": "1037"}
task_12/dev.jsonl CHANGED
@@ -1,5 +1,5 @@
1
- {"pretext": "Conversation:\nA: You should save some money on parking here .\nAssumption: A has no change in hand.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2465"}
2
- {"pretext": "Conversation:\nA: Have you had a chance to look over the contract ?\nB: Yes . I've read it carefully .\nAssumption: The contract has been thoroughly examined.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "108"}
3
- {"pretext": "Conversation:\nA: I absolutely love what you're wearing today .\nAssumption: A is a flirt. A has a way of taking people into confidence.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2298"}
4
- {"pretext": "Conversation:\nA: Why did you stay home today ?\nAssumption: A is mother of B.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "814"}
5
- {"pretext": "Conversation:\nA: That man's really a bore to me .\nB: Which one do you mean ?\nAssumption: B has a big list of people.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2232"}
 
1
+ {"pretext": "Conversation:\nA: Say , Jim , how about going for a few beers after dinner ?\nAssumption: Jim exists.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "0"}
2
+ {"pretext": "Conversation:\nA: Say , Jim , how about going for a few beers after dinner ?\nB: You know that is tempting but is really not good for our fitness .\nA: What do you mean ? It will help us to relax .\nB: Do you really think so ? I don't . It will just make us fat and act silly . Remember last time ?\nAssumption: They have gotten drunk before.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "1"}
3
+ {"pretext": "Conversation:\nA: Say , Jim , how about going for a few beers after dinner ?\nB: You know that is tempting but is really not good for our fitness .\nA: What do you mean ? It will help us to relax .\nB: Do you really think so ? I don't . It will just make us fat and act silly . Remember last time ?\nA: I guess you are right.But what shall we do ? I don't feel like sitting at home .\nB: I suggest a walk over to the gym where we can play pingpong and meet some of our friends .\nAssumption: They want to play ping ping.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2"}
4
+ {"pretext": "Conversation:\nA: Say , Jim , how about going for a few beers after dinner ?\nB: You know that is tempting but is really not good for our fitness .\nA: What do you mean ? It will help us to relax .\nB: Do you really think so ? I don't . It will just make us fat and act silly . Remember last time ?\nA: I guess you are right.But what shall we do ? I don't feel like sitting at home .\nB: I suggest a walk over to the gym where we can play pingpong and meet some of our friends .\nA: That's a good idea . I hear Mary and Sally often go there to play pingpong.Perhaps we can make a foursome with them .\nAssumption: They are friends with Mary and Sally.\n", "options": ["Valid", "Invalid"], "correct answer": "Invalid", "id": "3"}
5
+ {"pretext": "Conversation:\nA: Say , Jim , how about going for a few beers after dinner ?\nB: You know that is tempting but is really not good for our fitness .\nA: What do you mean ? It will help us to relax .\nB: Do you really think so ? I don't . It will just make us fat and act silly . Remember last time ?\nA: I guess you are right.But what shall we do ? I don't feel like sitting at home .\nB: I suggest a walk over to the gym where we can play pingpong and meet some of our friends .\nA: That's a good idea . I hear Mary and Sally often go there to play pingpong.Perhaps we can make a foursome with them .\nB: Sounds great to me ! If they are willing , we could ask them to go dancing with us.That is excellent exercise and fun , too .\nAssumption: There are other people who may be interested in joining the activity.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "4"}
task_12/test.jsonl CHANGED
@@ -1,8 +1,3 @@
1
- {"pretext": "Conversation:\nA: Say , Jim , how about going for a few beers after dinner ?\nAssumption: Jim exists.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "0"}
2
- {"pretext": "Conversation:\nA: Say , Jim , how about going for a few beers after dinner ?\nB: You know that is tempting but is really not good for our fitness .\nA: What do you mean ? It will help us to relax .\nB: Do you really think so ? I don't . It will just make us fat and act silly . Remember last time ?\nAssumption: They have gotten drunk before.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "1"}
3
- {"pretext": "Conversation:\nA: Say , Jim , how about going for a few beers after dinner ?\nB: You know that is tempting but is really not good for our fitness .\nA: What do you mean ? It will help us to relax .\nB: Do you really think so ? I don't . It will just make us fat and act silly . Remember last time ?\nA: I guess you are right.But what shall we do ? I don't feel like sitting at home .\nB: I suggest a walk over to the gym where we can play pingpong and meet some of our friends .\nAssumption: They want to play ping ping.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2"}
4
- {"pretext": "Conversation:\nA: Say , Jim , how about going for a few beers after dinner ?\nB: You know that is tempting but is really not good for our fitness .\nA: What do you mean ? It will help us to relax .\nB: Do you really think so ? I don't . It will just make us fat and act silly . Remember last time ?\nA: I guess you are right.But what shall we do ? I don't feel like sitting at home .\nB: I suggest a walk over to the gym where we can play pingpong and meet some of our friends .\nA: That's a good idea . I hear Mary and Sally often go there to play pingpong.Perhaps we can make a foursome with them .\nAssumption: They are friends with Mary and Sally.\n", "options": ["Valid", "Invalid"], "correct answer": "Invalid", "id": "3"}
5
- {"pretext": "Conversation:\nA: Say , Jim , how about going for a few beers after dinner ?\nB: You know that is tempting but is really not good for our fitness .\nA: What do you mean ? It will help us to relax .\nB: Do you really think so ? I don't . It will just make us fat and act silly . Remember last time ?\nA: I guess you are right.But what shall we do ? I don't feel like sitting at home .\nB: I suggest a walk over to the gym where we can play pingpong and meet some of our friends .\nA: That's a good idea . I hear Mary and Sally often go there to play pingpong.Perhaps we can make a foursome with them .\nB: Sounds great to me ! If they are willing , we could ask them to go dancing with us.That is excellent exercise and fun , too .\nAssumption: There are other people who may be interested in joining the activity.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "4"}
6
  {"pretext": "Conversation:\nA: Can you do push-ups ?\nAssumption: B has the physical ability to do push-ups.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "5"}
7
  {"pretext": "Conversation:\nA: Can you do push-ups ?\nB: Of course I can . It's a piece of cake ! Believe it or not , I can do 30 push-ups a minute .\nAssumption: B knows how to do push ups.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "6"}
8
  {"pretext": "Conversation:\nA: Can you do push-ups ?\nB: Of course I can . It's a piece of cake ! Believe it or not , I can do 30 push-ups a minute .\nA: Really ? I think that's impossible !\nB: You mean 30 push-ups ?\nA: Yeah !\nB: It's easy . If you do exercise everyday , you can make it , too .\nAssumption: Its easy to do 30 pushups if you exercise everyday.\n", "options": ["Valid", "Invalid"], "correct answer": "Invalid", "id": "7"}
@@ -106,6 +101,7 @@
106
  {"pretext": "Conversation:\nA: Excuse me , sir , Is this the road to the peace Store ? \nB: You could get there this way , but it'd be faster to go along the Wort Street . \nA: Where's Wort Street , please ? \nB: Turn right at the third intersection , you'll see the street and then walk along the street to the south . \nA: How far is it from the Wort Street ?\nAssumption: The listener has knowledge about the distance between the referred place and the Wort Street.\n\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "105"}
107
  {"pretext": "Conversation:\nA: Excuse me , sir , Is this the road to the peace Store ? \nB: You could get there this way , but it'd be faster to go along the Wort Street . \nA: Where's Wort Street , please ? \nB: Turn right at the third intersection , you'll see the street and then walk along the street to the south . \nA: How far is it from the Wort Street ?\nB: Just walk for a few minutes , you'll find it .\nAssumption: You are capable of walking for a few minutes.\n\n\n", "options": ["Valid", "Invalid"], "correct answer": "Invalid", "id": "106"}
108
  {"pretext": "Conversation:\nA: Have you had a chance to look over the contract ?\nAssumption: The listener has been presented with a contract to review.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "107"}
 
109
  {"pretext": "Conversation:\nA: Have you had a chance to look over the contract ?\nB: Yes . I've read it carefully .\nA: And do you have any questions ?\nAssumption: Your expected to have questions.\n", "options": ["Valid", "Invalid"], "correct answer": "Invalid", "id": "109"}
110
  {"pretext": "Conversation:\nA: Have you had a chance to look over the contract ?\nB: Yes . I've read it carefully .\nA: And do you have any questions ?\nB: No . But the contract stipulates that I will teach 22 hours a week.Will you have thatmany classes for me right away ?\nAssumption: The contract mentioned by the speaker is valid and accurate, and it indeed stipulates the requirement of teaching 22 hours a week.\n\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "110"}
111
  {"pretext": "Conversation:\nA: Have you had a chance to look over the contract ?\nB: Yes . I've read it carefully .\nA: And do you have any questions ?\nB: No . But the contract stipulates that I will teach 22 hours a week.Will you have thatmany classes for me right away ?\nA: No , probably not . For the first two weeks you may teach 10 or 15 hours .\nAssumption: The listener has the flexibility to teach fewer hours during the initial two weeks.\n\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "111"}
@@ -811,6 +807,7 @@
811
  {"pretext": "Conversation:\nA: Excuse me , but I'm looking for a gift for my friend . \nB: Is it a Chinese New Year's gift or a birthday gift ?\nA: Well , it's a wedding gift . \nB: Oh , I see . Let me guess ... something sexy for the new bride on her first night of marriage ?\nAssumption: B is too intervening.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "811"}
812
  {"pretext": "Conversation:\nA: Excuse me , but I'm looking for a gift for my friend . \nB: Is it a Chinese New Year's gift or a birthday gift ?\nA: Well , it's a wedding gift . \nB: Oh , I see . Let me guess ... something sexy for the new bride on her first night of marriage ? \nA: Basically . But I have no idea what to get ! She's American and kind of ...\nAssumption: A has a foreign girl friend .\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "812"}
813
  {"pretext": "Conversation:\nA: Excuse me , but I'm looking for a gift for my friend . \nB: Is it a Chinese New Year's gift or a birthday gift ?\nA: Well , it's a wedding gift . \nB: Oh , I see . Let me guess ... something sexy for the new bride on her first night of marriage ? \nA: Basically . But I have no idea what to get ! She's American and kind of ...\nB: Well-endowed ? Don't worry . I have some bras with bigger cup sizes in the back .\nAssumption: B is sarcastic.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "813"}
 
814
  {"pretext": "Conversation:\nA: Why did you stay home today ?\nB: I'm off today .\nAssumption: B has bunked his school.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "815"}
815
  {"pretext": "Conversation:\nA: Good evening ! I don't believe we've met before . May I introduce myself ? My name is Jack .\nAssumption: A is the man on the hill.\n", "options": ["Valid", "Invalid"], "correct answer": "Invalid", "id": "816"}
816
  {"pretext": "Conversation:\nA: Good evening ! I don't believe we've met before . May I introduce myself ? My name is Jack .\nB: It's a pleasure to meet you . My name is Lucy .\nAssumption: B is famous personality.\n", "options": ["Valid", "Invalid"], "correct answer": "Invalid", "id": "817"}
@@ -2228,6 +2225,7 @@
2228
  {"pretext": "Conversation:\nA: Where do you see yourself three years from now ?\nB: Working for your company ! As the top administrative assistant in your firm !\nA: Good answer , Miss Zhang-good answer ! Seriously , though , are you interested in staying in a staff-level position , or would you hope to move into management someday ? \nB: Well , I haven't thought much about this . I think it's too early to tell . What is the most important for me now is to do the best possible job for the company and learn and develop my skills as much as possible . If the company is happy with my work , then , I think I would like to consider other positions in the company . \nA: Fine . What kind of relationship do you think should exist between a boss and his or her employees ?\nAssumption: A has to clarify if the person has been recommended by an elite member.\n", "options": ["Valid", "Invalid"], "correct answer": "Invalid", "id": "2229"}
2229
  {"pretext": "Conversation:\nA: Where do you see yourself three years from now ?\nB: Working for your company ! As the top administrative assistant in your firm !\nA: Good answer , Miss Zhang-good answer ! Seriously , though , are you interested in staying in a staff-level position , or would you hope to move into management someday ? \nB: Well , I haven't thought much about this . I think it's too early to tell . What is the most important for me now is to do the best possible job for the company and learn and develop my skills as much as possible . If the company is happy with my work , then , I think I would like to consider other positions in the company . \nA: Fine . What kind of relationship do you think should exist between a boss and his or her employees ?\nB: Well , a working relationship . I think a company is a place to get work done . Certainly friendly , open relationships among all company employees is important . But I think an employee should be serious about his or her work responsibilities and have a working relationship with the boss .\nAssumption: There should be a team work .\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2230"}
2230
  {"pretext": "Conversation:\nA: That man's really a bore to me .\nAssumption: A has met a garrulous person.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2231"}
 
2231
  {"pretext": "Conversation:\nA: Hello , Lucy , I heard you did a good deal in interview .\nAssumption: The person is a colleague .\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2233"}
2232
  {"pretext": "Conversation:\nA: Hello , Lucy , I heard you did a good deal in interview . \nB: It's OK .\nAssumption: B is not upto the mark.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2234"}
2233
  {"pretext": "Conversation:\nA: Hello , Lucy , I heard you did a good deal in interview . \nB: It's OK .\nA: What did you do in the interview ?\nAssumption: A has never been to an interview. A is appointed with out an interview.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2235"}
@@ -2293,6 +2291,7 @@
2293
  {"pretext": "Conversation:\nA: Hello , sir . Is there anything I can help you find ? \nB: Um ... Uh ... I'm just looking , thanks . \nA: Need a gift for your girlfriend or wife ?\nB: No , no , no . I'm just browsing . Thanks anyway .\nAssumption: B has nothing else to do.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2295"}
2294
  {"pretext": "Conversation:\nA: Hello , sir . Is there anything I can help you find ? \nB: Um ... Uh ... I'm just looking , thanks . \nA: Need a gift for your girlfriend or wife ?\nB: No , no , no . I'm just browsing . Thanks anyway . \nA: Well , if you need anything , just ask .\nAssumption: A has a doubt of theft\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2296"}
2295
  {"pretext": "Conversation:\nA: Hello , sir . Is there anything I can help you find ? \nB: Um ... Uh ... I'm just looking , thanks . \nA: Need a gift for your girlfriend or wife ?\nB: No , no , no . I'm just browsing . Thanks anyway . \nA: Well , if you need anything , just ask . \nB: Um ... well , where's the men's shoe department ?\nAssumption: B wants to avoid the person's attention.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2297"}
 
2296
  {"pretext": "Conversation:\nA: I absolutely love what you're wearing today .\nB: You do ? I just bought this outfit a couple days ago .\nAssumption: It's the speaker's birthday.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2299"}
2297
  {"pretext": "Conversation:\nA: I absolutely love what you're wearing today .\nB: You do ? I just bought this outfit a couple days ago .\nA: Seriously , it looks really nice on you . Where did you buy it from ?\nAssumption: B has a good taste of choice.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2300"}
2298
  {"pretext": "Conversation:\nA: I absolutely love what you're wearing today .\nB: You do ? I just bought this outfit a couple days ago .\nA: Seriously , it looks really nice on you . Where did you buy it from ? \nB: I bought it from the Macy's at the Santa Anita mall .\nAssumption: The dress may not fit on all .\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2301"}
@@ -2459,6 +2458,7 @@
2459
  {"pretext": "Conversation:\nA: Have you made a reservation ?\nB: Yes , I have booked a table for four . My name is Liu Fan . \nA: We have had a window table reserved for you . This way , please . \nB: Thanks .\nA: You're welcome .\nB: Can we see the menu , please ? \nA: I'll bring it over .\nB: Anything good for this evening ?\nAssumption: The hotel is decorated in observance of festival .\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2462"}
2460
  {"pretext": "Conversation:\nA: Have you made a reservation ?\nB: Yes , I have booked a table for four . My name is Liu Fan . \nA: We have had a window table reserved for you . This way , please . \nB: Thanks .\nA: You're welcome .\nB: Can we see the menu , please ? \nA: I'll bring it over .\nB: Anything good for this evening ?\nA: We have squirrel shaped mandarin fish , seeds prawn , etc .\nAssumption: The hotel is going with fishermen's festival.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2463"}
2461
  {"pretext": "Conversation:\nA: Have you made a reservation ?\nB: Yes , I have booked a table for four . My name is Liu Fan . \nA: We have had a window table reserved for you . This way , please . \nB: Thanks .\nA: You're welcome .\nB: Can we see the menu , please ? \nA: I'll bring it over .\nB: Anything good for this evening ?\nA: We have squirrel shaped mandarin fish , seeds prawn , etc . \nB: Very good , we'll take them all .\nAssumption: B is fond of sea food. B has never tasted sea food.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2464"}
 
2462
  {"pretext": "Conversation:\nA: You should save some money on parking here .\nB: Yeah , I don \u2019 t have to pay for a space on the street .\nAssumption: The government is illegally charging on public space.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2466"}
2463
  {"pretext": "Conversation:\nA: You should save some money on parking here .\nB: Yeah , I don \u2019 t have to pay for a space on the street . \nA: Really ? How long did it take you to find a spot yesterday ?\nB: Well , last night it took me half an hour to find a spot when I came home from work .\nAssumption: It's a narrow street. The parking slot is first come first.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2467"}
2464
  {"pretext": "Conversation:\nA: You should save some money on parking here .\nB: Yeah , I don \u2019 t have to pay for a space on the street . \nA: Really ? How long did it take you to find a spot yesterday ?\nB: Well , last night it took me half an hour to find a spot when I came home from work . \nA: You get home late , don \u2019 t you ? \nB: Yeah , around seven . Most of the street parking is gone by then .\nAssumption: B has to shut down his business after the staff disperse.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2468"}
 
 
 
 
 
 
1
  {"pretext": "Conversation:\nA: Can you do push-ups ?\nAssumption: B has the physical ability to do push-ups.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "5"}
2
  {"pretext": "Conversation:\nA: Can you do push-ups ?\nB: Of course I can . It's a piece of cake ! Believe it or not , I can do 30 push-ups a minute .\nAssumption: B knows how to do push ups.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "6"}
3
  {"pretext": "Conversation:\nA: Can you do push-ups ?\nB: Of course I can . It's a piece of cake ! Believe it or not , I can do 30 push-ups a minute .\nA: Really ? I think that's impossible !\nB: You mean 30 push-ups ?\nA: Yeah !\nB: It's easy . If you do exercise everyday , you can make it , too .\nAssumption: Its easy to do 30 pushups if you exercise everyday.\n", "options": ["Valid", "Invalid"], "correct answer": "Invalid", "id": "7"}
 
101
  {"pretext": "Conversation:\nA: Excuse me , sir , Is this the road to the peace Store ? \nB: You could get there this way , but it'd be faster to go along the Wort Street . \nA: Where's Wort Street , please ? \nB: Turn right at the third intersection , you'll see the street and then walk along the street to the south . \nA: How far is it from the Wort Street ?\nAssumption: The listener has knowledge about the distance between the referred place and the Wort Street.\n\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "105"}
102
  {"pretext": "Conversation:\nA: Excuse me , sir , Is this the road to the peace Store ? \nB: You could get there this way , but it'd be faster to go along the Wort Street . \nA: Where's Wort Street , please ? \nB: Turn right at the third intersection , you'll see the street and then walk along the street to the south . \nA: How far is it from the Wort Street ?\nB: Just walk for a few minutes , you'll find it .\nAssumption: You are capable of walking for a few minutes.\n\n\n", "options": ["Valid", "Invalid"], "correct answer": "Invalid", "id": "106"}
103
  {"pretext": "Conversation:\nA: Have you had a chance to look over the contract ?\nAssumption: The listener has been presented with a contract to review.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "107"}
104
+ {"pretext": "Conversation:\nA: Have you had a chance to look over the contract ?\nB: Yes . I've read it carefully .\nAssumption: The contract has been thoroughly examined.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "108"}
105
  {"pretext": "Conversation:\nA: Have you had a chance to look over the contract ?\nB: Yes . I've read it carefully .\nA: And do you have any questions ?\nAssumption: Your expected to have questions.\n", "options": ["Valid", "Invalid"], "correct answer": "Invalid", "id": "109"}
106
  {"pretext": "Conversation:\nA: Have you had a chance to look over the contract ?\nB: Yes . I've read it carefully .\nA: And do you have any questions ?\nB: No . But the contract stipulates that I will teach 22 hours a week.Will you have thatmany classes for me right away ?\nAssumption: The contract mentioned by the speaker is valid and accurate, and it indeed stipulates the requirement of teaching 22 hours a week.\n\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "110"}
107
  {"pretext": "Conversation:\nA: Have you had a chance to look over the contract ?\nB: Yes . I've read it carefully .\nA: And do you have any questions ?\nB: No . But the contract stipulates that I will teach 22 hours a week.Will you have thatmany classes for me right away ?\nA: No , probably not . For the first two weeks you may teach 10 or 15 hours .\nAssumption: The listener has the flexibility to teach fewer hours during the initial two weeks.\n\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "111"}
 
807
  {"pretext": "Conversation:\nA: Excuse me , but I'm looking for a gift for my friend . \nB: Is it a Chinese New Year's gift or a birthday gift ?\nA: Well , it's a wedding gift . \nB: Oh , I see . Let me guess ... something sexy for the new bride on her first night of marriage ?\nAssumption: B is too intervening.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "811"}
808
  {"pretext": "Conversation:\nA: Excuse me , but I'm looking for a gift for my friend . \nB: Is it a Chinese New Year's gift or a birthday gift ?\nA: Well , it's a wedding gift . \nB: Oh , I see . Let me guess ... something sexy for the new bride on her first night of marriage ? \nA: Basically . But I have no idea what to get ! She's American and kind of ...\nAssumption: A has a foreign girl friend .\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "812"}
809
  {"pretext": "Conversation:\nA: Excuse me , but I'm looking for a gift for my friend . \nB: Is it a Chinese New Year's gift or a birthday gift ?\nA: Well , it's a wedding gift . \nB: Oh , I see . Let me guess ... something sexy for the new bride on her first night of marriage ? \nA: Basically . But I have no idea what to get ! She's American and kind of ...\nB: Well-endowed ? Don't worry . I have some bras with bigger cup sizes in the back .\nAssumption: B is sarcastic.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "813"}
810
+ {"pretext": "Conversation:\nA: Why did you stay home today ?\nAssumption: A is mother of B.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "814"}
811
  {"pretext": "Conversation:\nA: Why did you stay home today ?\nB: I'm off today .\nAssumption: B has bunked his school.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "815"}
812
  {"pretext": "Conversation:\nA: Good evening ! I don't believe we've met before . May I introduce myself ? My name is Jack .\nAssumption: A is the man on the hill.\n", "options": ["Valid", "Invalid"], "correct answer": "Invalid", "id": "816"}
813
  {"pretext": "Conversation:\nA: Good evening ! I don't believe we've met before . May I introduce myself ? My name is Jack .\nB: It's a pleasure to meet you . My name is Lucy .\nAssumption: B is famous personality.\n", "options": ["Valid", "Invalid"], "correct answer": "Invalid", "id": "817"}
 
2225
  {"pretext": "Conversation:\nA: Where do you see yourself three years from now ?\nB: Working for your company ! As the top administrative assistant in your firm !\nA: Good answer , Miss Zhang-good answer ! Seriously , though , are you interested in staying in a staff-level position , or would you hope to move into management someday ? \nB: Well , I haven't thought much about this . I think it's too early to tell . What is the most important for me now is to do the best possible job for the company and learn and develop my skills as much as possible . If the company is happy with my work , then , I think I would like to consider other positions in the company . \nA: Fine . What kind of relationship do you think should exist between a boss and his or her employees ?\nAssumption: A has to clarify if the person has been recommended by an elite member.\n", "options": ["Valid", "Invalid"], "correct answer": "Invalid", "id": "2229"}
2226
  {"pretext": "Conversation:\nA: Where do you see yourself three years from now ?\nB: Working for your company ! As the top administrative assistant in your firm !\nA: Good answer , Miss Zhang-good answer ! Seriously , though , are you interested in staying in a staff-level position , or would you hope to move into management someday ? \nB: Well , I haven't thought much about this . I think it's too early to tell . What is the most important for me now is to do the best possible job for the company and learn and develop my skills as much as possible . If the company is happy with my work , then , I think I would like to consider other positions in the company . \nA: Fine . What kind of relationship do you think should exist between a boss and his or her employees ?\nB: Well , a working relationship . I think a company is a place to get work done . Certainly friendly , open relationships among all company employees is important . But I think an employee should be serious about his or her work responsibilities and have a working relationship with the boss .\nAssumption: There should be a team work .\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2230"}
2227
  {"pretext": "Conversation:\nA: That man's really a bore to me .\nAssumption: A has met a garrulous person.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2231"}
2228
+ {"pretext": "Conversation:\nA: That man's really a bore to me .\nB: Which one do you mean ?\nAssumption: B has a big list of people.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2232"}
2229
  {"pretext": "Conversation:\nA: Hello , Lucy , I heard you did a good deal in interview .\nAssumption: The person is a colleague .\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2233"}
2230
  {"pretext": "Conversation:\nA: Hello , Lucy , I heard you did a good deal in interview . \nB: It's OK .\nAssumption: B is not upto the mark.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2234"}
2231
  {"pretext": "Conversation:\nA: Hello , Lucy , I heard you did a good deal in interview . \nB: It's OK .\nA: What did you do in the interview ?\nAssumption: A has never been to an interview. A is appointed with out an interview.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2235"}
 
2291
  {"pretext": "Conversation:\nA: Hello , sir . Is there anything I can help you find ? \nB: Um ... Uh ... I'm just looking , thanks . \nA: Need a gift for your girlfriend or wife ?\nB: No , no , no . I'm just browsing . Thanks anyway .\nAssumption: B has nothing else to do.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2295"}
2292
  {"pretext": "Conversation:\nA: Hello , sir . Is there anything I can help you find ? \nB: Um ... Uh ... I'm just looking , thanks . \nA: Need a gift for your girlfriend or wife ?\nB: No , no , no . I'm just browsing . Thanks anyway . \nA: Well , if you need anything , just ask .\nAssumption: A has a doubt of theft\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2296"}
2293
  {"pretext": "Conversation:\nA: Hello , sir . Is there anything I can help you find ? \nB: Um ... Uh ... I'm just looking , thanks . \nA: Need a gift for your girlfriend or wife ?\nB: No , no , no . I'm just browsing . Thanks anyway . \nA: Well , if you need anything , just ask . \nB: Um ... well , where's the men's shoe department ?\nAssumption: B wants to avoid the person's attention.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2297"}
2294
+ {"pretext": "Conversation:\nA: I absolutely love what you're wearing today .\nAssumption: A is a flirt. A has a way of taking people into confidence.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2298"}
2295
  {"pretext": "Conversation:\nA: I absolutely love what you're wearing today .\nB: You do ? I just bought this outfit a couple days ago .\nAssumption: It's the speaker's birthday.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2299"}
2296
  {"pretext": "Conversation:\nA: I absolutely love what you're wearing today .\nB: You do ? I just bought this outfit a couple days ago .\nA: Seriously , it looks really nice on you . Where did you buy it from ?\nAssumption: B has a good taste of choice.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2300"}
2297
  {"pretext": "Conversation:\nA: I absolutely love what you're wearing today .\nB: You do ? I just bought this outfit a couple days ago .\nA: Seriously , it looks really nice on you . Where did you buy it from ? \nB: I bought it from the Macy's at the Santa Anita mall .\nAssumption: The dress may not fit on all .\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2301"}
 
2458
  {"pretext": "Conversation:\nA: Have you made a reservation ?\nB: Yes , I have booked a table for four . My name is Liu Fan . \nA: We have had a window table reserved for you . This way , please . \nB: Thanks .\nA: You're welcome .\nB: Can we see the menu , please ? \nA: I'll bring it over .\nB: Anything good for this evening ?\nAssumption: The hotel is decorated in observance of festival .\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2462"}
2459
  {"pretext": "Conversation:\nA: Have you made a reservation ?\nB: Yes , I have booked a table for four . My name is Liu Fan . \nA: We have had a window table reserved for you . This way , please . \nB: Thanks .\nA: You're welcome .\nB: Can we see the menu , please ? \nA: I'll bring it over .\nB: Anything good for this evening ?\nA: We have squirrel shaped mandarin fish , seeds prawn , etc .\nAssumption: The hotel is going with fishermen's festival.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2463"}
2460
  {"pretext": "Conversation:\nA: Have you made a reservation ?\nB: Yes , I have booked a table for four . My name is Liu Fan . \nA: We have had a window table reserved for you . This way , please . \nB: Thanks .\nA: You're welcome .\nB: Can we see the menu , please ? \nA: I'll bring it over .\nB: Anything good for this evening ?\nA: We have squirrel shaped mandarin fish , seeds prawn , etc . \nB: Very good , we'll take them all .\nAssumption: B is fond of sea food. B has never tasted sea food.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2464"}
2461
+ {"pretext": "Conversation:\nA: You should save some money on parking here .\nAssumption: A has no change in hand.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2465"}
2462
  {"pretext": "Conversation:\nA: You should save some money on parking here .\nB: Yeah , I don \u2019 t have to pay for a space on the street .\nAssumption: The government is illegally charging on public space.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2466"}
2463
  {"pretext": "Conversation:\nA: You should save some money on parking here .\nB: Yeah , I don \u2019 t have to pay for a space on the street . \nA: Really ? How long did it take you to find a spot yesterday ?\nB: Well , last night it took me half an hour to find a spot when I came home from work .\nAssumption: It's a narrow street. The parking slot is first come first.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2467"}
2464
  {"pretext": "Conversation:\nA: You should save some money on parking here .\nB: Yeah , I don \u2019 t have to pay for a space on the street . \nA: Really ? How long did it take you to find a spot yesterday ?\nB: Well , last night it took me half an hour to find a spot when I came home from work . \nA: You get home late , don \u2019 t you ? \nB: Yeah , around seven . Most of the street parking is gone by then .\nAssumption: B has to shut down his business after the staff disperse.\n", "options": ["Valid", "Invalid"], "correct answer": "Valid", "id": "2468"}
task_13/dev.jsonl CHANGED
@@ -1,5 +1,5 @@
1
- {"pretext": "Conversation:\nSpeaker_1: how can I find Lucas\nSpeaker_2: he journeyed to the closet and the pantry\nSpeaker_1: are all the bananas in the sunroom\nSpeaker_2: yes, they are all there\nSpeaker_1: did Lucas place the bananas there\nSpeaker_2: no\nSpeaker_1: did Hunter put the bananas there\nSpeaker_2: yes, he did\nSpeaker_1: where can I get the sweet potatoes\nSpeaker_2: the sweet potatoes are in the pantry\nSpeaker_1: did you put them there\nSpeaker_2: I put them there and went to the garden\nSpeaker_1: was Sophia there\nSpeaker_2: it is likely\nSpeaker_1: are some of the grapes in the garden\nSpeaker_2: I left three of them there\nSpeaker_1: did Lucas put the pineapples there\nSpeaker_2: no\nSpeaker_1: where did you see them\nSpeaker_2: Sophia and I put them in the closet\nQuestion: are some of the bananas in the sunroom?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "429"}
2
- {"pretext": "Conversation:\nSpeaker_1: are all the pears in the TV_room\nSpeaker_2: I have no idea\nSpeaker_1: did Noah leave them in the TV_room\nSpeaker_2: he left them there and travelled to the living_room\nSpeaker_1: how many plums are there\nSpeaker_2: two or three\nSpeaker_1: where did Elizabeth go\nSpeaker_2: she walked to the hallway or the TV_room\nSpeaker_1: did Noah put the cherries in the living_room\nSpeaker_2: he put them in the living_room or the dining_room\nSpeaker_1: where did you go\nSpeaker_2: I went to the dining_room\nSpeaker_1: are some of the bananas in the living_room\nSpeaker_2: yes\nSpeaker_1: where can I find the pumpkin\nSpeaker_2: it is in the dining_room or the hallway\nSpeaker_1: are some of the grapes in the hallway\nSpeaker_2: they are all there\nSpeaker_1: did you leave them in the hallway\nSpeaker_2: I left them there and walked to the dining_room\nQuestion: was Noah in the living_room?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "225"}
3
- {"pretext": "Conversation:\nSpeaker_1: how many limes are in the laundry\nSpeaker_2: there are at least three there\nSpeaker_1: how can I find Lily\nSpeaker_2: she said she journeyed to the hallway\nSpeaker_1: where are the grapefruits\nSpeaker_2: Lily said there is a blue treasure chest in the hallway\nSpeaker_1: did you leave the grapefruits there\nSpeaker_2: no, I didn't\nSpeaker_1: are all the grapefruits there\nSpeaker_2: I don't know\nSpeaker_1: where can I find the plums\nSpeaker_2: Ella said she put the plums in the playroom and walked to the workshop\nSpeaker_1: are all of them in the playroom\nSpeaker_2: yes, they are all there\nSpeaker_1: where were you\nSpeaker_2: I walked to the hallway and the workshop\nSpeaker_1: how many cherries are in the laundry\nSpeaker_2: there are four or five\nSpeaker_1: where can I get the radishes\nSpeaker_2: the radishes are in the workshop\nQuestion: are the plums in the hallway?\n", "options": ["yes", "no"], "correct answer": "no", "id": "459"}
4
- {"pretext": "Conversation:\nSpeaker_1: did Jacob put the cherries in the pantry\nSpeaker_2: he put them in the pantry or the cellar\nSpeaker_1: are all the persimmons there\nSpeaker_2: some persimmons are in the pantry\nSpeaker_1: were you there\nSpeaker_2: yes\nSpeaker_1: where did you see Alexander\nSpeaker_2: he was in the den\nSpeaker_1: did Jacob go there\nSpeaker_2: he walked to the cellar\nSpeaker_1: did he put the persimmons in the pantry\nSpeaker_2: he put them there and walked to the cellar\nSpeaker_1: did you see the potato\nSpeaker_2: there is a green envelope in the pantry\nSpeaker_1: what about the lemons\nSpeaker_2: they are in the lounge\nSpeaker_1: did Alexander put them in the lounge\nSpeaker_2: no, he didn't\nSpeaker_1: are all the lemons there\nSpeaker_2: some lemons are in the lounge\nQuestion: are all the lemons in the lounge?\n", "options": ["yes", "no"], "correct answer": "no", "id": "603"}
5
- {"pretext": "Conversation:\nSpeaker_1: did you leave the cherries in the back_yard\nSpeaker_2: I left them there and walked to the garden\nSpeaker_1: did you leave the broccolis there\nSpeaker_2: no\nSpeaker_1: where did Amelia go\nSpeaker_2: I know she didn't went to the back_yard\nSpeaker_1: where was she\nSpeaker_2: she said she went to the attic\nSpeaker_1: did you leave the turnips in the attic\nSpeaker_2: no\nSpeaker_1: was Owen there\nSpeaker_2: he walked to the back_yard\nSpeaker_1: did you leave the onions in the attic\nSpeaker_2: I left the cabbages there\nSpeaker_1: did you leave the onions there\nSpeaker_2: no, I didn't\nSpeaker_1: did Amelia leave them there\nSpeaker_2: no, she didn't\nSpeaker_1: did Owen leave them in the attic\nSpeaker_2: he said he left them in the TV_room\nQuestion: are the onions in the attic?\n", "options": ["yes", "no"], "correct answer": "no", "id": "284"}
 
1
+ {"pretext": "Conversation:\nSpeaker_1: did you go to the basement\nSpeaker_2: I walked to the cellar\nSpeaker_1: did you see the beans\nSpeaker_2: I have no idea\nSpeaker_1: what about the pumpkin\nSpeaker_2: it is in the hallway\nSpeaker_1: did you see the celeries\nSpeaker_2: there is a green pantry in the cellar\nSpeaker_1: did Mason place the celeries there\nSpeaker_2: he placed them there and walked to the hallway\nSpeaker_1: did he put the peaches in the cellar\nSpeaker_2: no, he didn't\nSpeaker_1: did Lily place them in the cellar\nSpeaker_2: no, she didn't\nSpeaker_1: where can I get the melons\nSpeaker_2: there is a red bottle in the cellar\nSpeaker_1: are all of them there\nSpeaker_2: yes\nSpeaker_1: where are the peaches\nSpeaker_2: the peaches are in the basement\nQuestion: are the melons in the cellar?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "0"}
2
+ {"pretext": "Conversation:\nSpeaker_1: did you put the cherries in the garden\nSpeaker_2: I put the beans there\nSpeaker_1: were you in the kitchen\nSpeaker_2: I journeyed to the dining_room\nSpeaker_1: how many celeries are in the kitchen\nSpeaker_2: there are three or four\nSpeaker_1: are all the green peppers in the garden\nSpeaker_2: Amelia said she saw some green peppers in the garden\nSpeaker_1: was Jack there\nSpeaker_2: he was not there\nSpeaker_1: did he go to the dining_room \nSpeaker_2: he was in the playroom\nSpeaker_1: did he place the cherries in the dining_room\nSpeaker_2: he placed the strawberries there\nSpeaker_1: did Amelia place them in the dining_room\nSpeaker_2: she placed the strawberries there\nSpeaker_1: did you leave them in the kitchen\nSpeaker_2: no\nSpeaker_1: how many peas are there\nSpeaker_2: there are at least two there\nQuestion: was Jack in the dining_room?\n", "options": ["yes", "no"], "correct answer": "no", "id": "1"}
3
+ {"pretext": "Conversation:\nSpeaker_1: are all the bananas in the porch\nSpeaker_2: yes, they are all there\nSpeaker_1: did you see the lemons\nSpeaker_2: the lemons are in the staircase or the porch\nSpeaker_1: how about the eggplants\nSpeaker_2: they are in the bathroom\nSpeaker_1: are some of them in the bathroom\nSpeaker_2: they are all there\nSpeaker_1: where can I get the corns\nSpeaker_2: they are in the bathroom or the cellar\nSpeaker_1: how many asparagus are in the bathroom\nSpeaker_2: there are at least one there\nSpeaker_1: did you place them there\nSpeaker_2: I placed them there and walked to the porch\nSpeaker_1: did Ella go there\nSpeaker_2: she was not in the bathroom\nSpeaker_1: or the porch\nSpeaker_2: Ella was in the porch if not in the staircase\nSpeaker_1: are some of the spinaches there\nSpeaker_2: two are there\nQuestion: are all the eggplants in the bathroom?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "2"}
4
+ {"pretext": "Conversation:\nSpeaker_1: was Lucas in the pantry\nSpeaker_2: no, Lucas was not there\nSpeaker_1: where was he\nSpeaker_2: he travelled to the pantry and the workshop\nSpeaker_1: did you see the potato\nSpeaker_2: Oliver said he put the potato in the pantry and travelled to the kitchen\nSpeaker_1: how about the grapefruits\nSpeaker_2: Aiden said there is a green treasure chest in the pantry\nSpeaker_1: did you leave them there\nSpeaker_2: I left them there and journeyed to the kitchen\nSpeaker_1: where can I get the sweet potatoes\nSpeaker_2: Lucas and I left the sweet potatoes in the workshop\nSpeaker_1: are some of them in the workshop\nSpeaker_2: Lucas said he put five of the sweet potatoes there\nSpeaker_1: are some of the pumpkins in the kitchen\nSpeaker_2: three pumpkins are in the kitchen\nSpeaker_1: are some of the persimmons in the workshop\nSpeaker_2: Lucas said he put three of them in the workshop\nSpeaker_1: did you see the carrots\nSpeaker_2: Oliver said there is a red cupboard in the laundry\nQuestion: is the woman sure about how many are the sweet potatoes?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "3"}
5
+ {"pretext": "Conversation:\nSpeaker_1: how many beans are in the hallway\nSpeaker_2: there are at least four there\nSpeaker_1: where are the asparagus\nSpeaker_2: they are in the laundry or the closet\nSpeaker_1: did you leave them in the laundry\nSpeaker_2: I left the grapefruits there\nSpeaker_1: did Ella put the peas there\nSpeaker_2: she put them in the hallway or the laundry\nSpeaker_1: where can I get the persimmons\nSpeaker_2: the persimmons are in the garden or the hallway\nSpeaker_1: where can I find the corns\nSpeaker_2: they are in the garden\nSpeaker_1: did you leave them in the garden\nSpeaker_2: no, I didn't\nSpeaker_1: how many corns are there\nSpeaker_2: three or four\nSpeaker_1: how many grapefruits are in the laundry\nSpeaker_2: three or four\nSpeaker_1: was Ella there\nSpeaker_2: she was in the closet\nQuestion: is the woman sure about how many are the beans?\n", "options": ["yes", "no"], "correct answer": "no", "id": "4"}
task_13/test.jsonl CHANGED
@@ -1,8 +1,3 @@
1
- {"pretext": "Conversation:\nSpeaker_1: did you go to the basement\nSpeaker_2: I walked to the cellar\nSpeaker_1: did you see the beans\nSpeaker_2: I have no idea\nSpeaker_1: what about the pumpkin\nSpeaker_2: it is in the hallway\nSpeaker_1: did you see the celeries\nSpeaker_2: there is a green pantry in the cellar\nSpeaker_1: did Mason place the celeries there\nSpeaker_2: he placed them there and walked to the hallway\nSpeaker_1: did he put the peaches in the cellar\nSpeaker_2: no, he didn't\nSpeaker_1: did Lily place them in the cellar\nSpeaker_2: no, she didn't\nSpeaker_1: where can I get the melons\nSpeaker_2: there is a red bottle in the cellar\nSpeaker_1: are all of them there\nSpeaker_2: yes\nSpeaker_1: where are the peaches\nSpeaker_2: the peaches are in the basement\nQuestion: are the melons in the cellar?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "0"}
2
- {"pretext": "Conversation:\nSpeaker_1: did you put the cherries in the garden\nSpeaker_2: I put the beans there\nSpeaker_1: were you in the kitchen\nSpeaker_2: I journeyed to the dining_room\nSpeaker_1: how many celeries are in the kitchen\nSpeaker_2: there are three or four\nSpeaker_1: are all the green peppers in the garden\nSpeaker_2: Amelia said she saw some green peppers in the garden\nSpeaker_1: was Jack there\nSpeaker_2: he was not there\nSpeaker_1: did he go to the dining_room \nSpeaker_2: he was in the playroom\nSpeaker_1: did he place the cherries in the dining_room\nSpeaker_2: he placed the strawberries there\nSpeaker_1: did Amelia place them in the dining_room\nSpeaker_2: she placed the strawberries there\nSpeaker_1: did you leave them in the kitchen\nSpeaker_2: no\nSpeaker_1: how many peas are there\nSpeaker_2: there are at least two there\nQuestion: was Jack in the dining_room?\n", "options": ["yes", "no"], "correct answer": "no", "id": "1"}
3
- {"pretext": "Conversation:\nSpeaker_1: are all the bananas in the porch\nSpeaker_2: yes, they are all there\nSpeaker_1: did you see the lemons\nSpeaker_2: the lemons are in the staircase or the porch\nSpeaker_1: how about the eggplants\nSpeaker_2: they are in the bathroom\nSpeaker_1: are some of them in the bathroom\nSpeaker_2: they are all there\nSpeaker_1: where can I get the corns\nSpeaker_2: they are in the bathroom or the cellar\nSpeaker_1: how many asparagus are in the bathroom\nSpeaker_2: there are at least one there\nSpeaker_1: did you place them there\nSpeaker_2: I placed them there and walked to the porch\nSpeaker_1: did Ella go there\nSpeaker_2: she was not in the bathroom\nSpeaker_1: or the porch\nSpeaker_2: Ella was in the porch if not in the staircase\nSpeaker_1: are some of the spinaches there\nSpeaker_2: two are there\nQuestion: are all the eggplants in the bathroom?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "2"}
4
- {"pretext": "Conversation:\nSpeaker_1: was Lucas in the pantry\nSpeaker_2: no, Lucas was not there\nSpeaker_1: where was he\nSpeaker_2: he travelled to the pantry and the workshop\nSpeaker_1: did you see the potato\nSpeaker_2: Oliver said he put the potato in the pantry and travelled to the kitchen\nSpeaker_1: how about the grapefruits\nSpeaker_2: Aiden said there is a green treasure chest in the pantry\nSpeaker_1: did you leave them there\nSpeaker_2: I left them there and journeyed to the kitchen\nSpeaker_1: where can I get the sweet potatoes\nSpeaker_2: Lucas and I left the sweet potatoes in the workshop\nSpeaker_1: are some of them in the workshop\nSpeaker_2: Lucas said he put five of the sweet potatoes there\nSpeaker_1: are some of the pumpkins in the kitchen\nSpeaker_2: three pumpkins are in the kitchen\nSpeaker_1: are some of the persimmons in the workshop\nSpeaker_2: Lucas said he put three of them in the workshop\nSpeaker_1: did you see the carrots\nSpeaker_2: Oliver said there is a red cupboard in the laundry\nQuestion: is the woman sure about how many are the sweet potatoes?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "3"}
5
- {"pretext": "Conversation:\nSpeaker_1: how many beans are in the hallway\nSpeaker_2: there are at least four there\nSpeaker_1: where are the asparagus\nSpeaker_2: they are in the laundry or the closet\nSpeaker_1: did you leave them in the laundry\nSpeaker_2: I left the grapefruits there\nSpeaker_1: did Ella put the peas there\nSpeaker_2: she put them in the hallway or the laundry\nSpeaker_1: where can I get the persimmons\nSpeaker_2: the persimmons are in the garden or the hallway\nSpeaker_1: where can I find the corns\nSpeaker_2: they are in the garden\nSpeaker_1: did you leave them in the garden\nSpeaker_2: no, I didn't\nSpeaker_1: how many corns are there\nSpeaker_2: three or four\nSpeaker_1: how many grapefruits are in the laundry\nSpeaker_2: three or four\nSpeaker_1: was Ella there\nSpeaker_2: she was in the closet\nQuestion: is the woman sure about how many are the beans?\n", "options": ["yes", "no"], "correct answer": "no", "id": "4"}
6
  {"pretext": "Conversation:\nSpeaker_1: how many grapes are in the sunroom\nSpeaker_2: one or two\nSpeaker_1: did you see the beans\nSpeaker_2: Lucas said there is a green basket in the sunroom\nSpeaker_1: how many beans are there\nSpeaker_2: three\nSpeaker_1: where was Lucas\nSpeaker_2: he said he went to the sunroom\nSpeaker_1: are all the green peppers in the kitchen\nSpeaker_2: yes, all of them are there\nSpeaker_1: did you leave them in the living_room\nSpeaker_2: no, I didn't\nSpeaker_1: did Sophia put them in the living_room\nSpeaker_2: she put them in the kitchen\nSpeaker_1: how many broccolis are there\nSpeaker_2: there are at least four there\nSpeaker_1: did Lucas place them there\nSpeaker_2: he placed them there and travelled to the sunroom\nSpeaker_1: are some of the cherries there\nSpeaker_2: two are there\nQuestion: are the cherries in the living_room?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "5"}
7
  {"pretext": "Conversation:\nSpeaker_1: are all the asparagus in the bedroom\nSpeaker_2: yes\nSpeaker_1: are some of the plums in the garage\nSpeaker_2: I left two there\nSpeaker_1: did you place the asparagus there\nSpeaker_2: no\nSpeaker_1: did you see the corns\nSpeaker_2: I'm not sure\nSpeaker_1: how many peaches are in the basement\nSpeaker_2: there are at least three there\nSpeaker_1: where did Sophia go\nSpeaker_2: she said she was in the bedroom\nSpeaker_1: did she place the grapefruits in the playroom\nSpeaker_2: she placed them in the garage if not the playroom\nSpeaker_1: did she place the peas in the playroom\nSpeaker_2: no, she didn't\nSpeaker_1: are all the sweet potatoes there\nSpeaker_2: Owen said he saw some sweet potatoes in the playroom\nSpeaker_1: did Sophia leave the sweet potatoes there\nSpeaker_2: she left them there and journeyed to the bedroom\nQuestion: did the woman put the asparagus in the bedroom?\n", "options": ["yes", "no"], "correct answer": "no", "id": "6"}
8
  {"pretext": "Conversation:\nSpeaker_1: are all the celeries in the basement\nSpeaker_2: Sophia said she saw some celeries in the basement\nSpeaker_1: how many limes are in the dining_room\nSpeaker_2: one or two\nSpeaker_1: did Emily place the peas in the basement\nSpeaker_2: no\nSpeaker_1: are some of the radishes in the front_yard\nSpeaker_2: three are there\nSpeaker_1: how many lettuces are there\nSpeaker_2: there are five\nSpeaker_1: did Emily put them in the basement\nSpeaker_2: no\nSpeaker_1: did Sophia put them there\nSpeaker_2: she put them in the front_yard\nSpeaker_1: did Emily go there\nSpeaker_2: she went to the front_yard\nSpeaker_1: did she put the limes in the front_yard\nSpeaker_2: no\nSpeaker_1: where did you go\nSpeaker_2: I went to the dining_room and the porch\nQuestion: are some of the celeries in the basement?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "7"}
@@ -223,6 +218,7 @@
223
  {"pretext": "Conversation:\nSpeaker_1: where can I get the cherries\nSpeaker_2: Abigail put the cherries in the dining_room and went to the dining_room\nSpeaker_1: how many are in the dining_room\nSpeaker_2: two or three\nSpeaker_1: did you see the bananas\nSpeaker_2: I have no idea\nSpeaker_1: how about the sweet potato\nSpeaker_2: the sweet potato is in the closet\nSpeaker_1: how about the limes\nSpeaker_2: I have no idea\nSpeaker_1: were you in the hall\nSpeaker_2: I returned to the dining_room\nSpeaker_1: are some of the grapes there\nSpeaker_2: I put all of them there\nSpeaker_1: are all the apples in the closet\nSpeaker_2: I'm not sure\nSpeaker_1: how can I find Benjamin\nSpeaker_2: he said he walked to the closet and the hall\nSpeaker_1: did he leave the potato in the dining_room\nSpeaker_2: no\nQuestion: was Benjamin in the hall?\n", "options": ["yes", "no"], "correct answer": "no", "id": "222"}
224
  {"pretext": "Conversation:\nSpeaker_1: did you place the asparagus in the bathroom\nSpeaker_2: no, I didn't\nSpeaker_1: did Carter leave them in the bathroom\nSpeaker_2: no, he didn't\nSpeaker_1: was he in the bathroom\nSpeaker_2: he journeyed to the master_bedroom\nSpeaker_1: where can I get the pineapples\nSpeaker_2: they are in the bathroom or the master_bedroom\nSpeaker_1: how about the grapefruits\nSpeaker_2: there is a blue suitcase in the crawlspace\nSpeaker_1: did Carter put them in the crawlspace\nSpeaker_2: he put them there and walked to the master_bedroom\nSpeaker_1: did you go there\nSpeaker_2: I was in the bathroom\nSpeaker_1: are some of the bananas in the front_yard\nSpeaker_2: Ethan said he put five there\nSpeaker_1: where can I find the lemons\nSpeaker_2: they are in the front_yard\nSpeaker_1: are some of them in the front_yard\nSpeaker_2: four are in the front_yard\nQuestion: are some of the lemons in the front_yard?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "223"}
225
  {"pretext": "Conversation:\nSpeaker_1: was Carter in the basement\nSpeaker_2: he was in the dining_room\nSpeaker_1: where can I get the broccoli\nSpeaker_2: Alexander left the broccoli in the basement and went to the basement\nSpeaker_1: where are the turnips\nSpeaker_2: the turnips are in the garage or the dining_room\nSpeaker_1: how many carrots are in the dining_room\nSpeaker_2: four or five\nSpeaker_1: are some of the persimmons in the garage\nSpeaker_2: Alexander said he left three of them in the garage\nSpeaker_1: how many peas are in the attic\nSpeaker_2: four or five\nSpeaker_1: did you go there\nSpeaker_2: I was in the basement\nSpeaker_1: did you place the carrots there\nSpeaker_2: I placed them in the dining_room\nSpeaker_1: where can I get the lettuces\nSpeaker_2: Alexander said there is a red container in the garage\nSpeaker_1: how many lettuces are there\nSpeaker_2: three or four\nQuestion: is the woman sure about how many are the carrots?\n", "options": ["yes", "no"], "correct answer": "no", "id": "224"}
 
226
  {"pretext": "Conversation:\nSpeaker_1: did Jackson put the corns in the study\nSpeaker_2: he put them in the workshop if not the study\nSpeaker_1: did you see the spinach\nSpeaker_2: the spinach is in the study\nSpeaker_1: where can I find the bananas\nSpeaker_2: they are in the garden\nSpeaker_1: did Aria place the bananas there\nSpeaker_2: no\nSpeaker_1: where can I find the onions\nSpeaker_2: the onions are in the living_room or the study\nSpeaker_1: where can I get the turnips\nSpeaker_2: the turnips are in the living_room\nSpeaker_1: where are the asparagus\nSpeaker_2: I don't know\nSpeaker_1: did Jackson place them in the study\nSpeaker_2: he placed the spinach there\nSpeaker_1: where can I get the broccolis\nSpeaker_2: Jackson put the broccolis in the garden and journeyed to the workshop\nSpeaker_1: did he place the turnips in the garden\nSpeaker_2: no\nQuestion: is the woman sure about who put the bananas the garden?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "226"}
227
  {"pretext": "Conversation:\nSpeaker_1: did Isabella leave the bananas in the bedroom\nSpeaker_2: no\nSpeaker_1: are some of them in the cellar\nSpeaker_2: they are all there\nSpeaker_1: how many grapefruits are in the bedroom\nSpeaker_2: there are five\nSpeaker_1: are some of the peas in the cellar\nSpeaker_2: four are there\nSpeaker_1: did Isabella put them there\nSpeaker_2: no, she didn't\nSpeaker_1: where was she\nSpeaker_2: she was in the cellar or the bedroom\nSpeaker_1: did you go to the cellar\nSpeaker_2: I was in the workshop\nSpeaker_1: did Hannah put the bananas in the cellar\nSpeaker_2: no\nSpeaker_1: did she go there\nSpeaker_2: she was in the office\nSpeaker_1: are some of the beans in the workshop\nSpeaker_2: I left three of the beans there\nQuestion: did Isabella put the peas in the cellar?\n", "options": ["yes", "no"], "correct answer": "no", "id": "227"}
228
  {"pretext": "Conversation:\nSpeaker_1: did you put the asparagus in the basement\nSpeaker_2: I put the asparagus and the carrots there\nSpeaker_1: was Oliver in the pantry\nSpeaker_2: he was in the staircase\nSpeaker_1: are all the asparagus in the basement\nSpeaker_2: some asparagus are in the basement\nSpeaker_1: where can I find the radishes\nSpeaker_2: Oliver and I left them in the staircase\nSpeaker_1: are some of them in the staircase\nSpeaker_2: three are there\nSpeaker_1: how many carrots are in the basement\nSpeaker_2: there are two or three\nSpeaker_1: where did Mason go\nSpeaker_2: he said he was in the pantry\nSpeaker_1: did he place the strawberries in the pantry\nSpeaker_2: he said he placed the strawberries and the melons there\nSpeaker_1: did you see the eggplant\nSpeaker_2: the eggplant is in the study\nSpeaker_1: what about the grapes\nSpeaker_2: Oliver and I put them in the staircase\nQuestion: are the melons in the pantry?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "228"}
@@ -281,6 +277,7 @@
281
  {"pretext": "Conversation:\nSpeaker_1: are some of the peaches in the living_room\nSpeaker_2: Logan said he saw they all there\nSpeaker_1: where can I find the radishes\nSpeaker_2: there is a green crate in the playroom\nSpeaker_1: what about the carrots\nSpeaker_2: the carrots are in the living_room\nSpeaker_1: how about the strawberries\nSpeaker_2: Logan left them in the laundry and journeyed to the playroom\nSpeaker_1: are all of them in the laundry\nSpeaker_2: some are there\nSpeaker_1: where can I find the tomatoes\nSpeaker_2: there is a green box in the laundry\nSpeaker_1: what about the eggplants\nSpeaker_2: there is a green crate in the hall\nSpeaker_1: how about the grapes\nSpeaker_2: Jackson said he left the grapes in the hall and journeyed to the playroom\nSpeaker_1: how many are in the hall\nSpeaker_2: there are at least one there\nSpeaker_1: were you there\nSpeaker_2: I was in the playroom\nQuestion: are some of the strawberries in the laundry?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "281"}
282
  {"pretext": "Conversation:\nSpeaker_1: where can I get the cabbages\nSpeaker_2: they are in the cellar\nSpeaker_1: did you place them in the cellar\nSpeaker_2: I placed them and the green peppers there\nSpeaker_1: where can I get the lemons\nSpeaker_2: they are in the cellar or the den\nSpeaker_1: did Oliver put them in the kitchen\nSpeaker_2: no\nSpeaker_1: what about Lucas\nSpeaker_2: no, he didn't\nSpeaker_1: where can I find the persimmons\nSpeaker_2: there is a blue bucket in the kitchen\nSpeaker_1: did Lucas go there\nSpeaker_2: no, he was not there\nSpeaker_1: where was he\nSpeaker_2: he walked to the workshop\nSpeaker_1: did you see the strawberries\nSpeaker_2: Oliver and I put them in the kitchen\nSpeaker_1: where can I find the watermelons\nSpeaker_2: I'm not sure\nQuestion: did the woman put the cabbages in the cellar?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "282"}
283
  {"pretext": "Conversation:\nSpeaker_1: where was Logan\nSpeaker_2: he said he walked to the laundry\nSpeaker_1: did you place the lemons in the bedroom\nSpeaker_2: I didn't journey to the bedroom\nSpeaker_1: did Logan leave them in the bedroom\nSpeaker_2: he said he didn't journey there\nSpeaker_1: did Jack place them in the bedroom\nSpeaker_2: no\nSpeaker_1: are some of the radishes there\nSpeaker_2: five are there\nSpeaker_1: did Jack place them there\nSpeaker_2: he placed them there and walked to the sunroom\nSpeaker_1: where are the grapefruits\nSpeaker_2: they are in the hall or the bedroom\nSpeaker_1: are some of the turnips in the hall\nSpeaker_2: all of them are in the hall\nSpeaker_1: how many lemons are in the sunroom\nSpeaker_2: four or five\nSpeaker_1: where are the corns\nSpeaker_2: I put them in the laundry and journeyed to the hall\nQuestion: was the woman in the hall?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "283"}
 
284
  {"pretext": "Conversation:\nSpeaker_1: are some of the pumpkins in the lounge\nSpeaker_2: I don't know\nSpeaker_1: was Amelia in the study\nSpeaker_2: she was in the workshop\nSpeaker_1: did you put the pumpkins in the master_bedroom\nSpeaker_2: no\nSpeaker_1: did Isabella place them there\nSpeaker_2: I didn't see her\nSpeaker_1: are all the lettuces in the lounge\nSpeaker_2: some lettuces are in the lounge\nSpeaker_1: are all the persimmons in the master_bedroom\nSpeaker_2: some persimmons are in the master_bedroom\nSpeaker_1: where are the cabbages\nSpeaker_2: Amelia and I put the cabbages in the workshop\nSpeaker_1: are all of them in the workshop\nSpeaker_2: yes\nSpeaker_1: where can I find the sweet potatoes\nSpeaker_2: they are in the study or the workshop\nSpeaker_1: are some of the radishes in the study\nSpeaker_2: Isabella said she left five of them in the study\nQuestion: are the cabbages in the master_bedroom?\n", "options": ["yes", "no"], "correct answer": "no", "id": "285"}
285
  {"pretext": "Conversation:\nSpeaker_1: where did you see Mia\nSpeaker_2: she said she went to the bathroom and the patio\nSpeaker_1: did you put the bananas in the patio\nSpeaker_2: I put the lettuces there\nSpeaker_1: did Mason place them there\nSpeaker_2: no\nSpeaker_1: did Alexander leave them there\nSpeaker_2: he left the cabbages there\nSpeaker_1: are some of the pears in the closet\nSpeaker_2: I put three there\nSpeaker_1: where was Mason\nSpeaker_2: he went to the sunroom\nSpeaker_1: are some of the cherries there\nSpeaker_2: yes, there are some in the sunroom\nSpeaker_1: are some of the cabbages in the patio\nSpeaker_2: three are there\nSpeaker_1: are all the lettuces there\nSpeaker_2: yes, they are all there\nSpeaker_1: are some of the pumpkins in the sunroom\nSpeaker_2: four are in the sunroom\nQuestion: are some of the cabbages in the patio?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "286"}
286
  {"pretext": "Conversation:\nSpeaker_1: did Jack put the asparagus in the attic\nSpeaker_2: I didn't see him\nSpeaker_1: where did you see Ava\nSpeaker_2: I know she didn't went to the workshop\nSpeaker_1: where was she\nSpeaker_2: she said she travelled to the sunroom and the workshop\nSpeaker_1: did you go to the attic\nSpeaker_2: I was in the attic\nSpeaker_1: did you put the pineapples there\nSpeaker_2: no\nSpeaker_1: what about Ava\nSpeaker_2: she put them in the attic or the study\nSpeaker_1: did she put the banana in the attic\nSpeaker_2: no, she didn't\nSpeaker_1: are some of the broccolis there\nSpeaker_2: three broccolis are in the attic\nSpeaker_1: where are the potatoes\nSpeaker_2: I don't know\nSpeaker_1: what about the eggplants\nSpeaker_2: the eggplants are in the workshop or the attic\nQuestion: was the woman in the attic?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "287"}
@@ -425,6 +422,7 @@
425
  {"pretext": "Conversation:\nSpeaker_1: did Emma place the apples in the porch\nSpeaker_2: she was not there\nSpeaker_1: did you leave them there\nSpeaker_2: I left the radishes there\nSpeaker_1: did Noah put the bananas in the kitchen\nSpeaker_2: he put the beans there\nSpeaker_1: how many celeries are in the TV_room\nSpeaker_2: there are four or five\nSpeaker_1: where were you\nSpeaker_2: I journeyed to the TV_room and the porch\nSpeaker_1: are some of the limes in the kitchen\nSpeaker_2: all of them are in the kitchen\nSpeaker_1: where did you see Noah\nSpeaker_2: he journeyed to the kitchen and the lounge\nSpeaker_1: did he put the persimmons in the kitchen\nSpeaker_2: he put them in the kitchen or the lounge\nSpeaker_1: where can I find the cherries\nSpeaker_2: Emma and I left the cherries in the TV_room\nSpeaker_1: how many are in the TV_room\nSpeaker_2: two or three\nQuestion: are some of the limes in the kitchen?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "426"}
426
  {"pretext": "Conversation:\nSpeaker_1: where did you go\nSpeaker_2: I was in the bathroom\nSpeaker_1: did you leave the pineapples there\nSpeaker_2: I left them in the master_bedroom\nSpeaker_1: are some of them in the master_bedroom\nSpeaker_2: yes, there are some in the master_bedroom\nSpeaker_1: are some of the spinaches in the TV_room\nSpeaker_2: I'm not sure\nSpeaker_1: where did Owen go\nSpeaker_2: he said he journeyed to the TV_room\nSpeaker_1: are all the strawberries in the bathroom\nSpeaker_2: some are there\nSpeaker_1: did Charlotte place the grapefruits there\nSpeaker_2: I didn't see her\nSpeaker_1: where can I get them\nSpeaker_2: Oliver said there is a green container in the attic\nSpeaker_1: did Owen place the spinaches there\nSpeaker_2: he placed them in the TV_room if not the attic\nSpeaker_1: are some of the potatoes in the bathroom\nSpeaker_2: yes, some of them are there\nQuestion: was the woman in the bathroom?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "427"}
427
  {"pretext": "Conversation:\nSpeaker_1: did Chloe place the peas in the front_yard\nSpeaker_2: I have no idea\nSpeaker_1: did you put the potatoes there\nSpeaker_2: I put the cabbages there\nSpeaker_1: are some of the spinaches there\nSpeaker_2: two are in the front_yard\nSpeaker_1: did Chloe go there\nSpeaker_2: she was in the garage\nSpeaker_1: where are the pumpkins\nSpeaker_2: the pumpkins are in the bedroom\nSpeaker_1: where were you\nSpeaker_2: I was in the laundry\nSpeaker_1: where can I get the pineapples\nSpeaker_2: Chloe said there is a blue box in the garage\nSpeaker_1: what about the cherries\nSpeaker_2: they are in the front_yard or the garage\nSpeaker_1: how many cabbages are in the front_yard\nSpeaker_2: there are one or two\nSpeaker_1: are some of the peas in the bedroom\nSpeaker_2: yes\nQuestion: are the peas in the bedroom?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "428"}
 
428
  {"pretext": "Conversation:\nSpeaker_1: are some of the lemons in the bedroom\nSpeaker_2: four are in the bedroom\nSpeaker_1: are some of the cabbages there\nSpeaker_2: they are all there\nSpeaker_1: are some of the grapes in the cellar\nSpeaker_2: I put four of them there\nSpeaker_1: did James leave the plum there\nSpeaker_2: I didn't see him\nSpeaker_1: how many peaches are in the kitchen\nSpeaker_2: three or four\nSpeaker_1: was Jacob there\nSpeaker_2: yes, he was there\nSpeaker_1: did you see the pineapples\nSpeaker_2: they are in the office or the kitchen\nSpeaker_1: did you place them in the kitchen\nSpeaker_2: I placed the green peppers there\nSpeaker_1: did you see the melons\nSpeaker_2: Sophia said there is a red bathtub in the office\nSpeaker_1: how many\nSpeaker_2: I don't know\nQuestion: is the woman sure about how many are the grapes?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "430"}
429
  {"pretext": "Conversation:\nSpeaker_1: did you see the strawberries\nSpeaker_2: they are in the front_yard or the TV_room\nSpeaker_1: where were you\nSpeaker_2: I walked to the crawlspace and the cellar\nSpeaker_1: did Noah place the strawberries there\nSpeaker_2: no, he didn't\nSpeaker_1: did you place them in the cellar\nSpeaker_2: no\nSpeaker_1: did Aiden put them in the cellar\nSpeaker_2: he put the green peppers there\nSpeaker_1: where was he\nSpeaker_2: he travelled to the cellar and the TV_room\nSpeaker_1: are all the turnips in the crawlspace\nSpeaker_2: some are there\nSpeaker_1: did Noah go there\nSpeaker_2: Noah journeyed to the crawlspace or the front_yard\nSpeaker_1: how many green peppers are in the cellar\nSpeaker_2: one or two\nSpeaker_1: how many plums are there\nSpeaker_2: three or four\nQuestion: are some of the turnips in the crawlspace?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "431"}
430
  {"pretext": "Conversation:\nSpeaker_1: did you go to the bedroom\nSpeaker_2: yes\nSpeaker_1: where can I get the celeries\nSpeaker_2: I put them in the garden and went to the bedroom\nSpeaker_1: did you see the apple\nSpeaker_2: it is in the garden or the bedroom\nSpeaker_1: did James go to the bedroom \nSpeaker_2: he was not there\nSpeaker_1: where was he\nSpeaker_2: he said he was in the front_yard\nSpeaker_1: how many cucumbers are in the front_yard\nSpeaker_2: there are at least one there\nSpeaker_1: how many beans are in the hall\nSpeaker_2: there are at least one there\nSpeaker_1: where can I find the asparagus\nSpeaker_2: I put them in the garden and went to the bedroom\nSpeaker_1: are some of them in the garden\nSpeaker_2: all of them are in the garden\nSpeaker_1: did you put the apple there\nSpeaker_2: no, I didn't\nQuestion: is the woman sure about how many are the cucumbers?\n", "options": ["yes", "no"], "correct answer": "no", "id": "432"}
@@ -454,6 +452,7 @@
454
  {"pretext": "Conversation:\nSpeaker_1: how many strawberries are in the bedroom\nSpeaker_2: five\nSpeaker_1: where can I find the melon\nSpeaker_2: the melon is in the garage\nSpeaker_1: did you place the melon there\nSpeaker_2: yes\nSpeaker_1: where can I find the banana\nSpeaker_2: it is in the back_yard\nSpeaker_1: what about the plums\nSpeaker_2: the plums are in the basement\nSpeaker_1: where can I find the turnips\nSpeaker_2: they are in the back_yard or the bedroom\nSpeaker_1: how about the cabbages\nSpeaker_2: they are in the garage\nSpeaker_1: did you leave them in the garage\nSpeaker_2: I left them and the melon there\nSpeaker_1: where can I get the green pepper\nSpeaker_2: the green pepper is in the bedroom or the basement\nSpeaker_1: did you place it in the back_yard\nSpeaker_2: no, I didn't\nQuestion: was the woman in the garage?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "456"}
455
  {"pretext": "Conversation:\nSpeaker_1: where are the broccolis\nSpeaker_2: Logan said there is a green cupboard in the TV_room\nSpeaker_1: what about the corn\nSpeaker_2: the corn is in the kitchen\nSpeaker_1: where are the plums\nSpeaker_2: they are in the workshop\nSpeaker_1: where are the cherries\nSpeaker_2: there is a green basket in the kitchen\nSpeaker_1: did Emma place them in the kitchen\nSpeaker_2: no\nSpeaker_1: did you see the radishes\nSpeaker_2: they are in the TV_room\nSpeaker_1: did Chloe put the radishes there\nSpeaker_2: she put them there and journeyed to the workshop\nSpeaker_1: were you there\nSpeaker_2: I went to the kitchen\nSpeaker_1: how many cherries are there\nSpeaker_2: there are two\nSpeaker_1: was Emma there\nSpeaker_2: she was in the kitchen or the basement\nQuestion: was the woman in the kitchen?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "457"}
456
  {"pretext": "Conversation:\nSpeaker_1: how can I find Evelyn\nSpeaker_2: she said she journeyed to the front_yard\nSpeaker_1: did you see the cabbage\nSpeaker_2: Jack left it in the crawlspace and travelled to the den\nSpeaker_1: what about the pears\nSpeaker_2: Jack put the pears in the crawlspace and journeyed to the den\nSpeaker_1: what about the peas\nSpeaker_2: they are in the crawlspace or the playroom\nSpeaker_1: where can I find the radishes\nSpeaker_2: they are in the playroom or the front_yard\nSpeaker_1: where can I find the pineapple\nSpeaker_2: there is a green bottle in the den\nSpeaker_1: did you put it there\nSpeaker_2: yes, I did\nSpeaker_1: are some of the carrots in the front_yard\nSpeaker_2: Evelyn said she left five of the carrots there\nSpeaker_1: did she leave the radishes in the front_yard\nSpeaker_2: yes\nSpeaker_1: where can I get the grapefruits\nSpeaker_2: the grapefruits are in the playroom\nQuestion: is the woman sure about who put the cabbage the crawlspace?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "458"}
 
457
  {"pretext": "Conversation:\nSpeaker_1: did you see the apple\nSpeaker_2: it is in the attic or the garden\nSpeaker_1: where did you see Mila\nSpeaker_2: she walked to the garden\nSpeaker_1: are some of the carrots in the attic\nSpeaker_2: I have no idea\nSpeaker_1: where can I get the peas\nSpeaker_2: they are in the master_bedroom\nSpeaker_1: did you put the melons there\nSpeaker_2: no, I didn't\nSpeaker_1: are some of them in the hallway\nSpeaker_2: Liam said he left two there\nSpeaker_1: where are the corns\nSpeaker_2: Liam said there is a blue envelope in the hallway\nSpeaker_1: are some of the corns there\nSpeaker_2: five are in the hallway\nSpeaker_1: where are the carrots\nSpeaker_2: the carrots are in the attic or the hallway\nSpeaker_1: how about the orange\nSpeaker_2: there is a red cupboard in the garden\nQuestion: is the woman sure about how many are the carrots?\n", "options": ["yes", "no"], "correct answer": "no", "id": "460"}
458
  {"pretext": "Conversation:\nSpeaker_1: where can I get the corn\nSpeaker_2: the corn is in the garden or the lounge\nSpeaker_1: did you place it in the garden\nSpeaker_2: no\nSpeaker_1: did Chloe place it in the garden\nSpeaker_2: she placed it there and travelled to the lounge\nSpeaker_1: where were you\nSpeaker_2: I journeyed to the pantry and the staircase\nSpeaker_1: where can I get the grapefruits\nSpeaker_2: Elizabeth said she left the grapefruits in the staircase and journeyed to the staircase\nSpeaker_1: are some of them in the staircase\nSpeaker_2: three are in the staircase\nSpeaker_1: where are the melons\nSpeaker_2: they are in the garden or the lounge\nSpeaker_1: how many strawberries are in the lounge\nSpeaker_2: three or four\nSpeaker_1: are all the radishes in the pantry\nSpeaker_2: yes\nSpeaker_1: where can I get the peas\nSpeaker_2: Elizabeth said there is a red envelope in the garden\nQuestion: did Chloe put the corn in the garden?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "461"}
459
  {"pretext": "Conversation:\nSpeaker_1: where was Hunter\nSpeaker_2: he said he was in the attic\nSpeaker_1: where can I find the celeries\nSpeaker_2: Hunter and I put them in the attic\nSpeaker_1: are some of them in the attic\nSpeaker_2: I don't know\nSpeaker_1: where can I find the plum\nSpeaker_2: Oliver said there is a green box in the dining_room\nSpeaker_1: are all the grapes in the bedroom\nSpeaker_2: yes, they are all there\nSpeaker_1: are some of the asparagus there\nSpeaker_2: Jayden said he put five of the asparagus there\nSpeaker_1: how many apples are in the living_room\nSpeaker_2: there are at least four there\nSpeaker_1: did Jayden place the beans there\nSpeaker_2: he said he didn't go back there\nSpeaker_1: did you leave them in the living_room\nSpeaker_2: no\nSpeaker_1: how many are in the dining_room\nSpeaker_2: there are four or five\nQuestion: is the woman sure about how many are the beans?\n", "options": ["yes", "no"], "correct answer": "no", "id": "462"}
@@ -597,6 +596,7 @@
597
  {"pretext": "Conversation:\nSpeaker_1: are all the persimmons in the pantry\nSpeaker_2: I saw some persimmons in the pantry\nSpeaker_1: where are the peaches\nSpeaker_2: they are in the bathroom or the dining_room\nSpeaker_1: what about the asparagus\nSpeaker_2: Aria put them in the pantry and walked to the pantry\nSpeaker_1: are all of them in the pantry\nSpeaker_2: yes, they are all there\nSpeaker_1: are some of the broccolis in the living_room\nSpeaker_2: two are there\nSpeaker_1: did you leave the broccolis there\nSpeaker_2: I left them there and went to the pantry\nSpeaker_1: are all the pears in the bathroom\nSpeaker_2: yes, all of them are there\nSpeaker_1: where can I find the turnip\nSpeaker_2: I don't know\nSpeaker_1: how about the eggplants\nSpeaker_2: they are in the dining_room or the living_room\nSpeaker_1: how many grapes are in the dining_room\nSpeaker_2: there are four\nQuestion: did the woman put the broccolis in the living_room?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "600"}
598
  {"pretext": "Conversation:\nSpeaker_1: did you see the grapefruits\nSpeaker_2: the grapefruits are in the office\nSpeaker_1: what about the apples\nSpeaker_2: the apples are in the bathroom\nSpeaker_1: how about the peaches\nSpeaker_2: the peaches are in the den\nSpeaker_1: did you put the peaches there\nSpeaker_2: I put them there and walked to the kitchen\nSpeaker_1: was Chloe in the bathroom\nSpeaker_2: she was in the den\nSpeaker_1: are some of the peaches there\nSpeaker_2: all of the peaches are in the den\nSpeaker_1: was Noah there\nSpeaker_2: no\nSpeaker_1: where was he\nSpeaker_2: he was in the bathroom\nSpeaker_1: are some of the celeries there\nSpeaker_2: Noah said he put two there\nSpeaker_1: did you see the grapes\nSpeaker_2: they are in the office\nQuestion: is the woman sure about how many are the celeries?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "601"}
599
  {"pretext": "Conversation:\nSpeaker_1: how many cabbages are in the den\nSpeaker_2: I don't know\nSpeaker_1: where did you see them\nSpeaker_2: I put them in the den and went to the TV_room\nSpeaker_1: what about the cherries\nSpeaker_2: Jayden put the cherries in the TV_room and walked to the TV_room\nSpeaker_1: are all of them in the TV_room\nSpeaker_2: yes\nSpeaker_1: was Abigail there\nSpeaker_2: she went to the den\nSpeaker_1: how many broccolis are there\nSpeaker_2: there are three\nSpeaker_1: did Jayden put the broccolis there\nSpeaker_2: no, he didn't\nSpeaker_1: did you place them in the den\nSpeaker_2: I placed them there and walked to the TV_room\nSpeaker_1: did Jayden put the strawberries there\nSpeaker_2: he said he put them in the bedroom\nSpeaker_1: did you see the celery\nSpeaker_2: Abigail left it in the TV_room and journeyed to the TV_room\nQuestion: are some of the cherries in the TV_room?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "602"}
 
600
  {"pretext": "Conversation:\nSpeaker_1: how can I find Jack\nSpeaker_2: he travelled to the workshop and the laundry\nSpeaker_1: how many lettuces are in the pantry\nSpeaker_2: one or two\nSpeaker_1: how can I find Alexander\nSpeaker_2: he went to the workshop\nSpeaker_1: did you go there\nSpeaker_2: I returned to the attic\nSpeaker_1: where are the sweet potatoes\nSpeaker_2: Alexander and I put the sweet potatoes in the workshop\nSpeaker_1: did you leave the lettuces in the laundry\nSpeaker_2: no\nSpeaker_1: where is the plum\nSpeaker_2: there is a green envelope in the attic\nSpeaker_1: did Jack leave it in the attic\nSpeaker_2: no, he didn't\nSpeaker_1: where can I find the grapes\nSpeaker_2: the grapes are in the workshop or the laundry\nSpeaker_1: are some of the green peppers in the pantry\nSpeaker_2: four are there\nQuestion: is the woman sure about how many are the lettuces?\n", "options": ["yes", "no"], "correct answer": "no", "id": "604"}
601
  {"pretext": "Conversation:\nSpeaker_1: how can I find Emma\nSpeaker_2: she travelled to the attic\nSpeaker_1: how many radishes are there\nSpeaker_2: four or five\nSpeaker_1: where can I find the eggplant\nSpeaker_2: Emma and I left the eggplant in the attic\nSpeaker_1: are all the peaches in the front_yard\nSpeaker_2: yes\nSpeaker_1: did you see the broccoli\nSpeaker_2: it is in the crawlspace or the workshop\nSpeaker_1: where can I get the persimmon\nSpeaker_2: there is a blue bottle in the crawlspace\nSpeaker_1: where are the pineapples\nSpeaker_2: Isla said there is a blue crate in the workshop\nSpeaker_1: did Evelyn place them in the workshop\nSpeaker_2: she placed them there and journeyed to the crawlspace\nSpeaker_1: are all of them in the workshop\nSpeaker_2: some pineapples are in the workshop\nSpeaker_1: where can I find the cherries\nSpeaker_2: the cherries are in the workshop\nQuestion: are all the pineapples in the workshop?\n", "options": ["yes", "no"], "correct answer": "no", "id": "605"}
602
  {"pretext": "Conversation:\nSpeaker_1: did Isla put the apples in the staircase\nSpeaker_2: I have no idea\nSpeaker_1: where was she\nSpeaker_2: she said she was in the front_yard\nSpeaker_1: did Benjamin place the persimmons in the staircase\nSpeaker_2: I didn't see him\nSpeaker_1: where were you\nSpeaker_2: I was in the staircase\nSpeaker_1: where can I get the oranges\nSpeaker_2: they are in the playroom or the staircase\nSpeaker_1: how many strawberries are in the front_yard\nSpeaker_2: four or five\nSpeaker_1: are all the celeries in the playroom\nSpeaker_2: yes\nSpeaker_1: are some of the turnips there\nSpeaker_2: four are in the playroom\nSpeaker_1: did you place the strawberries there\nSpeaker_2: I placed them in the front_yard\nSpeaker_1: are some of the grapefruits in the staircase\nSpeaker_2: I left five of them in the staircase\nQuestion: was the woman in the staircase?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "606"}
 
 
 
 
 
 
1
  {"pretext": "Conversation:\nSpeaker_1: how many grapes are in the sunroom\nSpeaker_2: one or two\nSpeaker_1: did you see the beans\nSpeaker_2: Lucas said there is a green basket in the sunroom\nSpeaker_1: how many beans are there\nSpeaker_2: three\nSpeaker_1: where was Lucas\nSpeaker_2: he said he went to the sunroom\nSpeaker_1: are all the green peppers in the kitchen\nSpeaker_2: yes, all of them are there\nSpeaker_1: did you leave them in the living_room\nSpeaker_2: no, I didn't\nSpeaker_1: did Sophia put them in the living_room\nSpeaker_2: she put them in the kitchen\nSpeaker_1: how many broccolis are there\nSpeaker_2: there are at least four there\nSpeaker_1: did Lucas place them there\nSpeaker_2: he placed them there and travelled to the sunroom\nSpeaker_1: are some of the cherries there\nSpeaker_2: two are there\nQuestion: are the cherries in the living_room?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "5"}
2
  {"pretext": "Conversation:\nSpeaker_1: are all the asparagus in the bedroom\nSpeaker_2: yes\nSpeaker_1: are some of the plums in the garage\nSpeaker_2: I left two there\nSpeaker_1: did you place the asparagus there\nSpeaker_2: no\nSpeaker_1: did you see the corns\nSpeaker_2: I'm not sure\nSpeaker_1: how many peaches are in the basement\nSpeaker_2: there are at least three there\nSpeaker_1: where did Sophia go\nSpeaker_2: she said she was in the bedroom\nSpeaker_1: did she place the grapefruits in the playroom\nSpeaker_2: she placed them in the garage if not the playroom\nSpeaker_1: did she place the peas in the playroom\nSpeaker_2: no, she didn't\nSpeaker_1: are all the sweet potatoes there\nSpeaker_2: Owen said he saw some sweet potatoes in the playroom\nSpeaker_1: did Sophia leave the sweet potatoes there\nSpeaker_2: she left them there and journeyed to the bedroom\nQuestion: did the woman put the asparagus in the bedroom?\n", "options": ["yes", "no"], "correct answer": "no", "id": "6"}
3
  {"pretext": "Conversation:\nSpeaker_1: are all the celeries in the basement\nSpeaker_2: Sophia said she saw some celeries in the basement\nSpeaker_1: how many limes are in the dining_room\nSpeaker_2: one or two\nSpeaker_1: did Emily place the peas in the basement\nSpeaker_2: no\nSpeaker_1: are some of the radishes in the front_yard\nSpeaker_2: three are there\nSpeaker_1: how many lettuces are there\nSpeaker_2: there are five\nSpeaker_1: did Emily put them in the basement\nSpeaker_2: no\nSpeaker_1: did Sophia put them there\nSpeaker_2: she put them in the front_yard\nSpeaker_1: did Emily go there\nSpeaker_2: she went to the front_yard\nSpeaker_1: did she put the limes in the front_yard\nSpeaker_2: no\nSpeaker_1: where did you go\nSpeaker_2: I went to the dining_room and the porch\nQuestion: are some of the celeries in the basement?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "7"}
 
218
  {"pretext": "Conversation:\nSpeaker_1: where can I get the cherries\nSpeaker_2: Abigail put the cherries in the dining_room and went to the dining_room\nSpeaker_1: how many are in the dining_room\nSpeaker_2: two or three\nSpeaker_1: did you see the bananas\nSpeaker_2: I have no idea\nSpeaker_1: how about the sweet potato\nSpeaker_2: the sweet potato is in the closet\nSpeaker_1: how about the limes\nSpeaker_2: I have no idea\nSpeaker_1: were you in the hall\nSpeaker_2: I returned to the dining_room\nSpeaker_1: are some of the grapes there\nSpeaker_2: I put all of them there\nSpeaker_1: are all the apples in the closet\nSpeaker_2: I'm not sure\nSpeaker_1: how can I find Benjamin\nSpeaker_2: he said he walked to the closet and the hall\nSpeaker_1: did he leave the potato in the dining_room\nSpeaker_2: no\nQuestion: was Benjamin in the hall?\n", "options": ["yes", "no"], "correct answer": "no", "id": "222"}
219
  {"pretext": "Conversation:\nSpeaker_1: did you place the asparagus in the bathroom\nSpeaker_2: no, I didn't\nSpeaker_1: did Carter leave them in the bathroom\nSpeaker_2: no, he didn't\nSpeaker_1: was he in the bathroom\nSpeaker_2: he journeyed to the master_bedroom\nSpeaker_1: where can I get the pineapples\nSpeaker_2: they are in the bathroom or the master_bedroom\nSpeaker_1: how about the grapefruits\nSpeaker_2: there is a blue suitcase in the crawlspace\nSpeaker_1: did Carter put them in the crawlspace\nSpeaker_2: he put them there and walked to the master_bedroom\nSpeaker_1: did you go there\nSpeaker_2: I was in the bathroom\nSpeaker_1: are some of the bananas in the front_yard\nSpeaker_2: Ethan said he put five there\nSpeaker_1: where can I find the lemons\nSpeaker_2: they are in the front_yard\nSpeaker_1: are some of them in the front_yard\nSpeaker_2: four are in the front_yard\nQuestion: are some of the lemons in the front_yard?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "223"}
220
  {"pretext": "Conversation:\nSpeaker_1: was Carter in the basement\nSpeaker_2: he was in the dining_room\nSpeaker_1: where can I get the broccoli\nSpeaker_2: Alexander left the broccoli in the basement and went to the basement\nSpeaker_1: where are the turnips\nSpeaker_2: the turnips are in the garage or the dining_room\nSpeaker_1: how many carrots are in the dining_room\nSpeaker_2: four or five\nSpeaker_1: are some of the persimmons in the garage\nSpeaker_2: Alexander said he left three of them in the garage\nSpeaker_1: how many peas are in the attic\nSpeaker_2: four or five\nSpeaker_1: did you go there\nSpeaker_2: I was in the basement\nSpeaker_1: did you place the carrots there\nSpeaker_2: I placed them in the dining_room\nSpeaker_1: where can I get the lettuces\nSpeaker_2: Alexander said there is a red container in the garage\nSpeaker_1: how many lettuces are there\nSpeaker_2: three or four\nQuestion: is the woman sure about how many are the carrots?\n", "options": ["yes", "no"], "correct answer": "no", "id": "224"}
221
+ {"pretext": "Conversation:\nSpeaker_1: are all the pears in the TV_room\nSpeaker_2: I have no idea\nSpeaker_1: did Noah leave them in the TV_room\nSpeaker_2: he left them there and travelled to the living_room\nSpeaker_1: how many plums are there\nSpeaker_2: two or three\nSpeaker_1: where did Elizabeth go\nSpeaker_2: she walked to the hallway or the TV_room\nSpeaker_1: did Noah put the cherries in the living_room\nSpeaker_2: he put them in the living_room or the dining_room\nSpeaker_1: where did you go\nSpeaker_2: I went to the dining_room\nSpeaker_1: are some of the bananas in the living_room\nSpeaker_2: yes\nSpeaker_1: where can I find the pumpkin\nSpeaker_2: it is in the dining_room or the hallway\nSpeaker_1: are some of the grapes in the hallway\nSpeaker_2: they are all there\nSpeaker_1: did you leave them in the hallway\nSpeaker_2: I left them there and walked to the dining_room\nQuestion: was Noah in the living_room?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "225"}
222
  {"pretext": "Conversation:\nSpeaker_1: did Jackson put the corns in the study\nSpeaker_2: he put them in the workshop if not the study\nSpeaker_1: did you see the spinach\nSpeaker_2: the spinach is in the study\nSpeaker_1: where can I find the bananas\nSpeaker_2: they are in the garden\nSpeaker_1: did Aria place the bananas there\nSpeaker_2: no\nSpeaker_1: where can I find the onions\nSpeaker_2: the onions are in the living_room or the study\nSpeaker_1: where can I get the turnips\nSpeaker_2: the turnips are in the living_room\nSpeaker_1: where are the asparagus\nSpeaker_2: I don't know\nSpeaker_1: did Jackson place them in the study\nSpeaker_2: he placed the spinach there\nSpeaker_1: where can I get the broccolis\nSpeaker_2: Jackson put the broccolis in the garden and journeyed to the workshop\nSpeaker_1: did he place the turnips in the garden\nSpeaker_2: no\nQuestion: is the woman sure about who put the bananas the garden?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "226"}
223
  {"pretext": "Conversation:\nSpeaker_1: did Isabella leave the bananas in the bedroom\nSpeaker_2: no\nSpeaker_1: are some of them in the cellar\nSpeaker_2: they are all there\nSpeaker_1: how many grapefruits are in the bedroom\nSpeaker_2: there are five\nSpeaker_1: are some of the peas in the cellar\nSpeaker_2: four are there\nSpeaker_1: did Isabella put them there\nSpeaker_2: no, she didn't\nSpeaker_1: where was she\nSpeaker_2: she was in the cellar or the bedroom\nSpeaker_1: did you go to the cellar\nSpeaker_2: I was in the workshop\nSpeaker_1: did Hannah put the bananas in the cellar\nSpeaker_2: no\nSpeaker_1: did she go there\nSpeaker_2: she was in the office\nSpeaker_1: are some of the beans in the workshop\nSpeaker_2: I left three of the beans there\nQuestion: did Isabella put the peas in the cellar?\n", "options": ["yes", "no"], "correct answer": "no", "id": "227"}
224
  {"pretext": "Conversation:\nSpeaker_1: did you put the asparagus in the basement\nSpeaker_2: I put the asparagus and the carrots there\nSpeaker_1: was Oliver in the pantry\nSpeaker_2: he was in the staircase\nSpeaker_1: are all the asparagus in the basement\nSpeaker_2: some asparagus are in the basement\nSpeaker_1: where can I find the radishes\nSpeaker_2: Oliver and I left them in the staircase\nSpeaker_1: are some of them in the staircase\nSpeaker_2: three are there\nSpeaker_1: how many carrots are in the basement\nSpeaker_2: there are two or three\nSpeaker_1: where did Mason go\nSpeaker_2: he said he was in the pantry\nSpeaker_1: did he place the strawberries in the pantry\nSpeaker_2: he said he placed the strawberries and the melons there\nSpeaker_1: did you see the eggplant\nSpeaker_2: the eggplant is in the study\nSpeaker_1: what about the grapes\nSpeaker_2: Oliver and I put them in the staircase\nQuestion: are the melons in the pantry?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "228"}
 
277
  {"pretext": "Conversation:\nSpeaker_1: are some of the peaches in the living_room\nSpeaker_2: Logan said he saw they all there\nSpeaker_1: where can I find the radishes\nSpeaker_2: there is a green crate in the playroom\nSpeaker_1: what about the carrots\nSpeaker_2: the carrots are in the living_room\nSpeaker_1: how about the strawberries\nSpeaker_2: Logan left them in the laundry and journeyed to the playroom\nSpeaker_1: are all of them in the laundry\nSpeaker_2: some are there\nSpeaker_1: where can I find the tomatoes\nSpeaker_2: there is a green box in the laundry\nSpeaker_1: what about the eggplants\nSpeaker_2: there is a green crate in the hall\nSpeaker_1: how about the grapes\nSpeaker_2: Jackson said he left the grapes in the hall and journeyed to the playroom\nSpeaker_1: how many are in the hall\nSpeaker_2: there are at least one there\nSpeaker_1: were you there\nSpeaker_2: I was in the playroom\nQuestion: are some of the strawberries in the laundry?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "281"}
278
  {"pretext": "Conversation:\nSpeaker_1: where can I get the cabbages\nSpeaker_2: they are in the cellar\nSpeaker_1: did you place them in the cellar\nSpeaker_2: I placed them and the green peppers there\nSpeaker_1: where can I get the lemons\nSpeaker_2: they are in the cellar or the den\nSpeaker_1: did Oliver put them in the kitchen\nSpeaker_2: no\nSpeaker_1: what about Lucas\nSpeaker_2: no, he didn't\nSpeaker_1: where can I find the persimmons\nSpeaker_2: there is a blue bucket in the kitchen\nSpeaker_1: did Lucas go there\nSpeaker_2: no, he was not there\nSpeaker_1: where was he\nSpeaker_2: he walked to the workshop\nSpeaker_1: did you see the strawberries\nSpeaker_2: Oliver and I put them in the kitchen\nSpeaker_1: where can I find the watermelons\nSpeaker_2: I'm not sure\nQuestion: did the woman put the cabbages in the cellar?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "282"}
279
  {"pretext": "Conversation:\nSpeaker_1: where was Logan\nSpeaker_2: he said he walked to the laundry\nSpeaker_1: did you place the lemons in the bedroom\nSpeaker_2: I didn't journey to the bedroom\nSpeaker_1: did Logan leave them in the bedroom\nSpeaker_2: he said he didn't journey there\nSpeaker_1: did Jack place them in the bedroom\nSpeaker_2: no\nSpeaker_1: are some of the radishes there\nSpeaker_2: five are there\nSpeaker_1: did Jack place them there\nSpeaker_2: he placed them there and walked to the sunroom\nSpeaker_1: where are the grapefruits\nSpeaker_2: they are in the hall or the bedroom\nSpeaker_1: are some of the turnips in the hall\nSpeaker_2: all of them are in the hall\nSpeaker_1: how many lemons are in the sunroom\nSpeaker_2: four or five\nSpeaker_1: where are the corns\nSpeaker_2: I put them in the laundry and journeyed to the hall\nQuestion: was the woman in the hall?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "283"}
280
+ {"pretext": "Conversation:\nSpeaker_1: did you leave the cherries in the back_yard\nSpeaker_2: I left them there and walked to the garden\nSpeaker_1: did you leave the broccolis there\nSpeaker_2: no\nSpeaker_1: where did Amelia go\nSpeaker_2: I know she didn't went to the back_yard\nSpeaker_1: where was she\nSpeaker_2: she said she went to the attic\nSpeaker_1: did you leave the turnips in the attic\nSpeaker_2: no\nSpeaker_1: was Owen there\nSpeaker_2: he walked to the back_yard\nSpeaker_1: did you leave the onions in the attic\nSpeaker_2: I left the cabbages there\nSpeaker_1: did you leave the onions there\nSpeaker_2: no, I didn't\nSpeaker_1: did Amelia leave them there\nSpeaker_2: no, she didn't\nSpeaker_1: did Owen leave them in the attic\nSpeaker_2: he said he left them in the TV_room\nQuestion: are the onions in the attic?\n", "options": ["yes", "no"], "correct answer": "no", "id": "284"}
281
  {"pretext": "Conversation:\nSpeaker_1: are some of the pumpkins in the lounge\nSpeaker_2: I don't know\nSpeaker_1: was Amelia in the study\nSpeaker_2: she was in the workshop\nSpeaker_1: did you put the pumpkins in the master_bedroom\nSpeaker_2: no\nSpeaker_1: did Isabella place them there\nSpeaker_2: I didn't see her\nSpeaker_1: are all the lettuces in the lounge\nSpeaker_2: some lettuces are in the lounge\nSpeaker_1: are all the persimmons in the master_bedroom\nSpeaker_2: some persimmons are in the master_bedroom\nSpeaker_1: where are the cabbages\nSpeaker_2: Amelia and I put the cabbages in the workshop\nSpeaker_1: are all of them in the workshop\nSpeaker_2: yes\nSpeaker_1: where can I find the sweet potatoes\nSpeaker_2: they are in the study or the workshop\nSpeaker_1: are some of the radishes in the study\nSpeaker_2: Isabella said she left five of them in the study\nQuestion: are the cabbages in the master_bedroom?\n", "options": ["yes", "no"], "correct answer": "no", "id": "285"}
282
  {"pretext": "Conversation:\nSpeaker_1: where did you see Mia\nSpeaker_2: she said she went to the bathroom and the patio\nSpeaker_1: did you put the bananas in the patio\nSpeaker_2: I put the lettuces there\nSpeaker_1: did Mason place them there\nSpeaker_2: no\nSpeaker_1: did Alexander leave them there\nSpeaker_2: he left the cabbages there\nSpeaker_1: are some of the pears in the closet\nSpeaker_2: I put three there\nSpeaker_1: where was Mason\nSpeaker_2: he went to the sunroom\nSpeaker_1: are some of the cherries there\nSpeaker_2: yes, there are some in the sunroom\nSpeaker_1: are some of the cabbages in the patio\nSpeaker_2: three are there\nSpeaker_1: are all the lettuces there\nSpeaker_2: yes, they are all there\nSpeaker_1: are some of the pumpkins in the sunroom\nSpeaker_2: four are in the sunroom\nQuestion: are some of the cabbages in the patio?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "286"}
283
  {"pretext": "Conversation:\nSpeaker_1: did Jack put the asparagus in the attic\nSpeaker_2: I didn't see him\nSpeaker_1: where did you see Ava\nSpeaker_2: I know she didn't went to the workshop\nSpeaker_1: where was she\nSpeaker_2: she said she travelled to the sunroom and the workshop\nSpeaker_1: did you go to the attic\nSpeaker_2: I was in the attic\nSpeaker_1: did you put the pineapples there\nSpeaker_2: no\nSpeaker_1: what about Ava\nSpeaker_2: she put them in the attic or the study\nSpeaker_1: did she put the banana in the attic\nSpeaker_2: no, she didn't\nSpeaker_1: are some of the broccolis there\nSpeaker_2: three broccolis are in the attic\nSpeaker_1: where are the potatoes\nSpeaker_2: I don't know\nSpeaker_1: what about the eggplants\nSpeaker_2: the eggplants are in the workshop or the attic\nQuestion: was the woman in the attic?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "287"}
 
422
  {"pretext": "Conversation:\nSpeaker_1: did Emma place the apples in the porch\nSpeaker_2: she was not there\nSpeaker_1: did you leave them there\nSpeaker_2: I left the radishes there\nSpeaker_1: did Noah put the bananas in the kitchen\nSpeaker_2: he put the beans there\nSpeaker_1: how many celeries are in the TV_room\nSpeaker_2: there are four or five\nSpeaker_1: where were you\nSpeaker_2: I journeyed to the TV_room and the porch\nSpeaker_1: are some of the limes in the kitchen\nSpeaker_2: all of them are in the kitchen\nSpeaker_1: where did you see Noah\nSpeaker_2: he journeyed to the kitchen and the lounge\nSpeaker_1: did he put the persimmons in the kitchen\nSpeaker_2: he put them in the kitchen or the lounge\nSpeaker_1: where can I find the cherries\nSpeaker_2: Emma and I left the cherries in the TV_room\nSpeaker_1: how many are in the TV_room\nSpeaker_2: two or three\nQuestion: are some of the limes in the kitchen?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "426"}
423
  {"pretext": "Conversation:\nSpeaker_1: where did you go\nSpeaker_2: I was in the bathroom\nSpeaker_1: did you leave the pineapples there\nSpeaker_2: I left them in the master_bedroom\nSpeaker_1: are some of them in the master_bedroom\nSpeaker_2: yes, there are some in the master_bedroom\nSpeaker_1: are some of the spinaches in the TV_room\nSpeaker_2: I'm not sure\nSpeaker_1: where did Owen go\nSpeaker_2: he said he journeyed to the TV_room\nSpeaker_1: are all the strawberries in the bathroom\nSpeaker_2: some are there\nSpeaker_1: did Charlotte place the grapefruits there\nSpeaker_2: I didn't see her\nSpeaker_1: where can I get them\nSpeaker_2: Oliver said there is a green container in the attic\nSpeaker_1: did Owen place the spinaches there\nSpeaker_2: he placed them in the TV_room if not the attic\nSpeaker_1: are some of the potatoes in the bathroom\nSpeaker_2: yes, some of them are there\nQuestion: was the woman in the bathroom?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "427"}
424
  {"pretext": "Conversation:\nSpeaker_1: did Chloe place the peas in the front_yard\nSpeaker_2: I have no idea\nSpeaker_1: did you put the potatoes there\nSpeaker_2: I put the cabbages there\nSpeaker_1: are some of the spinaches there\nSpeaker_2: two are in the front_yard\nSpeaker_1: did Chloe go there\nSpeaker_2: she was in the garage\nSpeaker_1: where are the pumpkins\nSpeaker_2: the pumpkins are in the bedroom\nSpeaker_1: where were you\nSpeaker_2: I was in the laundry\nSpeaker_1: where can I get the pineapples\nSpeaker_2: Chloe said there is a blue box in the garage\nSpeaker_1: what about the cherries\nSpeaker_2: they are in the front_yard or the garage\nSpeaker_1: how many cabbages are in the front_yard\nSpeaker_2: there are one or two\nSpeaker_1: are some of the peas in the bedroom\nSpeaker_2: yes\nQuestion: are the peas in the bedroom?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "428"}
425
+ {"pretext": "Conversation:\nSpeaker_1: how can I find Lucas\nSpeaker_2: he journeyed to the closet and the pantry\nSpeaker_1: are all the bananas in the sunroom\nSpeaker_2: yes, they are all there\nSpeaker_1: did Lucas place the bananas there\nSpeaker_2: no\nSpeaker_1: did Hunter put the bananas there\nSpeaker_2: yes, he did\nSpeaker_1: where can I get the sweet potatoes\nSpeaker_2: the sweet potatoes are in the pantry\nSpeaker_1: did you put them there\nSpeaker_2: I put them there and went to the garden\nSpeaker_1: was Sophia there\nSpeaker_2: it is likely\nSpeaker_1: are some of the grapes in the garden\nSpeaker_2: I left three of them there\nSpeaker_1: did Lucas put the pineapples there\nSpeaker_2: no\nSpeaker_1: where did you see them\nSpeaker_2: Sophia and I put them in the closet\nQuestion: are some of the bananas in the sunroom?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "429"}
426
  {"pretext": "Conversation:\nSpeaker_1: are some of the lemons in the bedroom\nSpeaker_2: four are in the bedroom\nSpeaker_1: are some of the cabbages there\nSpeaker_2: they are all there\nSpeaker_1: are some of the grapes in the cellar\nSpeaker_2: I put four of them there\nSpeaker_1: did James leave the plum there\nSpeaker_2: I didn't see him\nSpeaker_1: how many peaches are in the kitchen\nSpeaker_2: three or four\nSpeaker_1: was Jacob there\nSpeaker_2: yes, he was there\nSpeaker_1: did you see the pineapples\nSpeaker_2: they are in the office or the kitchen\nSpeaker_1: did you place them in the kitchen\nSpeaker_2: I placed the green peppers there\nSpeaker_1: did you see the melons\nSpeaker_2: Sophia said there is a red bathtub in the office\nSpeaker_1: how many\nSpeaker_2: I don't know\nQuestion: is the woman sure about how many are the grapes?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "430"}
427
  {"pretext": "Conversation:\nSpeaker_1: did you see the strawberries\nSpeaker_2: they are in the front_yard or the TV_room\nSpeaker_1: where were you\nSpeaker_2: I walked to the crawlspace and the cellar\nSpeaker_1: did Noah place the strawberries there\nSpeaker_2: no, he didn't\nSpeaker_1: did you place them in the cellar\nSpeaker_2: no\nSpeaker_1: did Aiden put them in the cellar\nSpeaker_2: he put the green peppers there\nSpeaker_1: where was he\nSpeaker_2: he travelled to the cellar and the TV_room\nSpeaker_1: are all the turnips in the crawlspace\nSpeaker_2: some are there\nSpeaker_1: did Noah go there\nSpeaker_2: Noah journeyed to the crawlspace or the front_yard\nSpeaker_1: how many green peppers are in the cellar\nSpeaker_2: one or two\nSpeaker_1: how many plums are there\nSpeaker_2: three or four\nQuestion: are some of the turnips in the crawlspace?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "431"}
428
  {"pretext": "Conversation:\nSpeaker_1: did you go to the bedroom\nSpeaker_2: yes\nSpeaker_1: where can I get the celeries\nSpeaker_2: I put them in the garden and went to the bedroom\nSpeaker_1: did you see the apple\nSpeaker_2: it is in the garden or the bedroom\nSpeaker_1: did James go to the bedroom \nSpeaker_2: he was not there\nSpeaker_1: where was he\nSpeaker_2: he said he was in the front_yard\nSpeaker_1: how many cucumbers are in the front_yard\nSpeaker_2: there are at least one there\nSpeaker_1: how many beans are in the hall\nSpeaker_2: there are at least one there\nSpeaker_1: where can I find the asparagus\nSpeaker_2: I put them in the garden and went to the bedroom\nSpeaker_1: are some of them in the garden\nSpeaker_2: all of them are in the garden\nSpeaker_1: did you put the apple there\nSpeaker_2: no, I didn't\nQuestion: is the woman sure about how many are the cucumbers?\n", "options": ["yes", "no"], "correct answer": "no", "id": "432"}
 
452
  {"pretext": "Conversation:\nSpeaker_1: how many strawberries are in the bedroom\nSpeaker_2: five\nSpeaker_1: where can I find the melon\nSpeaker_2: the melon is in the garage\nSpeaker_1: did you place the melon there\nSpeaker_2: yes\nSpeaker_1: where can I find the banana\nSpeaker_2: it is in the back_yard\nSpeaker_1: what about the plums\nSpeaker_2: the plums are in the basement\nSpeaker_1: where can I find the turnips\nSpeaker_2: they are in the back_yard or the bedroom\nSpeaker_1: how about the cabbages\nSpeaker_2: they are in the garage\nSpeaker_1: did you leave them in the garage\nSpeaker_2: I left them and the melon there\nSpeaker_1: where can I get the green pepper\nSpeaker_2: the green pepper is in the bedroom or the basement\nSpeaker_1: did you place it in the back_yard\nSpeaker_2: no, I didn't\nQuestion: was the woman in the garage?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "456"}
453
  {"pretext": "Conversation:\nSpeaker_1: where are the broccolis\nSpeaker_2: Logan said there is a green cupboard in the TV_room\nSpeaker_1: what about the corn\nSpeaker_2: the corn is in the kitchen\nSpeaker_1: where are the plums\nSpeaker_2: they are in the workshop\nSpeaker_1: where are the cherries\nSpeaker_2: there is a green basket in the kitchen\nSpeaker_1: did Emma place them in the kitchen\nSpeaker_2: no\nSpeaker_1: did you see the radishes\nSpeaker_2: they are in the TV_room\nSpeaker_1: did Chloe put the radishes there\nSpeaker_2: she put them there and journeyed to the workshop\nSpeaker_1: were you there\nSpeaker_2: I went to the kitchen\nSpeaker_1: how many cherries are there\nSpeaker_2: there are two\nSpeaker_1: was Emma there\nSpeaker_2: she was in the kitchen or the basement\nQuestion: was the woman in the kitchen?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "457"}
454
  {"pretext": "Conversation:\nSpeaker_1: how can I find Evelyn\nSpeaker_2: she said she journeyed to the front_yard\nSpeaker_1: did you see the cabbage\nSpeaker_2: Jack left it in the crawlspace and travelled to the den\nSpeaker_1: what about the pears\nSpeaker_2: Jack put the pears in the crawlspace and journeyed to the den\nSpeaker_1: what about the peas\nSpeaker_2: they are in the crawlspace or the playroom\nSpeaker_1: where can I find the radishes\nSpeaker_2: they are in the playroom or the front_yard\nSpeaker_1: where can I find the pineapple\nSpeaker_2: there is a green bottle in the den\nSpeaker_1: did you put it there\nSpeaker_2: yes, I did\nSpeaker_1: are some of the carrots in the front_yard\nSpeaker_2: Evelyn said she left five of the carrots there\nSpeaker_1: did she leave the radishes in the front_yard\nSpeaker_2: yes\nSpeaker_1: where can I get the grapefruits\nSpeaker_2: the grapefruits are in the playroom\nQuestion: is the woman sure about who put the cabbage the crawlspace?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "458"}
455
+ {"pretext": "Conversation:\nSpeaker_1: how many limes are in the laundry\nSpeaker_2: there are at least three there\nSpeaker_1: how can I find Lily\nSpeaker_2: she said she journeyed to the hallway\nSpeaker_1: where are the grapefruits\nSpeaker_2: Lily said there is a blue treasure chest in the hallway\nSpeaker_1: did you leave the grapefruits there\nSpeaker_2: no, I didn't\nSpeaker_1: are all the grapefruits there\nSpeaker_2: I don't know\nSpeaker_1: where can I find the plums\nSpeaker_2: Ella said she put the plums in the playroom and walked to the workshop\nSpeaker_1: are all of them in the playroom\nSpeaker_2: yes, they are all there\nSpeaker_1: where were you\nSpeaker_2: I walked to the hallway and the workshop\nSpeaker_1: how many cherries are in the laundry\nSpeaker_2: there are four or five\nSpeaker_1: where can I get the radishes\nSpeaker_2: the radishes are in the workshop\nQuestion: are the plums in the hallway?\n", "options": ["yes", "no"], "correct answer": "no", "id": "459"}
456
  {"pretext": "Conversation:\nSpeaker_1: did you see the apple\nSpeaker_2: it is in the attic or the garden\nSpeaker_1: where did you see Mila\nSpeaker_2: she walked to the garden\nSpeaker_1: are some of the carrots in the attic\nSpeaker_2: I have no idea\nSpeaker_1: where can I get the peas\nSpeaker_2: they are in the master_bedroom\nSpeaker_1: did you put the melons there\nSpeaker_2: no, I didn't\nSpeaker_1: are some of them in the hallway\nSpeaker_2: Liam said he left two there\nSpeaker_1: where are the corns\nSpeaker_2: Liam said there is a blue envelope in the hallway\nSpeaker_1: are some of the corns there\nSpeaker_2: five are in the hallway\nSpeaker_1: where are the carrots\nSpeaker_2: the carrots are in the attic or the hallway\nSpeaker_1: how about the orange\nSpeaker_2: there is a red cupboard in the garden\nQuestion: is the woman sure about how many are the carrots?\n", "options": ["yes", "no"], "correct answer": "no", "id": "460"}
457
  {"pretext": "Conversation:\nSpeaker_1: where can I get the corn\nSpeaker_2: the corn is in the garden or the lounge\nSpeaker_1: did you place it in the garden\nSpeaker_2: no\nSpeaker_1: did Chloe place it in the garden\nSpeaker_2: she placed it there and travelled to the lounge\nSpeaker_1: where were you\nSpeaker_2: I journeyed to the pantry and the staircase\nSpeaker_1: where can I get the grapefruits\nSpeaker_2: Elizabeth said she left the grapefruits in the staircase and journeyed to the staircase\nSpeaker_1: are some of them in the staircase\nSpeaker_2: three are in the staircase\nSpeaker_1: where are the melons\nSpeaker_2: they are in the garden or the lounge\nSpeaker_1: how many strawberries are in the lounge\nSpeaker_2: three or four\nSpeaker_1: are all the radishes in the pantry\nSpeaker_2: yes\nSpeaker_1: where can I get the peas\nSpeaker_2: Elizabeth said there is a red envelope in the garden\nQuestion: did Chloe put the corn in the garden?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "461"}
458
  {"pretext": "Conversation:\nSpeaker_1: where was Hunter\nSpeaker_2: he said he was in the attic\nSpeaker_1: where can I find the celeries\nSpeaker_2: Hunter and I put them in the attic\nSpeaker_1: are some of them in the attic\nSpeaker_2: I don't know\nSpeaker_1: where can I find the plum\nSpeaker_2: Oliver said there is a green box in the dining_room\nSpeaker_1: are all the grapes in the bedroom\nSpeaker_2: yes, they are all there\nSpeaker_1: are some of the asparagus there\nSpeaker_2: Jayden said he put five of the asparagus there\nSpeaker_1: how many apples are in the living_room\nSpeaker_2: there are at least four there\nSpeaker_1: did Jayden place the beans there\nSpeaker_2: he said he didn't go back there\nSpeaker_1: did you leave them in the living_room\nSpeaker_2: no\nSpeaker_1: how many are in the dining_room\nSpeaker_2: there are four or five\nQuestion: is the woman sure about how many are the beans?\n", "options": ["yes", "no"], "correct answer": "no", "id": "462"}
 
596
  {"pretext": "Conversation:\nSpeaker_1: are all the persimmons in the pantry\nSpeaker_2: I saw some persimmons in the pantry\nSpeaker_1: where are the peaches\nSpeaker_2: they are in the bathroom or the dining_room\nSpeaker_1: what about the asparagus\nSpeaker_2: Aria put them in the pantry and walked to the pantry\nSpeaker_1: are all of them in the pantry\nSpeaker_2: yes, they are all there\nSpeaker_1: are some of the broccolis in the living_room\nSpeaker_2: two are there\nSpeaker_1: did you leave the broccolis there\nSpeaker_2: I left them there and went to the pantry\nSpeaker_1: are all the pears in the bathroom\nSpeaker_2: yes, all of them are there\nSpeaker_1: where can I find the turnip\nSpeaker_2: I don't know\nSpeaker_1: how about the eggplants\nSpeaker_2: they are in the dining_room or the living_room\nSpeaker_1: how many grapes are in the dining_room\nSpeaker_2: there are four\nQuestion: did the woman put the broccolis in the living_room?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "600"}
597
  {"pretext": "Conversation:\nSpeaker_1: did you see the grapefruits\nSpeaker_2: the grapefruits are in the office\nSpeaker_1: what about the apples\nSpeaker_2: the apples are in the bathroom\nSpeaker_1: how about the peaches\nSpeaker_2: the peaches are in the den\nSpeaker_1: did you put the peaches there\nSpeaker_2: I put them there and walked to the kitchen\nSpeaker_1: was Chloe in the bathroom\nSpeaker_2: she was in the den\nSpeaker_1: are some of the peaches there\nSpeaker_2: all of the peaches are in the den\nSpeaker_1: was Noah there\nSpeaker_2: no\nSpeaker_1: where was he\nSpeaker_2: he was in the bathroom\nSpeaker_1: are some of the celeries there\nSpeaker_2: Noah said he put two there\nSpeaker_1: did you see the grapes\nSpeaker_2: they are in the office\nQuestion: is the woman sure about how many are the celeries?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "601"}
598
  {"pretext": "Conversation:\nSpeaker_1: how many cabbages are in the den\nSpeaker_2: I don't know\nSpeaker_1: where did you see them\nSpeaker_2: I put them in the den and went to the TV_room\nSpeaker_1: what about the cherries\nSpeaker_2: Jayden put the cherries in the TV_room and walked to the TV_room\nSpeaker_1: are all of them in the TV_room\nSpeaker_2: yes\nSpeaker_1: was Abigail there\nSpeaker_2: she went to the den\nSpeaker_1: how many broccolis are there\nSpeaker_2: there are three\nSpeaker_1: did Jayden put the broccolis there\nSpeaker_2: no, he didn't\nSpeaker_1: did you place them in the den\nSpeaker_2: I placed them there and walked to the TV_room\nSpeaker_1: did Jayden put the strawberries there\nSpeaker_2: he said he put them in the bedroom\nSpeaker_1: did you see the celery\nSpeaker_2: Abigail left it in the TV_room and journeyed to the TV_room\nQuestion: are some of the cherries in the TV_room?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "602"}
599
+ {"pretext": "Conversation:\nSpeaker_1: did Jacob put the cherries in the pantry\nSpeaker_2: he put them in the pantry or the cellar\nSpeaker_1: are all the persimmons there\nSpeaker_2: some persimmons are in the pantry\nSpeaker_1: were you there\nSpeaker_2: yes\nSpeaker_1: where did you see Alexander\nSpeaker_2: he was in the den\nSpeaker_1: did Jacob go there\nSpeaker_2: he walked to the cellar\nSpeaker_1: did he put the persimmons in the pantry\nSpeaker_2: he put them there and walked to the cellar\nSpeaker_1: did you see the potato\nSpeaker_2: there is a green envelope in the pantry\nSpeaker_1: what about the lemons\nSpeaker_2: they are in the lounge\nSpeaker_1: did Alexander put them in the lounge\nSpeaker_2: no, he didn't\nSpeaker_1: are all the lemons there\nSpeaker_2: some lemons are in the lounge\nQuestion: are all the lemons in the lounge?\n", "options": ["yes", "no"], "correct answer": "no", "id": "603"}
600
  {"pretext": "Conversation:\nSpeaker_1: how can I find Jack\nSpeaker_2: he travelled to the workshop and the laundry\nSpeaker_1: how many lettuces are in the pantry\nSpeaker_2: one or two\nSpeaker_1: how can I find Alexander\nSpeaker_2: he went to the workshop\nSpeaker_1: did you go there\nSpeaker_2: I returned to the attic\nSpeaker_1: where are the sweet potatoes\nSpeaker_2: Alexander and I put the sweet potatoes in the workshop\nSpeaker_1: did you leave the lettuces in the laundry\nSpeaker_2: no\nSpeaker_1: where is the plum\nSpeaker_2: there is a green envelope in the attic\nSpeaker_1: did Jack leave it in the attic\nSpeaker_2: no, he didn't\nSpeaker_1: where can I find the grapes\nSpeaker_2: the grapes are in the workshop or the laundry\nSpeaker_1: are some of the green peppers in the pantry\nSpeaker_2: four are there\nQuestion: is the woman sure about how many are the lettuces?\n", "options": ["yes", "no"], "correct answer": "no", "id": "604"}
601
  {"pretext": "Conversation:\nSpeaker_1: how can I find Emma\nSpeaker_2: she travelled to the attic\nSpeaker_1: how many radishes are there\nSpeaker_2: four or five\nSpeaker_1: where can I find the eggplant\nSpeaker_2: Emma and I left the eggplant in the attic\nSpeaker_1: are all the peaches in the front_yard\nSpeaker_2: yes\nSpeaker_1: did you see the broccoli\nSpeaker_2: it is in the crawlspace or the workshop\nSpeaker_1: where can I get the persimmon\nSpeaker_2: there is a blue bottle in the crawlspace\nSpeaker_1: where are the pineapples\nSpeaker_2: Isla said there is a blue crate in the workshop\nSpeaker_1: did Evelyn place them in the workshop\nSpeaker_2: she placed them there and journeyed to the crawlspace\nSpeaker_1: are all of them in the workshop\nSpeaker_2: some pineapples are in the workshop\nSpeaker_1: where can I find the cherries\nSpeaker_2: the cherries are in the workshop\nQuestion: are all the pineapples in the workshop?\n", "options": ["yes", "no"], "correct answer": "no", "id": "605"}
602
  {"pretext": "Conversation:\nSpeaker_1: did Isla put the apples in the staircase\nSpeaker_2: I have no idea\nSpeaker_1: where was she\nSpeaker_2: she said she was in the front_yard\nSpeaker_1: did Benjamin place the persimmons in the staircase\nSpeaker_2: I didn't see him\nSpeaker_1: where were you\nSpeaker_2: I was in the staircase\nSpeaker_1: where can I get the oranges\nSpeaker_2: they are in the playroom or the staircase\nSpeaker_1: how many strawberries are in the front_yard\nSpeaker_2: four or five\nSpeaker_1: are all the celeries in the playroom\nSpeaker_2: yes\nSpeaker_1: are some of the turnips there\nSpeaker_2: four are in the playroom\nSpeaker_1: did you place the strawberries there\nSpeaker_2: I placed them in the front_yard\nSpeaker_1: are some of the grapefruits in the staircase\nSpeaker_2: I left five of them in the staircase\nQuestion: was the woman in the staircase?\n", "options": ["yes", "no"], "correct answer": "yes", "id": "606"}
task_14/dev.jsonl CHANGED
@@ -1,5 +1,5 @@
1
- {"pretext": "Context: Vedang writes a good hand.\nQuestion: What does \"hand\" mean:?\n", "options": ["With a strong grip", "Essay", "Handwriting", "None"], "correct answer": "Handwriting", "id": "414"}
2
- {"pretext": "Context: Broadway is the heart of American theater\nQuestion: what does \"broadway\" refer to?\n", "options": ["road", "place", "highway", "American theater industry "], "correct answer": "American theater industry ", "id": "445"}
 
3
  {"pretext": "Context: You just have to be thick-skinnned to handle it \nQuestion: What does \" thick-skinned\" refer to?\n", "options": ["skin colour", "coldhearted ", "sensitive", "emotional"], "correct answer": "coldhearted ", "id": "3"}
4
- {"pretext": "Context: \"All study and no play makes Johny a dull boy.\"\nQuestion: What does \"play\" refer to:?\n", "options": ["Moments of fun", "Swings", "Ball", "Bat"], "correct answer": "Moments of fun", "id": "388"}
5
- {"pretext": "Context: The press is always hungry for a story\nQuestion: what does \"hungry\" refer to?\n", "options": ["starving", "Strong desire", "empty", "none"], "correct answer": "Strong desire", "id": "412"}
 
1
+ {"pretext": "Context: She is attracted to blue jacket \nQuestion: What does\" blue jacket\" refer to?\n", "options": ["Colour", "Jacket", "Sailor ", "Sea "], "correct answer": "Sailor ", "id": "0"}
2
+ {"pretext": "Context: His lovely voice caught my ear \nQuestion: What does the sentence refer to ?\n", "options": ["Giving attention ", "Noise ", "Wispering to the person ", "None "], "correct answer": "Giving attention ", "id": "1"}
3
+ {"pretext": "Context: A hotel worker coming out of the lift said \u201c A couple of rooms have complained about the heat.\u201d to the receptionist:\nQuestion: What is \u201ccouple of rooms\u201d referring to: ?\n", "options": ["Rooms", "Customers", "Worker", "None"], "correct answer": "Customers", "id": "2"}
4
  {"pretext": "Context: You just have to be thick-skinnned to handle it \nQuestion: What does \" thick-skinned\" refer to?\n", "options": ["skin colour", "coldhearted ", "sensitive", "emotional"], "correct answer": "coldhearted ", "id": "3"}
5
+ {"pretext": "Context: She showed off her new diamond\nQuestion: what does \"diamond\" refer to?\n", "options": ["shape", "shine", "jewelery", "Stone"], "correct answer": "jewelery", "id": "4"}
 
task_14/test.jsonl CHANGED
@@ -1,7 +1,3 @@
1
- {"pretext": "Context: She is attracted to blue jacket \nQuestion: What does\" blue jacket\" refer to?\n", "options": ["Colour", "Jacket", "Sailor ", "Sea "], "correct answer": "Sailor ", "id": "0"}
2
- {"pretext": "Context: His lovely voice caught my ear \nQuestion: What does the sentence refer to ?\n", "options": ["Giving attention ", "Noise ", "Wispering to the person ", "None "], "correct answer": "Giving attention ", "id": "1"}
3
- {"pretext": "Context: A hotel worker coming out of the lift said \u201c A couple of rooms have complained about the heat.\u201d to the receptionist:\nQuestion: What is \u201ccouple of rooms\u201d referring to: ?\n", "options": ["Rooms", "Customers", "Worker", "None"], "correct answer": "Customers", "id": "2"}
4
- {"pretext": "Context: She showed off her new diamond\nQuestion: what does \"diamond\" refer to?\n", "options": ["shape", "shine", "jewelery", "Stone"], "correct answer": "jewelery", "id": "4"}
5
  {"pretext": "Context: The clock is ticking; we need to hurry\nQuestion: what does \"clock\" represents here?\n", "options": ["timer", "passage of time", "chronograph", "log"], "correct answer": "passage of time", "id": "5"}
6
  {"pretext": "Context: The canvas tells a story of passion and creativity\nQuestion: what does \"canvas\" refer to?\n", "options": ["sheet", "cover", "cloth", "work of art"], "correct answer": "work of art", "id": "6"}
7
  {"pretext": "Context: He sold his car for a song \nQuestion: What does \"song\" mean in the given sentence ?\n", "options": ["Pittance ", "Profit ", "Low maintenance ", "High maintenance "], "correct answer": "Pittance ", "id": "7"}
@@ -385,6 +381,7 @@
385
  {"pretext": "Context: The quill penned the famous novel\nQuestion: what does \"quill\" refer to?\n", "options": ["author", "down", "prick", "punches"], "correct answer": "author", "id": "385"}
386
  {"pretext": "Context: Vietnamese dishes do not sell well in India. \nQuestion: What does \"dishes\" refer to:?\n", "options": ["Plates", "Crockery", "Clothes", "Food"], "correct answer": "Food", "id": "386"}
387
  {"pretext": "Context: The decision of the chair is final \nQuestion: What does\" the chair\" stands for ?\n", "options": ["President ", "Law", "Security", "none "], "correct answer": "President ", "id": "387"}
 
388
  {"pretext": "Context: The track team is looking forward to competing at the nationals.\nQuestion: What does \"gun\" mean:?\n", "options": ["Team of atheletes specializing in a track activity", "Team of railroad workers", "Group of musicians performing on a track", "None"], "correct answer": "Team of atheletes specializing in a track activity", "id": "389"}
389
  {"pretext": "Context: Doctor suggested Alice to drink enough fluids to prevent UTI \nQuestion: What does \" fluid' mean ?\n", "options": ["Medicine ", "Water ", "Soup ", "None"], "correct answer": "Water ", "id": "390"}
390
  {"pretext": "Context: Her eyes are windows to her soul\nQuestion: What does \"her eyes\" represents here?\n", "options": ["view", "scenes", "Inner thought", "None"], "correct answer": "Inner thought", "id": "391"}
@@ -408,7 +405,9 @@
408
  {"pretext": "Context: General motors is on strike \nQuestion: What does \" general motor\" refer to ?\n", "options": ["Motor ", "automobile workers ", "engineers ", "construction workers "], "correct answer": "automobile workers ", "id": "409"}
409
  {"pretext": "Context: His wallet is feeling the strain this month\nQuestion: what does \"the strain\" refer to?\n", "options": ["financial stress", "demands", "burden", "demands"], "correct answer": "financial stress", "id": "410"}
410
  {"pretext": "Context: All eyes were on the player as he led the team to victory.\nQuestion: what does \"all eyes\" refer to?\n", "options": ["Attention", "look", "view", "All the above"], "correct answer": "Attention", "id": "411"}
 
411
  {"pretext": "Context: She's always chasing the dollar.\nQuestion: What does \"the dollar\" mean:?\n", "options": ["A dollar bill", "Dollar coins", "Financial success or wealth ", "None"], "correct answer": "Financial success or wealth ", "id": "413"}
 
412
  {"pretext": "Context: She's always chasing the taste of victory.\nQuestion: What does \"taste of victory\" mean:?\n", "options": ["The literal taste of winning", "A satisfaction and triumph associated with winning", "A type of victory celebration", "A type of competition"], "correct answer": "A satisfaction and triumph associated with winning", "id": "415"}
413
  {"pretext": "Context: The classroom is very attentive.\nQuestion: What does \"classroom\" mean:?\n", "options": ["Walls of the classroom", "Students", "Teacher", "Benches and desks"], "correct answer": "Students", "id": "416"}
414
  {"pretext": "Context: My uncle smokes atleast one pack a day.\nQuestion: What does \"pack\" mean:?\n", "options": ["Group of wolves", "Group of dogs", "Packet of cards", "Packet of cigarettes"], "correct answer": "Packet of cigarettes", "id": "417"}
@@ -439,6 +438,7 @@
439
  {"pretext": "Context: The Iron Curtain divided Europe during the Cold War.\nQuestion: What does \"The Iron Curtain\" mean:?\n", "options": ["A type of window treatment", "A famous theater production", "The divide between Eastern and Western Europe during the Cold War ", "A heavy metal music band"], "correct answer": "The divide between Eastern and Western Europe during the Cold War ", "id": "442"}
440
  {"pretext": "Context: The reception called to ask if the customers needed anything. \nQuestion: What does \"reception\" refer to :?\n", "options": ["Reception of a building", "Employee working at the reception. ", "Customer", "Owner"], "correct answer": "Employee working at the reception. ", "id": "443"}
441
  {"pretext": "Context: The hand of God was on his shoulder\nQuestion: what does \"the hand of God\" refer to?\n", "options": ["hand", "responsibility", "care", "devine intervention"], "correct answer": "devine intervention", "id": "444"}
 
442
  {"pretext": "Context: She looked like a tomato in the sun\nQuestion: What does \" like a tomato\" refer to?\n", "options": ["vegetable", "blush", "redness/ tanning", "sweat "], "correct answer": "redness/ tanning", "id": "446"}
443
  {"pretext": "Context: The city is all very excited.\nQuestion: What does \"city\" mean:?\n", "options": ["A geographical land", "Citizen of the city", "Roads of the city", "None"], "correct answer": "Citizen of the city", "id": "447"}
444
  {"pretext": "Context: From the cradle to the grave .\nQuestion: What does \"grave\" mean:?\n", "options": ["A place", "Sadness", "Hoplessness", "Death"], "correct answer": "Death", "id": "448"}
 
 
 
 
 
1
  {"pretext": "Context: The clock is ticking; we need to hurry\nQuestion: what does \"clock\" represents here?\n", "options": ["timer", "passage of time", "chronograph", "log"], "correct answer": "passage of time", "id": "5"}
2
  {"pretext": "Context: The canvas tells a story of passion and creativity\nQuestion: what does \"canvas\" refer to?\n", "options": ["sheet", "cover", "cloth", "work of art"], "correct answer": "work of art", "id": "6"}
3
  {"pretext": "Context: He sold his car for a song \nQuestion: What does \"song\" mean in the given sentence ?\n", "options": ["Pittance ", "Profit ", "Low maintenance ", "High maintenance "], "correct answer": "Pittance ", "id": "7"}
 
381
  {"pretext": "Context: The quill penned the famous novel\nQuestion: what does \"quill\" refer to?\n", "options": ["author", "down", "prick", "punches"], "correct answer": "author", "id": "385"}
382
  {"pretext": "Context: Vietnamese dishes do not sell well in India. \nQuestion: What does \"dishes\" refer to:?\n", "options": ["Plates", "Crockery", "Clothes", "Food"], "correct answer": "Food", "id": "386"}
383
  {"pretext": "Context: The decision of the chair is final \nQuestion: What does\" the chair\" stands for ?\n", "options": ["President ", "Law", "Security", "none "], "correct answer": "President ", "id": "387"}
384
+ {"pretext": "Context: \"All study and no play makes Johny a dull boy.\"\nQuestion: What does \"play\" refer to:?\n", "options": ["Moments of fun", "Swings", "Ball", "Bat"], "correct answer": "Moments of fun", "id": "388"}
385
  {"pretext": "Context: The track team is looking forward to competing at the nationals.\nQuestion: What does \"gun\" mean:?\n", "options": ["Team of atheletes specializing in a track activity", "Team of railroad workers", "Group of musicians performing on a track", "None"], "correct answer": "Team of atheletes specializing in a track activity", "id": "389"}
386
  {"pretext": "Context: Doctor suggested Alice to drink enough fluids to prevent UTI \nQuestion: What does \" fluid' mean ?\n", "options": ["Medicine ", "Water ", "Soup ", "None"], "correct answer": "Water ", "id": "390"}
387
  {"pretext": "Context: Her eyes are windows to her soul\nQuestion: What does \"her eyes\" represents here?\n", "options": ["view", "scenes", "Inner thought", "None"], "correct answer": "Inner thought", "id": "391"}
 
405
  {"pretext": "Context: General motors is on strike \nQuestion: What does \" general motor\" refer to ?\n", "options": ["Motor ", "automobile workers ", "engineers ", "construction workers "], "correct answer": "automobile workers ", "id": "409"}
406
  {"pretext": "Context: His wallet is feeling the strain this month\nQuestion: what does \"the strain\" refer to?\n", "options": ["financial stress", "demands", "burden", "demands"], "correct answer": "financial stress", "id": "410"}
407
  {"pretext": "Context: All eyes were on the player as he led the team to victory.\nQuestion: what does \"all eyes\" refer to?\n", "options": ["Attention", "look", "view", "All the above"], "correct answer": "Attention", "id": "411"}
408
+ {"pretext": "Context: The press is always hungry for a story\nQuestion: what does \"hungry\" refer to?\n", "options": ["starving", "Strong desire", "empty", "none"], "correct answer": "Strong desire", "id": "412"}
409
  {"pretext": "Context: She's always chasing the dollar.\nQuestion: What does \"the dollar\" mean:?\n", "options": ["A dollar bill", "Dollar coins", "Financial success or wealth ", "None"], "correct answer": "Financial success or wealth ", "id": "413"}
410
+ {"pretext": "Context: Vedang writes a good hand.\nQuestion: What does \"hand\" mean:?\n", "options": ["With a strong grip", "Essay", "Handwriting", "None"], "correct answer": "Handwriting", "id": "414"}
411
  {"pretext": "Context: She's always chasing the taste of victory.\nQuestion: What does \"taste of victory\" mean:?\n", "options": ["The literal taste of winning", "A satisfaction and triumph associated with winning", "A type of victory celebration", "A type of competition"], "correct answer": "A satisfaction and triumph associated with winning", "id": "415"}
412
  {"pretext": "Context: The classroom is very attentive.\nQuestion: What does \"classroom\" mean:?\n", "options": ["Walls of the classroom", "Students", "Teacher", "Benches and desks"], "correct answer": "Students", "id": "416"}
413
  {"pretext": "Context: My uncle smokes atleast one pack a day.\nQuestion: What does \"pack\" mean:?\n", "options": ["Group of wolves", "Group of dogs", "Packet of cards", "Packet of cigarettes"], "correct answer": "Packet of cigarettes", "id": "417"}
 
438
  {"pretext": "Context: The Iron Curtain divided Europe during the Cold War.\nQuestion: What does \"The Iron Curtain\" mean:?\n", "options": ["A type of window treatment", "A famous theater production", "The divide between Eastern and Western Europe during the Cold War ", "A heavy metal music band"], "correct answer": "The divide between Eastern and Western Europe during the Cold War ", "id": "442"}
439
  {"pretext": "Context: The reception called to ask if the customers needed anything. \nQuestion: What does \"reception\" refer to :?\n", "options": ["Reception of a building", "Employee working at the reception. ", "Customer", "Owner"], "correct answer": "Employee working at the reception. ", "id": "443"}
440
  {"pretext": "Context: The hand of God was on his shoulder\nQuestion: what does \"the hand of God\" refer to?\n", "options": ["hand", "responsibility", "care", "devine intervention"], "correct answer": "devine intervention", "id": "444"}
441
+ {"pretext": "Context: Broadway is the heart of American theater\nQuestion: what does \"broadway\" refer to?\n", "options": ["road", "place", "highway", "American theater industry "], "correct answer": "American theater industry ", "id": "445"}
442
  {"pretext": "Context: She looked like a tomato in the sun\nQuestion: What does \" like a tomato\" refer to?\n", "options": ["vegetable", "blush", "redness/ tanning", "sweat "], "correct answer": "redness/ tanning", "id": "446"}
443
  {"pretext": "Context: The city is all very excited.\nQuestion: What does \"city\" mean:?\n", "options": ["A geographical land", "Citizen of the city", "Roads of the city", "None"], "correct answer": "Citizen of the city", "id": "447"}
444
  {"pretext": "Context: From the cradle to the grave .\nQuestion: What does \"grave\" mean:?\n", "options": ["A place", "Sadness", "Hoplessness", "Death"], "correct answer": "Death", "id": "448"}
task_2/dev.jsonl CHANGED
@@ -1,5 +1,5 @@
1
- {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nX: Are you comfortable with a busy city?\nY: I don't like all the noise\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "653"}
2
- {"pretext": "Context: X wants to know about Y's music preferences.\nX: Do you have a favorite musician?\nY: I have all of Jeff Buckley's CDs.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1731"}
3
- {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nX: Have you read anything from the NYT bestseller list?\nY: I try to get to at least one thing from it every year.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1393"}
4
- {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nX: Have you read any books by Terry Pratchett?\nY: Discworld is one of my favourite books.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1138"}
5
- {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Do you still have your pet hamster?\nY: She died a few years ago.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "636"}
 
1
+ {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Would you like to exchange numbers?\nY: I'll get my contacts open here.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "0"}
2
+ {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Have you lived in this area long?\nY: Several of my neighbors remember me in diapers.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1"}
3
+ {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Are you going to the high school football game tonight?\nY: I'd rather do anything else.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "2"}
4
+ {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Got anything going on on Saturday?\nY: I am planting the garden.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "3"}
5
+ {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you usually have to work late?\nY: Often I find myself the last one at work.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "4"}
task_2/test.jsonl CHANGED
@@ -1,8 +1,3 @@
1
- {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Would you like to exchange numbers?\nY: I'll get my contacts open here.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "0"}
2
- {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Have you lived in this area long?\nY: Several of my neighbors remember me in diapers.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1"}
3
- {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Are you going to the high school football game tonight?\nY: I'd rather do anything else.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "2"}
4
- {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Got anything going on on Saturday?\nY: I am planting the garden.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "3"}
5
- {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you usually have to work late?\nY: Often I find myself the last one at work.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "4"}
6
  {"pretext": "Context: X wants to know about Y's music preferences.\nX: Do you listen to classical music?\nY: I'm not a fan\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "5"}
7
  {"pretext": "Context: Y has just travelled from a different city to meet X.\nX: Have you taken any big vacations lately?\nY: I went to Europe for 3 weeks last fall.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "6"}
8
  {"pretext": "Context: Y has just travelled from a different city to meet X.\nX: Would you like to pet my dog?\nY: I am allergic.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "7"}
@@ -634,6 +629,7 @@
634
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you get on with your current colleagues?\nY: most of them I do\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "633"}
635
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Are you married now?\nY: Been married for two years.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "634"}
636
  {"pretext": "Context: X wants to know about Y's food preferences.\nX: Have you ever tried vegan cuisine?\nY: There's a great vegan spot I often go to for lunch.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "635"}
 
637
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you have a degree?\nY: I have two degrees.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "637"}
638
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Does your brother still live in the neighborhood?\nY: he moved to another country\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "638"}
639
  {"pretext": "Context: X wants to know about Y's music preferences.\nX: Have you been to the 360 amphitheater?\nY: I have never been there.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "639"}
@@ -650,6 +646,7 @@
650
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nX: Are you happy with the flat?\nY: I'm kind of regretting the purchase now.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "650"}
651
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nX: Is it close to a metro stop?\nY: I'll only have to walk two minutes to get to the subway.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "651"}
652
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Are you new to the city?\nY: I have been a few times before\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "652"}
 
653
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Are you married?\nY: We're having a long engagement.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "654"}
654
  {"pretext": "Context: X wants to know about Y's music preferences.\nX: Have you been to any jazz shows?\nY: I used to play in a jazz band in high school.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "In the middle, neither yes nor no", "id": "655"}
655
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nX: Do you like the building it's in?\nY: It's a beauty.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "656"}
@@ -1134,6 +1131,7 @@
1134
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Do you live alone?\nY: I have 3 roomates.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1135"}
1135
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Do you still live with your grandparents?\nY: They died many years ago.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1136"}
1136
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Does your current position have growth potential?\nY: I've heard about a lot of people moving up from there.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1137"}
 
1137
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Do you need a ride anywhere?\nY: I need to go to the store.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1139"}
1138
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Are you new to this city?\nY: It's my first time here.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1140"}
1139
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Is that really you?\nY: It certainly is\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1141"}
@@ -1388,6 +1386,7 @@
1388
  {"pretext": "Context: X wants to know about Y's food preferences.\nX: Are you okay with spice?\nY: I like most spices, except curry.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes, subject to some conditions", "id": "1390"}
1389
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nX: Have you considered renting?\nY: We will have to rent.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1391"}
1390
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Should the new company be located near home?\nY: I would like a shorter commute.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1392"}
 
1391
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Enjoy exercising?\nY: When it's something fun, like bouldering.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes, subject to some conditions", "id": "1394"}
1392
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Do you work full-time?\nY: I have a couple of part-time gigs.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1395"}
1393
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nX: Do you like sci fi?\nY: I'm a huge sci-fi fan.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1396"}
@@ -1725,6 +1724,7 @@
1725
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you like your colleagues?\nY: I have a great team.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1728"}
1726
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Do you like to drink?\nY: Now and again I do\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1729"}
1727
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Are you outgoing?\nY: I turn into a chatterbox after a beer or two!\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes, subject to some conditions", "id": "1730"}
 
1728
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nX: Do you like fiction?\nY: I don't tend to read it very much.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1732"}
1729
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Would you like to stop for a drink with me?\nY: I can't tonight\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1733"}
1730
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nX: Isn't Lord of the Rings boring?\nY: It's long, but it's engaging.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1734"}
 
 
 
 
 
 
1
  {"pretext": "Context: X wants to know about Y's music preferences.\nX: Do you listen to classical music?\nY: I'm not a fan\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "5"}
2
  {"pretext": "Context: Y has just travelled from a different city to meet X.\nX: Have you taken any big vacations lately?\nY: I went to Europe for 3 weeks last fall.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "6"}
3
  {"pretext": "Context: Y has just travelled from a different city to meet X.\nX: Would you like to pet my dog?\nY: I am allergic.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "7"}
 
629
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you get on with your current colleagues?\nY: most of them I do\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "633"}
630
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Are you married now?\nY: Been married for two years.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "634"}
631
  {"pretext": "Context: X wants to know about Y's food preferences.\nX: Have you ever tried vegan cuisine?\nY: There's a great vegan spot I often go to for lunch.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "635"}
632
+ {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Do you still have your pet hamster?\nY: She died a few years ago.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "636"}
633
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you have a degree?\nY: I have two degrees.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "637"}
634
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Does your brother still live in the neighborhood?\nY: he moved to another country\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "638"}
635
  {"pretext": "Context: X wants to know about Y's music preferences.\nX: Have you been to the 360 amphitheater?\nY: I have never been there.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "639"}
 
646
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nX: Are you happy with the flat?\nY: I'm kind of regretting the purchase now.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "650"}
647
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nX: Is it close to a metro stop?\nY: I'll only have to walk two minutes to get to the subway.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "651"}
648
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Are you new to the city?\nY: I have been a few times before\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "652"}
649
+ {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nX: Are you comfortable with a busy city?\nY: I don't like all the noise\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "653"}
650
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Are you married?\nY: We're having a long engagement.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "654"}
651
  {"pretext": "Context: X wants to know about Y's music preferences.\nX: Have you been to any jazz shows?\nY: I used to play in a jazz band in high school.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "In the middle, neither yes nor no", "id": "655"}
652
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nX: Do you like the building it's in?\nY: It's a beauty.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "656"}
 
1131
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Do you live alone?\nY: I have 3 roomates.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1135"}
1132
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Do you still live with your grandparents?\nY: They died many years ago.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1136"}
1133
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Does your current position have growth potential?\nY: I've heard about a lot of people moving up from there.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1137"}
1134
+ {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nX: Have you read any books by Terry Pratchett?\nY: Discworld is one of my favourite books.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1138"}
1135
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Do you need a ride anywhere?\nY: I need to go to the store.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1139"}
1136
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Are you new to this city?\nY: It's my first time here.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1140"}
1137
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Is that really you?\nY: It certainly is\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1141"}
 
1386
  {"pretext": "Context: X wants to know about Y's food preferences.\nX: Are you okay with spice?\nY: I like most spices, except curry.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes, subject to some conditions", "id": "1390"}
1387
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nX: Have you considered renting?\nY: We will have to rent.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1391"}
1388
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Should the new company be located near home?\nY: I would like a shorter commute.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1392"}
1389
+ {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nX: Have you read anything from the NYT bestseller list?\nY: I try to get to at least one thing from it every year.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1393"}
1390
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Enjoy exercising?\nY: When it's something fun, like bouldering.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes, subject to some conditions", "id": "1394"}
1391
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Do you work full-time?\nY: I have a couple of part-time gigs.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1395"}
1392
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nX: Do you like sci fi?\nY: I'm a huge sci-fi fan.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1396"}
 
1724
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you like your colleagues?\nY: I have a great team.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1728"}
1725
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Do you like to drink?\nY: Now and again I do\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1729"}
1726
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Are you outgoing?\nY: I turn into a chatterbox after a beer or two!\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes, subject to some conditions", "id": "1730"}
1727
+ {"pretext": "Context: X wants to know about Y's music preferences.\nX: Do you have a favorite musician?\nY: I have all of Jeff Buckley's CDs.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1731"}
1728
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nX: Do you like fiction?\nY: I don't tend to read it very much.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1732"}
1729
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Would you like to stop for a drink with me?\nY: I can't tonight\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1733"}
1730
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nX: Isn't Lord of the Rings boring?\nY: It's long, but it's engaging.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1734"}
task_3/dev.jsonl CHANGED
@@ -1,5 +1,5 @@
1
- {"pretext": "Context: Y has just travelled from a different city to meet X.\nX: Did you have a good journey?\nY: I'm so relieved to be finally here!\nImplied meaning: His journey was tiring and after reaching the destination he feel relieved. \n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "881"}
2
- {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Are you adventurous?\nY: Adventure is my middle name.\nImplied meaning: He does not like adventure as it's his middle name.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1378"}
3
- {"pretext": "Context: X wants to know about Y's food preferences.\nX: Do you have a favorite restaurant?\nY: I like the sushi place next door.\nImplied meaning: He has a preference for a specific sushi restaurant located nearby.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "418"}
4
- {"pretext": "Context: X wants to know about Y's food preferences.\nX: Do like a spicy foods?\nY: Not as much as everyone else on this platform.\nImplied meaning: He does not have a strong preference for spicy foods compared to other individuals.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "379"}
5
- {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Are you planning to have a busy weekend?\nY: I have no plans.\nImplied meaning: He has this weekend free.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1556"}
 
1
+ {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Would you like to exchange numbers?\nY: I'll get my contacts open here.\nImplied meaning: He likes to exchange numbers\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "0"}
2
+ {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Have you lived in this area long?\nY: Several of my neighbors remember me in diapers.\nImplied meaning: He has been living in the area since his childhood\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1"}
3
+ {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Are you going to the high school football game tonight?\nY: I'd rather do anything else.\nImplied meaning: He prefer to do anyother activity as he is not interested in high school football game tonight. \n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "2"}
4
+ {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Got anything going on on Saturday?\nY: I am planting the garden.\nImplied meaning: She already have a plan for gardening on saturday \n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "3"}
5
+ {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you usually have to work late?\nY: Often I find myself the last one at work.\nImplied meaning: He frequently stays at work until late hours or beyond regular working hours.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "4"}
task_3/test.jsonl CHANGED
@@ -1,8 +1,3 @@
1
- {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Would you like to exchange numbers?\nY: I'll get my contacts open here.\nImplied meaning: He likes to exchange numbers\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "0"}
2
- {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Have you lived in this area long?\nY: Several of my neighbors remember me in diapers.\nImplied meaning: He has been living in the area since his childhood\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1"}
3
- {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Are you going to the high school football game tonight?\nY: I'd rather do anything else.\nImplied meaning: He prefer to do anyother activity as he is not interested in high school football game tonight. \n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "2"}
4
- {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Got anything going on on Saturday?\nY: I am planting the garden.\nImplied meaning: She already have a plan for gardening on saturday \n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "3"}
5
- {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you usually have to work late?\nY: Often I find myself the last one at work.\nImplied meaning: He frequently stays at work until late hours or beyond regular working hours.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "4"}
6
  {"pretext": "Context: X wants to know about Y's music preferences.\nX: Do you listen to classical music?\nY: I'm not a fan\nImplied meaning: He don't have any special intereset in classiccal music, but he may listen to it\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "5"}
7
  {"pretext": "Context: Y has just travelled from a different city to meet X.\nX: Have you taken any big vacations lately?\nY: I went to Europe for 3 weeks last fall.\nImplied meaning: He had recent and big vacation in Europe \n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "6"}
8
  {"pretext": "Context: Y has just travelled from a different city to meet X.\nX: Would you like to pet my dog?\nY: I am allergic.\nImplied meaning: He dont like to pet gogs because he is allergic\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "7"}
@@ -377,6 +372,7 @@
377
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Did you guys have a productive week?\nY: It was a pretty busy week.\nImplied meaning: Her week was productive and had a significant amount of work related activities.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "376"}
378
  {"pretext": "Context: Y has just travelled from a different city to meet X.\nX: Interested in hitting the outlet mall?\nY: Let's go!\nImplied meaning: He is enthusiastic in visiting outlet mall for the purpose of shopping.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "377"}
379
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Do you watch many movies?\nY: I spend too much time watching movies\nImplied meaning: She is a great fan of movies and watch it regularly.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "378"}
 
380
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you work alone?\nY: I share a cubicle with one other person.\nImplied meaning: She does not work alone and instead shares a workplace with others.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "380"}
381
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Want to come in and have a cup of tea ?\nY: You can come over to mine first\nImplied meaning: He is extending an invitation to her to visit his residence first. \n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "381"}
382
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nX: Will you need a loan to buy it?\nY: Maybe a little one\nImplied meaning: She require a small loan to purchase the item being discussed.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "382"}
@@ -415,6 +411,7 @@
415
  {"pretext": "Context: X wants to know about Y's food preferences.\nX: Do you eat breakfast food for lunch or dinner?\nY: I'll occasionally have pancakes for dinner.\nImplied meaning: She sometimes chooses to have breakfast food, such as pancakes, for her dinner.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "415"}
416
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nX: Do you read everyday?\nY: I always have several books going.\nImplied meaning: He is an avid reader and regularly engages in reading multiple books concurrently.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "416"}
417
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Should we go for a drink?\nY: We should go to our old hangout.\nImplied meaning: She prefer to revisit their familiar frequent place for a drink.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "417"}
 
418
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you usually have to work late?\nY: Most of the time.\nImplied meaning: She usually has heavy work load that force her to work late. \n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "419"}
419
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: do you want to do something for free?\nY: It would be nice to save some money.\nImplied meaning: He is interested in engaging in an activity that does not require any financial expenditure.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "420"}
420
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Aren't you glad it's Friday?\nY: Living for the weekend.\nImplied meaning: She looks forward to and enjoys the weekend.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "421"}
@@ -877,6 +874,7 @@
877
  {"pretext": "Context: X wants to know about Y's music preferences.\nX: Do you like Jazz music?\nY: I tend to play folks music.\nImplied meaning: Rather than jazz music he likes folks music.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "878"}
878
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nX: Do you have a favorite author?\nY: I like too many to make a decision.\nImplied meaning: She is a regular reader and have a list of favorite author, so picking one is difficult.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "879"}
879
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nX: Do have family in New York?\nY: I am all alone.\nImplied meaning: She does not have any family living in New York, he is alone in the city.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "880"}
 
880
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Did you have a good workday?\nY: I am thrilled with my day.\nImplied meaning: She had a great workday with challenging duties.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "882"}
881
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Did you go anywhere last weekend?\nY: We had a road trip to the mountains.\nImplied meaning: Last week, they had a wonderful road trip to the mountains.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "883"}
882
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Do you want something spicy?\nY: I always crave spicy food.\nImplied meaning: He enjoys spicy food and is always eager to have something with spice.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "884"}
@@ -1373,6 +1371,7 @@
1373
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Are you interested in a new industry?\nY: I'll do anything that pays more.\nImplied meaning: She ea interested in a new industry is it pays more.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1375"}
1374
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: How long have you been at your job?\nY: I started there after college.\nImplied meaning: She started the job after college. So it seems she is there for a long. \n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Other", "id": "1376"}
1375
  {"pretext": "Context: X wants to know about Y's music preferences.\nX: Do you like concerts?\nY: When I can sit close to the stage.\nImplied meaning: He likes concerts if he get seat closer to the stage.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes, subject to some conditions", "id": "1377"}
 
1376
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Are you adventurous?\nY: Adventure is my middle name.\nImplied meaning: He does not like adventure as it's his middle name.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1379"}
1377
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Can you play football?\nY: I was a quarterback for the school team.\nImplied meaning: Being quarterback for the school team he can play football.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1380"}
1378
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you make enough money at your job?\nY: I could make more.\nImplied meaning: She is not getting enough money at her job.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1381"}
@@ -1550,6 +1549,7 @@
1550
  {"pretext": "Context: X wants to know about Y's food preferences.\nX: What's your favorite type of cuisine?\nY: I love pizza!\nImplied meaning: Pizza is his favourite type of cuisine.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Other", "id": "1553"}
1551
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Do you have any kids?\nY: I plan on having them in the future.\nImplied meaning: She does not have any kids, but she is planning to have in future.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1554"}
1552
  {"pretext": "Context: X wants to know about Y's music preferences.\nX: I have tickets to an EDM music fest, does that sound like something you would want to do\nY: I dance to EDM music every day.\nImplied meaning: She wants to go to EDM music fest.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1555"}
 
1553
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Have you been considering this for awhile?\nY: It is a new idea.\nImplied meaning: He has not been considering this new idea.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1557"}
1554
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Have you gone back to our hometown this year?\nY: I haven't been there since we graduated.\nImplied meaning: I have not been to our hometown since we graduated.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1558"}
1555
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Are you still living there?\nY: I've moved around.\nImplied meaning: She is not still living there.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1559"}
 
 
 
 
 
 
1
  {"pretext": "Context: X wants to know about Y's music preferences.\nX: Do you listen to classical music?\nY: I'm not a fan\nImplied meaning: He don't have any special intereset in classiccal music, but he may listen to it\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "5"}
2
  {"pretext": "Context: Y has just travelled from a different city to meet X.\nX: Have you taken any big vacations lately?\nY: I went to Europe for 3 weeks last fall.\nImplied meaning: He had recent and big vacation in Europe \n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "6"}
3
  {"pretext": "Context: Y has just travelled from a different city to meet X.\nX: Would you like to pet my dog?\nY: I am allergic.\nImplied meaning: He dont like to pet gogs because he is allergic\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "7"}
 
372
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Did you guys have a productive week?\nY: It was a pretty busy week.\nImplied meaning: Her week was productive and had a significant amount of work related activities.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "376"}
373
  {"pretext": "Context: Y has just travelled from a different city to meet X.\nX: Interested in hitting the outlet mall?\nY: Let's go!\nImplied meaning: He is enthusiastic in visiting outlet mall for the purpose of shopping.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "377"}
374
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Do you watch many movies?\nY: I spend too much time watching movies\nImplied meaning: She is a great fan of movies and watch it regularly.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "378"}
375
+ {"pretext": "Context: X wants to know about Y's food preferences.\nX: Do like a spicy foods?\nY: Not as much as everyone else on this platform.\nImplied meaning: He does not have a strong preference for spicy foods compared to other individuals.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "379"}
376
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you work alone?\nY: I share a cubicle with one other person.\nImplied meaning: She does not work alone and instead shares a workplace with others.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "380"}
377
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Want to come in and have a cup of tea ?\nY: You can come over to mine first\nImplied meaning: He is extending an invitation to her to visit his residence first. \n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "381"}
378
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nX: Will you need a loan to buy it?\nY: Maybe a little one\nImplied meaning: She require a small loan to purchase the item being discussed.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "382"}
 
411
  {"pretext": "Context: X wants to know about Y's food preferences.\nX: Do you eat breakfast food for lunch or dinner?\nY: I'll occasionally have pancakes for dinner.\nImplied meaning: She sometimes chooses to have breakfast food, such as pancakes, for her dinner.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "415"}
412
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nX: Do you read everyday?\nY: I always have several books going.\nImplied meaning: He is an avid reader and regularly engages in reading multiple books concurrently.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "416"}
413
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Should we go for a drink?\nY: We should go to our old hangout.\nImplied meaning: She prefer to revisit their familiar frequent place for a drink.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "417"}
414
+ {"pretext": "Context: X wants to know about Y's food preferences.\nX: Do you have a favorite restaurant?\nY: I like the sushi place next door.\nImplied meaning: He has a preference for a specific sushi restaurant located nearby.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "418"}
415
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you usually have to work late?\nY: Most of the time.\nImplied meaning: She usually has heavy work load that force her to work late. \n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "419"}
416
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: do you want to do something for free?\nY: It would be nice to save some money.\nImplied meaning: He is interested in engaging in an activity that does not require any financial expenditure.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "420"}
417
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Aren't you glad it's Friday?\nY: Living for the weekend.\nImplied meaning: She looks forward to and enjoys the weekend.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "421"}
 
874
  {"pretext": "Context: X wants to know about Y's music preferences.\nX: Do you like Jazz music?\nY: I tend to play folks music.\nImplied meaning: Rather than jazz music he likes folks music.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "878"}
875
  {"pretext": "Context: X wants to know what sorts of books Y likes to read.\nX: Do you have a favorite author?\nY: I like too many to make a decision.\nImplied meaning: She is a regular reader and have a list of favorite author, so picking one is difficult.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "879"}
876
  {"pretext": "Context: Y has just told X that he/she is thinking of buying a flat in New York.\nX: Do have family in New York?\nY: I am all alone.\nImplied meaning: She does not have any family living in New York, he is alone in the city.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "880"}
877
+ {"pretext": "Context: Y has just travelled from a different city to meet X.\nX: Did you have a good journey?\nY: I'm so relieved to be finally here!\nImplied meaning: His journey was tiring and after reaching the destination he feel relieved. \n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "881"}
878
  {"pretext": "Context: X and Y are colleagues who are leaving work on a Friday at the same time.\nX: Did you have a good workday?\nY: I am thrilled with my day.\nImplied meaning: She had a great workday with challenging duties.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "882"}
879
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Did you go anywhere last weekend?\nY: We had a road trip to the mountains.\nImplied meaning: Last week, they had a wonderful road trip to the mountains.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "883"}
880
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Do you want something spicy?\nY: I always crave spicy food.\nImplied meaning: He enjoys spicy food and is always eager to have something with spice.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "884"}
 
1371
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Are you interested in a new industry?\nY: I'll do anything that pays more.\nImplied meaning: She ea interested in a new industry is it pays more.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1375"}
1372
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: How long have you been at your job?\nY: I started there after college.\nImplied meaning: She started the job after college. So it seems she is there for a long. \n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Other", "id": "1376"}
1373
  {"pretext": "Context: X wants to know about Y's music preferences.\nX: Do you like concerts?\nY: When I can sit close to the stage.\nImplied meaning: He likes concerts if he get seat closer to the stage.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes, subject to some conditions", "id": "1377"}
1374
+ {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Are you adventurous?\nY: Adventure is my middle name.\nImplied meaning: He does not like adventure as it's his middle name.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1378"}
1375
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Are you adventurous?\nY: Adventure is my middle name.\nImplied meaning: He does not like adventure as it's his middle name.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1379"}
1376
  {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Can you play football?\nY: I was a quarterback for the school team.\nImplied meaning: Being quarterback for the school team he can play football.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1380"}
1377
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Do you make enough money at your job?\nY: I could make more.\nImplied meaning: She is not getting enough money at her job.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1381"}
 
1549
  {"pretext": "Context: X wants to know about Y's food preferences.\nX: What's your favorite type of cuisine?\nY: I love pizza!\nImplied meaning: Pizza is his favourite type of cuisine.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Other", "id": "1553"}
1550
  {"pretext": "Context: Y has just moved into a neighbourhood and meets his/her new neighbour X.\nX: Do you have any kids?\nY: I plan on having them in the future.\nImplied meaning: She does not have any kids, but she is planning to have in future.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1554"}
1551
  {"pretext": "Context: X wants to know about Y's music preferences.\nX: I have tickets to an EDM music fest, does that sound like something you would want to do\nY: I dance to EDM music every day.\nImplied meaning: She wants to go to EDM music fest.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "Yes", "id": "1555"}
1552
+ {"pretext": "Context: X wants to know what activities Y likes to do during weekends.\nX: Are you planning to have a busy weekend?\nY: I have no plans.\nImplied meaning: He has this weekend free.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1556"}
1553
  {"pretext": "Context: Y has just told X that he/she is considering switching his/her job.\nX: Have you been considering this for awhile?\nY: It is a new idea.\nImplied meaning: He has not been considering this new idea.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1557"}
1554
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Have you gone back to our hometown this year?\nY: I haven't been there since we graduated.\nImplied meaning: I have not been to our hometown since we graduated.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1558"}
1555
  {"pretext": "Context: X and Y are childhood neighbours who unexpectedly run into each other at a cafe.\nX: Are you still living there?\nY: I've moved around.\nImplied meaning: She is not still living there.\n", "options": ["Yes", "No", "Yes, subject to some conditions", "In the middle, neither yes nor no", "Other"], "correct answer": "No", "id": "1559"}
task_4/dev.jsonl CHANGED
@@ -1,5 +1,5 @@
1
- {"pretext": "Speaker_1: are some of the strawberries in the bedroom\nSpeaker_2: four are there\nSpeaker_1: how many eggplants are in the bathroom\nSpeaker_2: two\nSpeaker_1: did you leave them in the bathroom\nSpeaker_2: I left them there and went to the lounge\nSpeaker_1: where is the cabbage\nSpeaker_2: it is in the bathroom or the bedroom\nSpeaker_1: did Jack place it in the bedroom\nSpeaker_2: no, he didn't\nSpeaker_1: did you place it in the bedroom\nSpeaker_2: no, I didn't\nSpeaker_1: are some of the cherries in the lounge\nSpeaker_2: I put two of them there\nSpeaker_1: are some of the grapefruits in the sunroom\nSpeaker_2: Jack said he put three of them there\nSpeaker_1: where can I find the plums\nSpeaker_2: the plums are in the sunroom\n", "options": ["the plums are not in the sunroom", "I am not sure where the plums are", "the plums are in the sunroom", "I don't know where the plums are"], "correct answer": "the plums are in the sunroom", "id": "198"}
2
- {"pretext": "Speaker_1: did you put the melons in the den\nSpeaker_2: I put them there and journeyed to the attic\nSpeaker_1: did Mila put the potatoes there\nSpeaker_2: she put them in the laundry if not the den\nSpeaker_1: was she in the den\nSpeaker_2: she was in the den if not in the den\nSpeaker_1: where was Noah\nSpeaker_2: he said he was in the kitchen\nSpeaker_1: did you see the broccolis\nSpeaker_2: I have no idea\nSpeaker_1: did you put them in the kitchen\nSpeaker_2: I put the persimmons there\nSpeaker_1: where are the plums\nSpeaker_2: the plums are in the laundry\nSpeaker_1: how many persimmons are in the kitchen\nSpeaker_2: three or four\n", "options": ["all of the persimmons are in the laundry", "I am not sure how many persimmons are in the kitchen", "all of the plums are in the kitchen", "all of the persimmons are in the kitchen"], "correct answer": "I am not sure how many persimmons are in the kitchen", "id": "735"}
3
- {"pretext": "Speaker_1: are all the green peppers in the porch\nSpeaker_2: some are there\nSpeaker_1: where did you go\nSpeaker_2: I went to the porch and the bathroom\nSpeaker_1: where did you see Chloe\nSpeaker_2: I don't know\nSpeaker_1: did Alexander leave the celeries in the bathroom\nSpeaker_2: I'm not sure\nSpeaker_1: how many are in the hallway\nSpeaker_2: there are two or three\nSpeaker_1: are all the corns in the porch\nSpeaker_2: Alexander said he saw some corns in the porch\nSpeaker_1: did you place the plums there\nSpeaker_2: I placed them in the bathroom\n", "options": ["I didn't place the plums in the porch", "I place the plums in the porch", "I place the corns in the porch", "the plums are in the porch"], "correct answer": "I didn't place the plums in the porch", "id": "1735"}
4
- {"pretext": "Speaker_1: where is the celery\nSpeaker_2: Amelia said there is a red pantry in the workshop\nSpeaker_1: what about the corn\nSpeaker_2: Isabella said she put the corn in the crawlspace and travelled to the kitchen\nSpeaker_1: how about the bananas\nSpeaker_2: there is a blue treasure chest in the workshop\nSpeaker_1: did Aria place the bananas there\nSpeaker_2: she placed them there and walked to the crawlspace\nSpeaker_1: are some of them in the workshop\nSpeaker_2: two bananas are in the workshop\nSpeaker_1: where can I get the grapes\nSpeaker_2: the grapes are in the kitchen\nSpeaker_1: are some of them there\nSpeaker_2: I left all of them there\nSpeaker_1: are all the asparagus in the TV_room\nSpeaker_2: some are in the TV_room\nSpeaker_1: are some of the potatoes in the crawlspace\nSpeaker_2: Aria said she put four there\nSpeaker_1: did she leave the asparagus in the crawlspace\nSpeaker_2: no, she didn't\n", "options": ["I leave the potatoes in the crawlspace", "Aria leave the asparagus in the crawlspace", "Aria didn't leave the asparagus in the crawlspace", "I don't know if Aria leave the asparagus in the crawlspace"], "correct answer": "Aria didn't leave the asparagus in the crawlspace", "id": "704"}
5
- {"pretext": "Speaker_1: how can I find Lily\nSpeaker_2: I know she didn't went to the study\nSpeaker_1: did she go to the patio \nSpeaker_2: yes\nSpeaker_1: where did you go\nSpeaker_2: I journeyed to the patio and the sunroom\nSpeaker_1: are some of the beans in the patio\nSpeaker_2: three beans are in the patio\nSpeaker_1: did you leave them there\nSpeaker_2: I left them there and travelled to the sunroom\n", "options": ["I didn't leave the beans in the patio", "I left the beans in the patio and then travelled to the sunroom", "the beans are in the patio", "I leave the beans in the patio"], "correct answer": "I left the beans in the patio and then travelled to the sunroom", "id": "1236"}
 
1
+ {"pretext": "Speaker_1: did Liam leave the watermelons in the attic\nSpeaker_2: no, he didn't\nSpeaker_1: did Jackson leave the watermelons there\nSpeaker_2: he said he was not there\nSpeaker_1: where can I get them\nSpeaker_2: the watermelons are in the bathroom or the laundry\nSpeaker_1: what about the cherries\nSpeaker_2: they are in the kitchen\nSpeaker_1: did you see the cabbages\nSpeaker_2: there is a blue bathtub in the bathroom\nSpeaker_1: did you place the cabbages there\nSpeaker_2: no, I didn't\nSpeaker_1: are all of them there\nSpeaker_2: some are there\nSpeaker_1: how many cherries are in the kitchen\nSpeaker_2: there are at least one there\nSpeaker_1: did Liam put the cherries there\nSpeaker_2: he put them there and walked to the bathroom\n", "options": ["Liam put the cherries in the kitchen and then walked to the bathroom", "Liam didn't put the cherries in the kitchen", "I put the cherries in the kitchen", "Liam put the cherries in the kitchen"], "correct answer": "Liam put the cherries in the kitchen and then walked to the bathroom", "id": "0"}
2
+ {"pretext": "Speaker_1: how many potatoes are in the lounge\nSpeaker_2: there are one or two\nSpeaker_1: did Hunter place them in the office\nSpeaker_2: he said he was in the TV_room\nSpeaker_1: did you see the cabbages\nSpeaker_2: the cabbages are in the TV_room or the cellar\nSpeaker_1: where can I get the celeries\nSpeaker_2: they are in the lounge or the TV_room\nSpeaker_1: how about the pineapples\nSpeaker_2: they are in the TV_room or the lounge\n", "options": ["the pineapples are not in the TV_room", "the pineapples are in the TV_room", "I was not in the TV_room", "I am not sure where the pineapples are"], "correct answer": "I am not sure where the pineapples are", "id": "1"}
3
+ {"pretext": "Speaker_1: are all the strawberries in the staircase\nSpeaker_2: some are there\nSpeaker_1: how many green peppers are in the sunroom\nSpeaker_2: there are two\nSpeaker_1: did you put the melon there\nSpeaker_2: I put the green peppers there\nSpeaker_1: are all the broccolis there\nSpeaker_2: some are in the sunroom\nSpeaker_1: where can I find the persimmons\nSpeaker_2: Alexander and I left them in the bedroom\nSpeaker_1: did you put the broccolis in the sunroom\nSpeaker_2: yes, I did\nSpeaker_1: did Jayden put the apples in the porch\nSpeaker_2: I didn't see him\nSpeaker_1: did Alexander place the melon there\nSpeaker_2: no\nSpeaker_1: did Jayden put it there\nSpeaker_2: he put it in the bedroom\nSpeaker_1: are some of the persimmons in the bedroom\nSpeaker_2: yes, there are some in the bedroom\n", "options": ["four of the persimmons are in the bedroom", "I am not sure if some of the persimmons are in the bedroom", "some of the persimmons are in the bedroom", "the persimmons are not in the bedroom"], "correct answer": "some of the persimmons are in the bedroom", "id": "2"}
4
+ {"pretext": "Speaker_1: did Elizabeth place the tomatoes in the dining_room\nSpeaker_2: she said she was not in the dining_room\nSpeaker_1: where were you\nSpeaker_2: I walked to the workshop and the dining_room\nSpeaker_1: where can I get the pumpkins\nSpeaker_2: the pumpkins are in the workshop\nSpeaker_1: did Elizabeth leave them there\nSpeaker_2: she left them there and journeyed to the hall\nSpeaker_1: where can I get the pineapples\nSpeaker_2: Jacob said there is a blue crate in the front_yard\nSpeaker_1: are some of them there\nSpeaker_2: all of the pineapples are in the front_yard\nSpeaker_1: where did Jacob go\nSpeaker_2: he was in the front_yard\nSpeaker_1: how many tomatoes are in the hall\nSpeaker_2: one or two\nSpeaker_1: where can I find the apple\nSpeaker_2: the apple is in the front_yard or the workshop\nSpeaker_1: where can I get the green peppers\nSpeaker_2: I left the green peppers in the workshop and went to the dining_room\n", "options": ["I left the green peppers in the workshop and then went to the dining_room", "I don't know where the green peppers are", "I left the green peppers in the dining_room and then went to the workshop", "the green peppers are in the dining_room"], "correct answer": "I left the green peppers in the workshop and then went to the dining_room", "id": "3"}
5
+ {"pretext": "Speaker_1: where did Isabella go\nSpeaker_2: she was in the laundry or the patio\nSpeaker_1: where did Amelia go\nSpeaker_2: she said she was in the laundry\nSpeaker_1: are some of the oranges in the workshop\nSpeaker_2: they are all there\n", "options": ["the oranges are not in the workshop", "I am not sure if some of the oranges are in the workshop", "all the oranges are in the workshop", "all of the oranges are in the workshop"], "correct answer": "all the oranges are in the workshop", "id": "4"}
task_4/test.jsonl CHANGED
@@ -1,8 +1,3 @@
1
- {"pretext": "Speaker_1: did Liam leave the watermelons in the attic\nSpeaker_2: no, he didn't\nSpeaker_1: did Jackson leave the watermelons there\nSpeaker_2: he said he was not there\nSpeaker_1: where can I get them\nSpeaker_2: the watermelons are in the bathroom or the laundry\nSpeaker_1: what about the cherries\nSpeaker_2: they are in the kitchen\nSpeaker_1: did you see the cabbages\nSpeaker_2: there is a blue bathtub in the bathroom\nSpeaker_1: did you place the cabbages there\nSpeaker_2: no, I didn't\nSpeaker_1: are all of them there\nSpeaker_2: some are there\nSpeaker_1: how many cherries are in the kitchen\nSpeaker_2: there are at least one there\nSpeaker_1: did Liam put the cherries there\nSpeaker_2: he put them there and walked to the bathroom\n", "options": ["Liam put the cherries in the kitchen and then walked to the bathroom", "Liam didn't put the cherries in the kitchen", "I put the cherries in the kitchen", "Liam put the cherries in the kitchen"], "correct answer": "Liam put the cherries in the kitchen and then walked to the bathroom", "id": "0"}
2
- {"pretext": "Speaker_1: how many potatoes are in the lounge\nSpeaker_2: there are one or two\nSpeaker_1: did Hunter place them in the office\nSpeaker_2: he said he was in the TV_room\nSpeaker_1: did you see the cabbages\nSpeaker_2: the cabbages are in the TV_room or the cellar\nSpeaker_1: where can I get the celeries\nSpeaker_2: they are in the lounge or the TV_room\nSpeaker_1: how about the pineapples\nSpeaker_2: they are in the TV_room or the lounge\n", "options": ["the pineapples are not in the TV_room", "the pineapples are in the TV_room", "I was not in the TV_room", "I am not sure where the pineapples are"], "correct answer": "I am not sure where the pineapples are", "id": "1"}
3
- {"pretext": "Speaker_1: are all the strawberries in the staircase\nSpeaker_2: some are there\nSpeaker_1: how many green peppers are in the sunroom\nSpeaker_2: there are two\nSpeaker_1: did you put the melon there\nSpeaker_2: I put the green peppers there\nSpeaker_1: are all the broccolis there\nSpeaker_2: some are in the sunroom\nSpeaker_1: where can I find the persimmons\nSpeaker_2: Alexander and I left them in the bedroom\nSpeaker_1: did you put the broccolis in the sunroom\nSpeaker_2: yes, I did\nSpeaker_1: did Jayden put the apples in the porch\nSpeaker_2: I didn't see him\nSpeaker_1: did Alexander place the melon there\nSpeaker_2: no\nSpeaker_1: did Jayden put it there\nSpeaker_2: he put it in the bedroom\nSpeaker_1: are some of the persimmons in the bedroom\nSpeaker_2: yes, there are some in the bedroom\n", "options": ["four of the persimmons are in the bedroom", "I am not sure if some of the persimmons are in the bedroom", "some of the persimmons are in the bedroom", "the persimmons are not in the bedroom"], "correct answer": "some of the persimmons are in the bedroom", "id": "2"}
4
- {"pretext": "Speaker_1: did Elizabeth place the tomatoes in the dining_room\nSpeaker_2: she said she was not in the dining_room\nSpeaker_1: where were you\nSpeaker_2: I walked to the workshop and the dining_room\nSpeaker_1: where can I get the pumpkins\nSpeaker_2: the pumpkins are in the workshop\nSpeaker_1: did Elizabeth leave them there\nSpeaker_2: she left them there and journeyed to the hall\nSpeaker_1: where can I get the pineapples\nSpeaker_2: Jacob said there is a blue crate in the front_yard\nSpeaker_1: are some of them there\nSpeaker_2: all of the pineapples are in the front_yard\nSpeaker_1: where did Jacob go\nSpeaker_2: he was in the front_yard\nSpeaker_1: how many tomatoes are in the hall\nSpeaker_2: one or two\nSpeaker_1: where can I find the apple\nSpeaker_2: the apple is in the front_yard or the workshop\nSpeaker_1: where can I get the green peppers\nSpeaker_2: I left the green peppers in the workshop and went to the dining_room\n", "options": ["I left the green peppers in the workshop and then went to the dining_room", "I don't know where the green peppers are", "I left the green peppers in the dining_room and then went to the workshop", "the green peppers are in the dining_room"], "correct answer": "I left the green peppers in the workshop and then went to the dining_room", "id": "3"}
5
- {"pretext": "Speaker_1: where did Isabella go\nSpeaker_2: she was in the laundry or the patio\nSpeaker_1: where did Amelia go\nSpeaker_2: she said she was in the laundry\nSpeaker_1: are some of the oranges in the workshop\nSpeaker_2: they are all there\n", "options": ["the oranges are not in the workshop", "I am not sure if some of the oranges are in the workshop", "all the oranges are in the workshop", "all of the oranges are in the workshop"], "correct answer": "all the oranges are in the workshop", "id": "4"}
6
  {"pretext": "Speaker_1: did Lucas place the strawberries in the office\nSpeaker_2: I didn't see him\nSpeaker_1: did he leave the peas in the office\nSpeaker_2: he left them in the TV_room if not the office\nSpeaker_1: where were you\nSpeaker_2: I travelled to the staircase and the TV_room\nSpeaker_1: where can I find the orange\nSpeaker_2: there is a green envelope in the staircase\nSpeaker_1: did Lucas leave it in the staircase\nSpeaker_2: yes\nSpeaker_1: are some of the bananas in the office\nSpeaker_2: Mason said he saw they were all in the office\nSpeaker_1: did he place the bananas in the office\nSpeaker_2: yes, he did\n", "options": ["the bananas are in the office", "I didn't place the bananas in the office", "Mason place the bananas in the office", "Mason placed the bananas in the office"], "correct answer": "Mason placed the bananas in the office", "id": "5"}
7
  {"pretext": "Speaker_1: are some of the eggplants in the living_room\nSpeaker_2: all of them are in the living_room\nSpeaker_1: where are the spinaches\nSpeaker_2: the spinaches are in the living_room\nSpeaker_1: did Liam leave them there\nSpeaker_2: no\nSpeaker_1: are all the spinaches there\nSpeaker_2: yes\nSpeaker_1: are some of the cherries in the kitchen\nSpeaker_2: all of the cherries are in the kitchen\nSpeaker_1: where was Aiden\nSpeaker_2: I know he didn't went to the kitchen\nSpeaker_1: where was he\nSpeaker_2: he said he was in the workshop\nSpeaker_1: did you put the eggplants in the pantry\nSpeaker_2: no, I didn't\n", "options": ["I didn't put the eggplants in the pantry", "I put the eggplants in the pantry", "the eggplants are in the pantry", "the eggplants are in the workshop"], "correct answer": "I didn't put the eggplants in the pantry", "id": "6"}
8
  {"pretext": "Speaker_1: where can I find the lemons\nSpeaker_2: Ava said there is a green crate in the workshop\nSpeaker_1: are some of them there\nSpeaker_2: Ava said she left four of the lemons there\n", "options": ["all of the lemons are in the workshop", "four of the lemons are in the workshop", "I am not sure how many lemons are in the workshop", "the lemons are not in the workshop"], "correct answer": "four of the lemons are in the workshop", "id": "7"}
@@ -196,6 +191,7 @@
196
  {"pretext": "Speaker_1: where can I get the grapes\nSpeaker_2: they are in the hallway\nSpeaker_1: did Lily put them in the hallway\nSpeaker_2: she put them there and walked to the study\n", "options": ["I didn't put the grapes in the hallway", "I don't know if Lily put the grapes in the hallway", "the grapes are in the hallway", "Lily put the grapes in the hallway and then walked to the study"], "correct answer": "Lily put the grapes in the hallway and then walked to the study", "id": "195"}
197
  {"pretext": "Speaker_1: did Carter place the plums in the bedroom\nSpeaker_2: he placed the pineapples there\nSpeaker_1: where is the lettuce\nSpeaker_2: the lettuce is in the back_yard\nSpeaker_1: did you leave it there\nSpeaker_2: yes\nSpeaker_1: where are the grapefruits\nSpeaker_2: they are in the attic\nSpeaker_1: did you leave them there\nSpeaker_2: no, I didn't\nSpeaker_1: where can I get the peaches\nSpeaker_2: there is a blue bathtub in the bedroom\nSpeaker_1: are some of them there\nSpeaker_2: Owen said he left five of them there\nSpeaker_1: where was Carter\nSpeaker_2: he was in the sunroom\nSpeaker_1: did he place the celeries in the attic\nSpeaker_2: I'm not sure\nSpeaker_1: are some of the pineapples in the bedroom\nSpeaker_2: three pineapples are in the bedroom\n", "options": ["I am not sure how many pineapples are in the bedroom", "three of the pineapples are in the bedroom", "I am not sure if some of the pineapples are in the bedroom", "all of the pineapples are in the attic"], "correct answer": "three of the pineapples are in the bedroom", "id": "196"}
198
  {"pretext": "Speaker_1: are all the eggplants in the garage\nSpeaker_2: some eggplants are in the garage\nSpeaker_1: are all the pumpkins in the dining_room\nSpeaker_2: I'm not sure\nSpeaker_1: where did you see Jack\nSpeaker_2: he said he was in the workshop\nSpeaker_1: where did you go\nSpeaker_2: I travelled to the workshop and the garage\nSpeaker_1: did Carter leave the eggplants there\nSpeaker_2: no\n", "options": ["Carter leave the eggplants in the garage", "I leave the eggplants in the garage", "I don't know if Carter leave the eggplants in the garage", "Carter didn't leave the eggplants in the garage"], "correct answer": "Carter didn't leave the eggplants in the garage", "id": "197"}
 
199
  {"pretext": "Speaker_1: where did you go\nSpeaker_2: I went to the closet and the dining_room\nSpeaker_1: are all the peas there\nSpeaker_2: some are there\nSpeaker_1: did Alexander place the lime there\nSpeaker_2: he said he was in the closet\nSpeaker_1: did you place the lime there\nSpeaker_2: no, I didn't\nSpeaker_1: where did you see Benjamin\nSpeaker_2: he said he walked to the dining_room and the basement\nSpeaker_1: how many green peppers are in the closet\nSpeaker_2: three or four\nSpeaker_1: did Benjamin put the green peppers there\nSpeaker_2: he put them there and walked to the basement\nSpeaker_1: did you put the celeries in the basement\nSpeaker_2: no\nSpeaker_1: are all of them in the bedroom\nSpeaker_2: some celeries are in the bedroom\nSpeaker_1: are all the grapefruits there\nSpeaker_2: some grapefruits are in the bedroom\n", "options": ["two of the grapefruits are in the bedroom", "I was not in the bedroom", "not all the grapefruits are in the bedroom", "I am not sure how many grapefruits are in the bedroom"], "correct answer": "not all the grapefruits are in the bedroom", "id": "199"}
200
  {"pretext": "Speaker_1: where can I get the turnips\nSpeaker_2: they are in the basement\nSpeaker_1: did you place the turnips there\nSpeaker_2: I placed them there and went to the kitchen\nSpeaker_1: how many\nSpeaker_2: there are one or two\nSpeaker_1: where did you see Mia\nSpeaker_2: she was in the garage\nSpeaker_1: are some of the strawberries there\nSpeaker_2: yes\nSpeaker_1: did you put the strawberries there\nSpeaker_2: I put them there and travelled to the kitchen\nSpeaker_1: did you place the asparagus there\nSpeaker_2: no\n", "options": ["the asparagus are in the garage", "I didn't place the asparagus in the garage", "I place the asparagus in the garage", "I place the strawberries in the garage"], "correct answer": "I didn't place the asparagus in the garage", "id": "200"}
201
  {"pretext": "Speaker_1: are all the onions in the TV_room\nSpeaker_2: Amelia said she saw some there\nSpeaker_1: are some of the lettuces in the staircase\nSpeaker_2: five lettuces are in the staircase\nSpeaker_1: how many cherries are in the attic\nSpeaker_2: there are three or four\nSpeaker_1: how can I find Oliver\nSpeaker_2: I know he didn't went to the TV_room\nSpeaker_1: or the attic\nSpeaker_2: he travelled to the staircase\nSpeaker_1: are some of the sweet potatoes in the pantry\nSpeaker_2: two are there\n", "options": ["two of the sweet potatoes are in the pantry", "I am not sure how many sweet potatoes are in the pantry", "all of the sweet potatoes are in the staircase", "all of the sweet potatoes are in the pantry"], "correct answer": "two of the sweet potatoes are in the pantry", "id": "201"}
@@ -701,6 +697,7 @@
701
  {"pretext": "Speaker_1: did you see the persimmons\nSpeaker_2: the persimmons are in the back_yard\nSpeaker_1: did you place them there\nSpeaker_2: I placed them and the onions there\nSpeaker_1: how many persimmons are there\nSpeaker_2: there are three\nSpeaker_1: are some of the potatoes in the patio\nSpeaker_2: two potatoes are in the patio\nSpeaker_1: did you see the pineapples\nSpeaker_2: the pineapples are in the den\nSpeaker_1: did Sophia leave them there\nSpeaker_2: yes\n", "options": ["Sophia left the pineapples in the den", "I don't know if Sophia leave the pineapples in the den", "Sophia leave the pineapples in the den", "the pineapples are in the den"], "correct answer": "Sophia left the pineapples in the den", "id": "701"}
702
  {"pretext": "Speaker_1: did Hunter place the watermelons in the office\nSpeaker_2: I didn't see him\nSpeaker_1: did he leave the peas in the attic\nSpeaker_2: he left them in the office if not the attic\nSpeaker_1: did he put the pineapple in the attic\nSpeaker_2: he put it in the closet\nSpeaker_1: did he place the corns in the closet\nSpeaker_2: he placed them in the office if not the closet\n", "options": ["I am not sure if Hunter place the corns in the closet", "Hunter place the corns in the closet", "I didn't place the pineapple in the closet", "Hunter didn't placed the corns in the office"], "correct answer": "I am not sure if Hunter place the corns in the closet", "id": "702"}
703
  {"pretext": "Speaker_1: where can I find the cucumbers\nSpeaker_2: the cucumbers are in the living_room\nSpeaker_1: did Ava place them in the living_room\nSpeaker_2: she placed them there and travelled to the basement\nSpeaker_1: how many\nSpeaker_2: four or five\nSpeaker_1: did you place the strawberries there\nSpeaker_2: no\n", "options": ["I place the cucumbers in the living_room", "the strawberries are in the living_room", "I didn't place the strawberries in the living_room", "I place the strawberries in the living_room"], "correct answer": "I didn't place the strawberries in the living_room", "id": "703"}
 
704
  {"pretext": "Speaker_1: did Evelyn leave the asparagus in the dining_room\nSpeaker_2: no\nSpeaker_1: where can I get them\nSpeaker_2: Carter said there is a green treasure chest in the workshop\nSpeaker_1: where can I get the apples\nSpeaker_2: Evelyn and I put the apples in the garage\nSpeaker_1: where can I find the oranges\nSpeaker_2: there is a red cupboard in the garage\nSpeaker_1: did you place the oranges there\nSpeaker_2: I placed them there and journeyed to the den\nSpeaker_1: are some of them in the garage\nSpeaker_2: three oranges are in the garage\nSpeaker_1: did you place the plums there\nSpeaker_2: no, I didn't\nSpeaker_1: did Carter leave the plums there\nSpeaker_2: I'm not sure\n", "options": ["I don't know if Carter leave the plums in the garage", "I leave the plums in the garage", "I didn't leave the plums in the garage", "Carter leave the plums in the garage"], "correct answer": "I don't know if Carter leave the plums in the garage", "id": "705"}
705
  {"pretext": "Speaker_1: are some of the potatoes in the front_yard\nSpeaker_2: all of them are in the front_yard\nSpeaker_1: are some of the peaches in the lounge\nSpeaker_2: yes, some of them are there\nSpeaker_1: was Ella there\nSpeaker_2: she was in the lounge if not in the back_yard\nSpeaker_1: did you see the radishes\nSpeaker_2: the radishes are in the front_yard or the back_yard\nSpeaker_1: how about the eggplant\nSpeaker_2: I don't know\nSpeaker_1: did you see the cabbages\nSpeaker_2: Noah and I put the cabbages in the den\nSpeaker_1: what about the spinaches\nSpeaker_2: Ella put the spinaches in the front_yard and went to the front_yard\nSpeaker_1: how many are in the front_yard\nSpeaker_2: there are at least one there\nSpeaker_1: where can I find the beans\nSpeaker_2: I left the beans in the den and went to the front_yard\nSpeaker_1: how many are in the den\nSpeaker_2: there are one or two\n", "options": ["the beans are not in the den", "I am not sure how many beans are in the den", "one beans are in the den", "two of the beans are in the den"], "correct answer": "I am not sure how many beans are in the den", "id": "706"}
706
  {"pretext": "Speaker_1: did Noah go to the staircase \nSpeaker_2: he walked to the hallway\nSpeaker_1: where can I find the potatoes\nSpeaker_2: the potatoes are in the hallway\nSpeaker_1: did Noah put them there\nSpeaker_2: yes, he did\nSpeaker_1: did he put the broccolis in the den\nSpeaker_2: he put them in the den or the staircase\nSpeaker_1: where can I find the turnips\nSpeaker_2: Jackson left the turnips in the den and travelled to the staircase\nSpeaker_1: how many are in the den\nSpeaker_2: there are at least one there\n", "options": ["I am not sure how many turnips are in the den", "the turnips are not in the den", "two turnips are in the den", "two of the turnips are in the den"], "correct answer": "I am not sure how many turnips are in the den", "id": "707"}
@@ -731,6 +728,7 @@
731
  {"pretext": "Speaker_1: did Benjamin place the beans in the cellar\nSpeaker_2: I didn't see him\nSpeaker_1: did you place the eggplant there\nSpeaker_2: I placed it there and travelled to the crawlspace\nSpeaker_1: did Jacob go to the closet \nSpeaker_2: he walked to the cellar\nSpeaker_1: are all the plums in the crawlspace\nSpeaker_2: I saw some plums in the crawlspace\nSpeaker_1: how many beans are in the playroom\nSpeaker_2: one or two\n", "options": ["two of the beans are in the playroom", "I am not sure how many beans are in the playroom", "one beans are in the playroom", "two beans are in the playroom"], "correct answer": "I am not sure how many beans are in the playroom", "id": "732"}
732
  {"pretext": "Speaker_1: did you see the green peppers\nSpeaker_2: there is a green box in the patio\nSpeaker_1: did you put them in the patio\nSpeaker_2: no\nSpeaker_1: are all the green peppers there\nSpeaker_2: some are there\nSpeaker_1: how can I find Ava\nSpeaker_2: she was in the patio or the hallway\nSpeaker_1: did you see the peaches\nSpeaker_2: I left them in the study and travelled to the bedroom\nSpeaker_1: are some of them in the study\nSpeaker_2: five peaches are in the study\nSpeaker_1: are some of the asparagus in the hallway\nSpeaker_2: five asparagus are in the hallway\nSpeaker_1: did Carter put them in the patio\nSpeaker_2: he put the green peppers there\nSpeaker_1: where was he\nSpeaker_2: he journeyed to the patio\nSpeaker_1: are some of the tomatoes there\nSpeaker_2: Carter said he left three there\n", "options": ["three of the tomatoes are in the patio", "all of the tomatoes are in the patio", "Carter was not in the patio", "I am not sure how many tomatoes are in the patio"], "correct answer": "three of the tomatoes are in the patio", "id": "733"}
733
  {"pretext": "Speaker_1: where did Lily go\nSpeaker_2: she said she travelled to the bedroom and the front_yard\nSpeaker_1: did she put the peaches in the front_yard\nSpeaker_2: she said she put them in the cellar\nSpeaker_1: where did you see Mia\nSpeaker_2: she said she went to the front_yard and the bedroom\nSpeaker_1: did she place the grapes in the front_yard\nSpeaker_2: she said she was not in the front_yard\nSpeaker_1: did Lily place the grapes there\nSpeaker_2: no, she didn't\nSpeaker_1: did you place the grapes there\nSpeaker_2: I was in the porch\nSpeaker_1: are some of them in the cellar\nSpeaker_2: all of them are in the cellar\nSpeaker_1: are all the pumpkins in the front_yard\nSpeaker_2: Lily said she saw some in the front_yard\n", "options": ["all of the pumpkins are in the cellar", "the pumpkins are not in the front_yard", "not all the pumpkins are in the front_yard", "I am not sure how many pumpkins are in the front_yard"], "correct answer": "not all the pumpkins are in the front_yard", "id": "734"}
 
734
  {"pretext": "Speaker_1: did you see the radishes\nSpeaker_2: they are in the porch or the front_yard\nSpeaker_1: where can I find the lettuces\nSpeaker_2: the lettuces are in the pantry\nSpeaker_1: did Alexander place them in the pantry\nSpeaker_2: no, he didn't\nSpeaker_1: are some of them there\nSpeaker_2: all of the lettuces are in the pantry\nSpeaker_1: are all the bananas in the front_yard\nSpeaker_2: some are there\n", "options": ["all of the bananas are in the pantry", "not all the bananas are in the front_yard", "all of the lettuces are in the front_yard", "five of the bananas are in the front_yard"], "correct answer": "not all the bananas are in the front_yard", "id": "736"}
735
  {"pretext": "Speaker_1: did Ava put the beans in the hallway\nSpeaker_2: she said she was not in the hallway\nSpeaker_1: are some of them in the porch\nSpeaker_2: all of them are in the porch\nSpeaker_1: where can I get the lettuces\nSpeaker_2: Avery said there is a green basket in the attic\nSpeaker_1: how many lettuces are there\nSpeaker_2: there are at least two there\nSpeaker_1: did you put them there\nSpeaker_2: no\n", "options": ["I put the lettuces in the attic", "I didn't put the lettuces in the attic", "the lettuces are in the porch", "the lettuces are in the attic"], "correct answer": "I didn't put the lettuces in the attic", "id": "737"}
736
  {"pretext": "Speaker_1: was Emma in the TV_room\nSpeaker_2: Emma was not there\nSpeaker_1: what about office\nSpeaker_2: Emma was not in the office\nSpeaker_1: where was she\nSpeaker_2: she said she was in the sunroom\nSpeaker_1: did she leave the eggplants in the TV_room\nSpeaker_2: she left them in the TV_room or the sunroom\nSpeaker_1: how many apples are there\nSpeaker_2: four or five\nSpeaker_1: did you leave them there\nSpeaker_2: no, I didn't\nSpeaker_1: did Emma put them in the office\nSpeaker_2: no, she didn't\nSpeaker_1: where can I find the pears\nSpeaker_2: the pears are in the TV_room or the sunroom\nSpeaker_1: are some of the potatoes in the TV_room\nSpeaker_2: they are all there\n", "options": ["some of the potatoes are in the TV_room", "all the potatoes are in the TV_room", "I am not sure if some of the potatoes are in the TV_room", "all of the potatoes are in the TV_room"], "correct answer": "all the potatoes are in the TV_room", "id": "738"}
@@ -1231,6 +1229,7 @@
1231
  {"pretext": "Speaker_1: are some of the cabbages in the bedroom\nSpeaker_2: two cabbages are in the bedroom\nSpeaker_1: did you go to the crawlspace\nSpeaker_2: I returned to the bathroom\nSpeaker_1: are some of the pineapples in the crawlspace\nSpeaker_2: three pineapples are in the crawlspace\nSpeaker_1: where was Logan\nSpeaker_2: he travelled to the patio\nSpeaker_1: was Benjamin there\nSpeaker_2: he journeyed to the bedroom\n", "options": ["I don't know", "Benjamin was in the patio", "Benjamin was not in the patio", "I was not in the patio"], "correct answer": "Benjamin was not in the patio", "id": "1233"}
1232
  {"pretext": "Speaker_1: did you leave the melons in the crawlspace\nSpeaker_2: I left the melons and the onion there\nSpeaker_1: was Jack in the back_yard\nSpeaker_2: Jack was there\nSpeaker_1: are some of the grapes in the sunroom\nSpeaker_2: Sophia said she saw all the grapes were in the sunroom\nSpeaker_1: are some of the turnips in the back_yard\nSpeaker_2: two turnips are in the back_yard\n", "options": ["all of the turnips are in the back_yard", "two of the turnips are in the back_yard", "I am not sure how many turnips are in the back_yard", "I am not sure if some of the turnips are in the back_yard"], "correct answer": "two of the turnips are in the back_yard", "id": "1234"}
1233
  {"pretext": "Speaker_1: are some of the peas in the living_room\nSpeaker_2: all of the peas are in the living_room\nSpeaker_1: did Mia leave the peas there\nSpeaker_2: she left them there and travelled to the garden\n", "options": ["I didn't leave the peas in the living_room", "I left the peas in the living_room and then travelled to the garden", "I left the peas in the garden and then travelled to the living_room", "Mia left the peas in the living_room and then travelled to the garden"], "correct answer": "Mia left the peas in the living_room and then travelled to the garden", "id": "1235"}
 
1234
  {"pretext": "Speaker_1: did Jackson go to the study \nSpeaker_2: he journeyed to the patio\nSpeaker_1: where can I get the plums\nSpeaker_2: Mia said there is a red envelope in the study\nSpeaker_1: did you leave them in the study\nSpeaker_2: I left them there and went to the front_yard\nSpeaker_1: where did you see Jack\nSpeaker_2: he was in the hallway\nSpeaker_1: did you see the radishes\nSpeaker_2: they are in the study or the front_yard\nSpeaker_1: how many grapes are in the patio\nSpeaker_2: there are four or five\nSpeaker_1: how many eggplants are there\nSpeaker_2: one or two\nSpeaker_1: how many turnips are in the hallway\nSpeaker_2: one or two\nSpeaker_1: where can I get the carrots\nSpeaker_2: the carrots are in the front_yard\nSpeaker_1: did Jack leave them there\nSpeaker_2: no, he didn't\n", "options": ["Jack didn't leave the carrots in the front_yard", "Jack leave the carrots in the front_yard", "I didn't leave the carrots in the front_yard", "the carrots are in the front_yard"], "correct answer": "Jack didn't leave the carrots in the front_yard", "id": "1237"}
1235
  {"pretext": "Speaker_1: did Emily go to the crawlspace \nSpeaker_2: she was in the bathroom\nSpeaker_1: are all the corns in the crawlspace\nSpeaker_2: some corns are in the crawlspace\nSpeaker_1: how many radishes are in the bathroom\nSpeaker_2: four\nSpeaker_1: where was Hannah\nSpeaker_2: she said she travelled to the crawlspace\nSpeaker_1: where can I find the celeries\nSpeaker_2: the celeries are in the bathroom or the lounge\nSpeaker_1: what about the carrots\nSpeaker_2: they are in the attic or the lounge\nSpeaker_1: did you leave them in the attic\nSpeaker_2: I left them and the lettuces there\nSpeaker_1: where are the pumpkins\nSpeaker_2: they are in the lounge\n", "options": ["the pumpkins are in the lounge", "the pumpkins are in the attic", "the pumpkins are not in the lounge", "I am not sure where the pumpkins are"], "correct answer": "the pumpkins are in the lounge", "id": "1238"}
1236
  {"pretext": "Speaker_1: did you see the grapefruits\nSpeaker_2: they are in the den or the office\nSpeaker_1: are some of the pineapples in the front_yard\nSpeaker_2: four pineapples are in the front_yard\n", "options": ["four of the pineapples are in the front_yard", "the pineapples are not in the front_yard", "all of the grapefruits are in the front_yard", "I am not sure how many pineapples are in the front_yard"], "correct answer": "four of the pineapples are in the front_yard", "id": "1239"}
@@ -1729,6 +1728,7 @@
1729
  {"pretext": "Speaker_1: how many grapefruits are in the hallway\nSpeaker_2: three\nSpeaker_1: did Mason place them in the garden\nSpeaker_2: no, he didn't\nSpeaker_1: where can I find the corns\nSpeaker_2: I left the corns in the garden and walked to the hallway\nSpeaker_1: did Mason leave the lettuces in the kitchen\nSpeaker_2: yes, he did\nSpeaker_1: did Nathan place the strawberries in the garden\nSpeaker_2: he placed them in the study if not the garden\nSpeaker_1: are all the cabbages in the kitchen\nSpeaker_2: some are in the kitchen\nSpeaker_1: where are the persimmons\nSpeaker_2: the persimmons are in the hallway or the kitchen\nSpeaker_1: did you see the tomatoes\nSpeaker_2: they are in the study\nSpeaker_1: are all the tomatoes there\nSpeaker_2: some are there\n", "options": ["I am not sure if all of the tomatoes are in the study", "the tomatoes are not in the study", "I am not sure how many tomatoes are in the study", "not all the tomatoes are in the study"], "correct answer": "not all the tomatoes are in the study", "id": "1732"}
1730
  {"pretext": "Speaker_1: where are the melons\nSpeaker_2: Lily said there is a red bucket in the cellar\nSpeaker_1: how about the peas\nSpeaker_2: Oliver left the peas in the lounge and journeyed to the lounge\nSpeaker_1: how about the eggplants\nSpeaker_2: Jackson and I left the eggplants in the office\nSpeaker_1: how many are in the office\nSpeaker_2: there are at least two there\nSpeaker_1: did you place the asparagus in the cellar\nSpeaker_2: I placed them there and walked to the lounge\nSpeaker_1: did Oliver place the persimmons there\nSpeaker_2: he said he was not there\nSpeaker_1: did you leave them there\nSpeaker_2: no\n", "options": ["the persimmons are in the cellar", "I leave the persimmons in the cellar", "the persimmons are in the lounge", "I didn't leave the persimmons in the cellar"], "correct answer": "I didn't leave the persimmons in the cellar", "id": "1733"}
1731
  {"pretext": "Speaker_1: did Charlotte put the turnips in the back_yard\nSpeaker_2: no\nSpeaker_1: how many turnips are there\nSpeaker_2: there are at least one there\nSpeaker_1: where can I get the radishes\nSpeaker_2: Charlotte said there is a blue cupboard in the staircase\nSpeaker_1: are some of them there\nSpeaker_2: Charlotte said she left three of them there\nSpeaker_1: how many melons are in the bathroom\nSpeaker_2: I'm not sure\nSpeaker_1: did Ethan place the peaches there\nSpeaker_2: he placed them in the bathroom or the staircase\nSpeaker_1: are all the pineapples there\nSpeaker_2: yes, they are all there\n", "options": ["all of the pineapples are in the bathroom", "I am not sure if all of the pineapples are in the bathroom", "four of the pineapples are in the bathroom", "all of the peaches are in the bathroom"], "correct answer": "all of the pineapples are in the bathroom", "id": "1734"}
 
1732
  {"pretext": "Speaker_1: where are the pineapples\nSpeaker_2: Sophia left the pineapples in the dining_room and walked to the workshop\nSpeaker_1: did she place the lemon in the den\nSpeaker_2: yes, she did\nSpeaker_1: where did you go\nSpeaker_2: I travelled to the den and the workshop\nSpeaker_1: are all the persimmons there\nSpeaker_2: yes, they are all there\nSpeaker_1: are some of the cabbages in the living_room\nSpeaker_2: three are in the living_room\n", "options": ["three of the cabbages are in the living_room", "all of the cabbages are in the living_room", "the cabbages are not in the living_room", "all of the cabbages are in the workshop"], "correct answer": "three of the cabbages are in the living_room", "id": "1736"}
1733
  {"pretext": "Speaker_1: did Oliver put the persimmons in the bathroom\nSpeaker_2: no\nSpeaker_1: did you go there\nSpeaker_2: I was not there\nSpeaker_1: what about the hall\nSpeaker_2: yes, I was in the hall\nSpeaker_1: are some of the beans in the basement\nSpeaker_2: Jackson said he left all of them there\nSpeaker_1: how many persimmons are in the bathroom\nSpeaker_2: two or three\nSpeaker_1: did you see the turnips\nSpeaker_2: the turnips are in the hall or the basement\nSpeaker_1: where can I get the melons\nSpeaker_2: the melons are in the workshop\nSpeaker_1: did you put the melons there\nSpeaker_2: I put them there and travelled to the hall\nSpeaker_1: did you leave the turnips there\nSpeaker_2: no\n", "options": ["I leave the melons in the workshop", "I leave the turnips in the workshop", "I didn't leave the melons in the workshop", "I didn't leave the turnips in the workshop"], "correct answer": "I didn't leave the turnips in the workshop", "id": "1737"}
1734
  {"pretext": "Speaker_1: did Mila leave the persimmons in the laundry\nSpeaker_2: she left the orange there\nSpeaker_1: where are the plums\nSpeaker_2: I put the plums in the closet and walked to the laundry\nSpeaker_1: did Mila place the strawberries in the crawlspace\nSpeaker_2: she placed them in the crawlspace or the playroom\nSpeaker_1: did Amelia go there\nSpeaker_2: it is likely\nSpeaker_1: how many plums are in the closet\nSpeaker_2: four\n", "options": ["the plums are not in the closet", "four of the plums are in the closet", "four plums are in the closet", "I am not sure how many plums are in the closet"], "correct answer": "four plums are in the closet", "id": "1738"}
 
 
 
 
 
 
1
  {"pretext": "Speaker_1: did Lucas place the strawberries in the office\nSpeaker_2: I didn't see him\nSpeaker_1: did he leave the peas in the office\nSpeaker_2: he left them in the TV_room if not the office\nSpeaker_1: where were you\nSpeaker_2: I travelled to the staircase and the TV_room\nSpeaker_1: where can I find the orange\nSpeaker_2: there is a green envelope in the staircase\nSpeaker_1: did Lucas leave it in the staircase\nSpeaker_2: yes\nSpeaker_1: are some of the bananas in the office\nSpeaker_2: Mason said he saw they were all in the office\nSpeaker_1: did he place the bananas in the office\nSpeaker_2: yes, he did\n", "options": ["the bananas are in the office", "I didn't place the bananas in the office", "Mason place the bananas in the office", "Mason placed the bananas in the office"], "correct answer": "Mason placed the bananas in the office", "id": "5"}
2
  {"pretext": "Speaker_1: are some of the eggplants in the living_room\nSpeaker_2: all of them are in the living_room\nSpeaker_1: where are the spinaches\nSpeaker_2: the spinaches are in the living_room\nSpeaker_1: did Liam leave them there\nSpeaker_2: no\nSpeaker_1: are all the spinaches there\nSpeaker_2: yes\nSpeaker_1: are some of the cherries in the kitchen\nSpeaker_2: all of the cherries are in the kitchen\nSpeaker_1: where was Aiden\nSpeaker_2: I know he didn't went to the kitchen\nSpeaker_1: where was he\nSpeaker_2: he said he was in the workshop\nSpeaker_1: did you put the eggplants in the pantry\nSpeaker_2: no, I didn't\n", "options": ["I didn't put the eggplants in the pantry", "I put the eggplants in the pantry", "the eggplants are in the pantry", "the eggplants are in the workshop"], "correct answer": "I didn't put the eggplants in the pantry", "id": "6"}
3
  {"pretext": "Speaker_1: where can I find the lemons\nSpeaker_2: Ava said there is a green crate in the workshop\nSpeaker_1: are some of them there\nSpeaker_2: Ava said she left four of the lemons there\n", "options": ["all of the lemons are in the workshop", "four of the lemons are in the workshop", "I am not sure how many lemons are in the workshop", "the lemons are not in the workshop"], "correct answer": "four of the lemons are in the workshop", "id": "7"}
 
191
  {"pretext": "Speaker_1: where can I get the grapes\nSpeaker_2: they are in the hallway\nSpeaker_1: did Lily put them in the hallway\nSpeaker_2: she put them there and walked to the study\n", "options": ["I didn't put the grapes in the hallway", "I don't know if Lily put the grapes in the hallway", "the grapes are in the hallway", "Lily put the grapes in the hallway and then walked to the study"], "correct answer": "Lily put the grapes in the hallway and then walked to the study", "id": "195"}
192
  {"pretext": "Speaker_1: did Carter place the plums in the bedroom\nSpeaker_2: he placed the pineapples there\nSpeaker_1: where is the lettuce\nSpeaker_2: the lettuce is in the back_yard\nSpeaker_1: did you leave it there\nSpeaker_2: yes\nSpeaker_1: where are the grapefruits\nSpeaker_2: they are in the attic\nSpeaker_1: did you leave them there\nSpeaker_2: no, I didn't\nSpeaker_1: where can I get the peaches\nSpeaker_2: there is a blue bathtub in the bedroom\nSpeaker_1: are some of them there\nSpeaker_2: Owen said he left five of them there\nSpeaker_1: where was Carter\nSpeaker_2: he was in the sunroom\nSpeaker_1: did he place the celeries in the attic\nSpeaker_2: I'm not sure\nSpeaker_1: are some of the pineapples in the bedroom\nSpeaker_2: three pineapples are in the bedroom\n", "options": ["I am not sure how many pineapples are in the bedroom", "three of the pineapples are in the bedroom", "I am not sure if some of the pineapples are in the bedroom", "all of the pineapples are in the attic"], "correct answer": "three of the pineapples are in the bedroom", "id": "196"}
193
  {"pretext": "Speaker_1: are all the eggplants in the garage\nSpeaker_2: some eggplants are in the garage\nSpeaker_1: are all the pumpkins in the dining_room\nSpeaker_2: I'm not sure\nSpeaker_1: where did you see Jack\nSpeaker_2: he said he was in the workshop\nSpeaker_1: where did you go\nSpeaker_2: I travelled to the workshop and the garage\nSpeaker_1: did Carter leave the eggplants there\nSpeaker_2: no\n", "options": ["Carter leave the eggplants in the garage", "I leave the eggplants in the garage", "I don't know if Carter leave the eggplants in the garage", "Carter didn't leave the eggplants in the garage"], "correct answer": "Carter didn't leave the eggplants in the garage", "id": "197"}
194
+ {"pretext": "Speaker_1: are some of the strawberries in the bedroom\nSpeaker_2: four are there\nSpeaker_1: how many eggplants are in the bathroom\nSpeaker_2: two\nSpeaker_1: did you leave them in the bathroom\nSpeaker_2: I left them there and went to the lounge\nSpeaker_1: where is the cabbage\nSpeaker_2: it is in the bathroom or the bedroom\nSpeaker_1: did Jack place it in the bedroom\nSpeaker_2: no, he didn't\nSpeaker_1: did you place it in the bedroom\nSpeaker_2: no, I didn't\nSpeaker_1: are some of the cherries in the lounge\nSpeaker_2: I put two of them there\nSpeaker_1: are some of the grapefruits in the sunroom\nSpeaker_2: Jack said he put three of them there\nSpeaker_1: where can I find the plums\nSpeaker_2: the plums are in the sunroom\n", "options": ["the plums are not in the sunroom", "I am not sure where the plums are", "the plums are in the sunroom", "I don't know where the plums are"], "correct answer": "the plums are in the sunroom", "id": "198"}
195
  {"pretext": "Speaker_1: where did you go\nSpeaker_2: I went to the closet and the dining_room\nSpeaker_1: are all the peas there\nSpeaker_2: some are there\nSpeaker_1: did Alexander place the lime there\nSpeaker_2: he said he was in the closet\nSpeaker_1: did you place the lime there\nSpeaker_2: no, I didn't\nSpeaker_1: where did you see Benjamin\nSpeaker_2: he said he walked to the dining_room and the basement\nSpeaker_1: how many green peppers are in the closet\nSpeaker_2: three or four\nSpeaker_1: did Benjamin put the green peppers there\nSpeaker_2: he put them there and walked to the basement\nSpeaker_1: did you put the celeries in the basement\nSpeaker_2: no\nSpeaker_1: are all of them in the bedroom\nSpeaker_2: some celeries are in the bedroom\nSpeaker_1: are all the grapefruits there\nSpeaker_2: some grapefruits are in the bedroom\n", "options": ["two of the grapefruits are in the bedroom", "I was not in the bedroom", "not all the grapefruits are in the bedroom", "I am not sure how many grapefruits are in the bedroom"], "correct answer": "not all the grapefruits are in the bedroom", "id": "199"}
196
  {"pretext": "Speaker_1: where can I get the turnips\nSpeaker_2: they are in the basement\nSpeaker_1: did you place the turnips there\nSpeaker_2: I placed them there and went to the kitchen\nSpeaker_1: how many\nSpeaker_2: there are one or two\nSpeaker_1: where did you see Mia\nSpeaker_2: she was in the garage\nSpeaker_1: are some of the strawberries there\nSpeaker_2: yes\nSpeaker_1: did you put the strawberries there\nSpeaker_2: I put them there and travelled to the kitchen\nSpeaker_1: did you place the asparagus there\nSpeaker_2: no\n", "options": ["the asparagus are in the garage", "I didn't place the asparagus in the garage", "I place the asparagus in the garage", "I place the strawberries in the garage"], "correct answer": "I didn't place the asparagus in the garage", "id": "200"}
197
  {"pretext": "Speaker_1: are all the onions in the TV_room\nSpeaker_2: Amelia said she saw some there\nSpeaker_1: are some of the lettuces in the staircase\nSpeaker_2: five lettuces are in the staircase\nSpeaker_1: how many cherries are in the attic\nSpeaker_2: there are three or four\nSpeaker_1: how can I find Oliver\nSpeaker_2: I know he didn't went to the TV_room\nSpeaker_1: or the attic\nSpeaker_2: he travelled to the staircase\nSpeaker_1: are some of the sweet potatoes in the pantry\nSpeaker_2: two are there\n", "options": ["two of the sweet potatoes are in the pantry", "I am not sure how many sweet potatoes are in the pantry", "all of the sweet potatoes are in the staircase", "all of the sweet potatoes are in the pantry"], "correct answer": "two of the sweet potatoes are in the pantry", "id": "201"}
 
697
  {"pretext": "Speaker_1: did you see the persimmons\nSpeaker_2: the persimmons are in the back_yard\nSpeaker_1: did you place them there\nSpeaker_2: I placed them and the onions there\nSpeaker_1: how many persimmons are there\nSpeaker_2: there are three\nSpeaker_1: are some of the potatoes in the patio\nSpeaker_2: two potatoes are in the patio\nSpeaker_1: did you see the pineapples\nSpeaker_2: the pineapples are in the den\nSpeaker_1: did Sophia leave them there\nSpeaker_2: yes\n", "options": ["Sophia left the pineapples in the den", "I don't know if Sophia leave the pineapples in the den", "Sophia leave the pineapples in the den", "the pineapples are in the den"], "correct answer": "Sophia left the pineapples in the den", "id": "701"}
698
  {"pretext": "Speaker_1: did Hunter place the watermelons in the office\nSpeaker_2: I didn't see him\nSpeaker_1: did he leave the peas in the attic\nSpeaker_2: he left them in the office if not the attic\nSpeaker_1: did he put the pineapple in the attic\nSpeaker_2: he put it in the closet\nSpeaker_1: did he place the corns in the closet\nSpeaker_2: he placed them in the office if not the closet\n", "options": ["I am not sure if Hunter place the corns in the closet", "Hunter place the corns in the closet", "I didn't place the pineapple in the closet", "Hunter didn't placed the corns in the office"], "correct answer": "I am not sure if Hunter place the corns in the closet", "id": "702"}
699
  {"pretext": "Speaker_1: where can I find the cucumbers\nSpeaker_2: the cucumbers are in the living_room\nSpeaker_1: did Ava place them in the living_room\nSpeaker_2: she placed them there and travelled to the basement\nSpeaker_1: how many\nSpeaker_2: four or five\nSpeaker_1: did you place the strawberries there\nSpeaker_2: no\n", "options": ["I place the cucumbers in the living_room", "the strawberries are in the living_room", "I didn't place the strawberries in the living_room", "I place the strawberries in the living_room"], "correct answer": "I didn't place the strawberries in the living_room", "id": "703"}
700
+ {"pretext": "Speaker_1: where is the celery\nSpeaker_2: Amelia said there is a red pantry in the workshop\nSpeaker_1: what about the corn\nSpeaker_2: Isabella said she put the corn in the crawlspace and travelled to the kitchen\nSpeaker_1: how about the bananas\nSpeaker_2: there is a blue treasure chest in the workshop\nSpeaker_1: did Aria place the bananas there\nSpeaker_2: she placed them there and walked to the crawlspace\nSpeaker_1: are some of them in the workshop\nSpeaker_2: two bananas are in the workshop\nSpeaker_1: where can I get the grapes\nSpeaker_2: the grapes are in the kitchen\nSpeaker_1: are some of them there\nSpeaker_2: I left all of them there\nSpeaker_1: are all the asparagus in the TV_room\nSpeaker_2: some are in the TV_room\nSpeaker_1: are some of the potatoes in the crawlspace\nSpeaker_2: Aria said she put four there\nSpeaker_1: did she leave the asparagus in the crawlspace\nSpeaker_2: no, she didn't\n", "options": ["I leave the potatoes in the crawlspace", "Aria leave the asparagus in the crawlspace", "Aria didn't leave the asparagus in the crawlspace", "I don't know if Aria leave the asparagus in the crawlspace"], "correct answer": "Aria didn't leave the asparagus in the crawlspace", "id": "704"}
701
  {"pretext": "Speaker_1: did Evelyn leave the asparagus in the dining_room\nSpeaker_2: no\nSpeaker_1: where can I get them\nSpeaker_2: Carter said there is a green treasure chest in the workshop\nSpeaker_1: where can I get the apples\nSpeaker_2: Evelyn and I put the apples in the garage\nSpeaker_1: where can I find the oranges\nSpeaker_2: there is a red cupboard in the garage\nSpeaker_1: did you place the oranges there\nSpeaker_2: I placed them there and journeyed to the den\nSpeaker_1: are some of them in the garage\nSpeaker_2: three oranges are in the garage\nSpeaker_1: did you place the plums there\nSpeaker_2: no, I didn't\nSpeaker_1: did Carter leave the plums there\nSpeaker_2: I'm not sure\n", "options": ["I don't know if Carter leave the plums in the garage", "I leave the plums in the garage", "I didn't leave the plums in the garage", "Carter leave the plums in the garage"], "correct answer": "I don't know if Carter leave the plums in the garage", "id": "705"}
702
  {"pretext": "Speaker_1: are some of the potatoes in the front_yard\nSpeaker_2: all of them are in the front_yard\nSpeaker_1: are some of the peaches in the lounge\nSpeaker_2: yes, some of them are there\nSpeaker_1: was Ella there\nSpeaker_2: she was in the lounge if not in the back_yard\nSpeaker_1: did you see the radishes\nSpeaker_2: the radishes are in the front_yard or the back_yard\nSpeaker_1: how about the eggplant\nSpeaker_2: I don't know\nSpeaker_1: did you see the cabbages\nSpeaker_2: Noah and I put the cabbages in the den\nSpeaker_1: what about the spinaches\nSpeaker_2: Ella put the spinaches in the front_yard and went to the front_yard\nSpeaker_1: how many are in the front_yard\nSpeaker_2: there are at least one there\nSpeaker_1: where can I find the beans\nSpeaker_2: I left the beans in the den and went to the front_yard\nSpeaker_1: how many are in the den\nSpeaker_2: there are one or two\n", "options": ["the beans are not in the den", "I am not sure how many beans are in the den", "one beans are in the den", "two of the beans are in the den"], "correct answer": "I am not sure how many beans are in the den", "id": "706"}
703
  {"pretext": "Speaker_1: did Noah go to the staircase \nSpeaker_2: he walked to the hallway\nSpeaker_1: where can I find the potatoes\nSpeaker_2: the potatoes are in the hallway\nSpeaker_1: did Noah put them there\nSpeaker_2: yes, he did\nSpeaker_1: did he put the broccolis in the den\nSpeaker_2: he put them in the den or the staircase\nSpeaker_1: where can I find the turnips\nSpeaker_2: Jackson left the turnips in the den and travelled to the staircase\nSpeaker_1: how many are in the den\nSpeaker_2: there are at least one there\n", "options": ["I am not sure how many turnips are in the den", "the turnips are not in the den", "two turnips are in the den", "two of the turnips are in the den"], "correct answer": "I am not sure how many turnips are in the den", "id": "707"}
 
728
  {"pretext": "Speaker_1: did Benjamin place the beans in the cellar\nSpeaker_2: I didn't see him\nSpeaker_1: did you place the eggplant there\nSpeaker_2: I placed it there and travelled to the crawlspace\nSpeaker_1: did Jacob go to the closet \nSpeaker_2: he walked to the cellar\nSpeaker_1: are all the plums in the crawlspace\nSpeaker_2: I saw some plums in the crawlspace\nSpeaker_1: how many beans are in the playroom\nSpeaker_2: one or two\n", "options": ["two of the beans are in the playroom", "I am not sure how many beans are in the playroom", "one beans are in the playroom", "two beans are in the playroom"], "correct answer": "I am not sure how many beans are in the playroom", "id": "732"}
729
  {"pretext": "Speaker_1: did you see the green peppers\nSpeaker_2: there is a green box in the patio\nSpeaker_1: did you put them in the patio\nSpeaker_2: no\nSpeaker_1: are all the green peppers there\nSpeaker_2: some are there\nSpeaker_1: how can I find Ava\nSpeaker_2: she was in the patio or the hallway\nSpeaker_1: did you see the peaches\nSpeaker_2: I left them in the study and travelled to the bedroom\nSpeaker_1: are some of them in the study\nSpeaker_2: five peaches are in the study\nSpeaker_1: are some of the asparagus in the hallway\nSpeaker_2: five asparagus are in the hallway\nSpeaker_1: did Carter put them in the patio\nSpeaker_2: he put the green peppers there\nSpeaker_1: where was he\nSpeaker_2: he journeyed to the patio\nSpeaker_1: are some of the tomatoes there\nSpeaker_2: Carter said he left three there\n", "options": ["three of the tomatoes are in the patio", "all of the tomatoes are in the patio", "Carter was not in the patio", "I am not sure how many tomatoes are in the patio"], "correct answer": "three of the tomatoes are in the patio", "id": "733"}
730
  {"pretext": "Speaker_1: where did Lily go\nSpeaker_2: she said she travelled to the bedroom and the front_yard\nSpeaker_1: did she put the peaches in the front_yard\nSpeaker_2: she said she put them in the cellar\nSpeaker_1: where did you see Mia\nSpeaker_2: she said she went to the front_yard and the bedroom\nSpeaker_1: did she place the grapes in the front_yard\nSpeaker_2: she said she was not in the front_yard\nSpeaker_1: did Lily place the grapes there\nSpeaker_2: no, she didn't\nSpeaker_1: did you place the grapes there\nSpeaker_2: I was in the porch\nSpeaker_1: are some of them in the cellar\nSpeaker_2: all of them are in the cellar\nSpeaker_1: are all the pumpkins in the front_yard\nSpeaker_2: Lily said she saw some in the front_yard\n", "options": ["all of the pumpkins are in the cellar", "the pumpkins are not in the front_yard", "not all the pumpkins are in the front_yard", "I am not sure how many pumpkins are in the front_yard"], "correct answer": "not all the pumpkins are in the front_yard", "id": "734"}
731
+ {"pretext": "Speaker_1: did you put the melons in the den\nSpeaker_2: I put them there and journeyed to the attic\nSpeaker_1: did Mila put the potatoes there\nSpeaker_2: she put them in the laundry if not the den\nSpeaker_1: was she in the den\nSpeaker_2: she was in the den if not in the den\nSpeaker_1: where was Noah\nSpeaker_2: he said he was in the kitchen\nSpeaker_1: did you see the broccolis\nSpeaker_2: I have no idea\nSpeaker_1: did you put them in the kitchen\nSpeaker_2: I put the persimmons there\nSpeaker_1: where are the plums\nSpeaker_2: the plums are in the laundry\nSpeaker_1: how many persimmons are in the kitchen\nSpeaker_2: three or four\n", "options": ["all of the persimmons are in the laundry", "I am not sure how many persimmons are in the kitchen", "all of the plums are in the kitchen", "all of the persimmons are in the kitchen"], "correct answer": "I am not sure how many persimmons are in the kitchen", "id": "735"}
732
  {"pretext": "Speaker_1: did you see the radishes\nSpeaker_2: they are in the porch or the front_yard\nSpeaker_1: where can I find the lettuces\nSpeaker_2: the lettuces are in the pantry\nSpeaker_1: did Alexander place them in the pantry\nSpeaker_2: no, he didn't\nSpeaker_1: are some of them there\nSpeaker_2: all of the lettuces are in the pantry\nSpeaker_1: are all the bananas in the front_yard\nSpeaker_2: some are there\n", "options": ["all of the bananas are in the pantry", "not all the bananas are in the front_yard", "all of the lettuces are in the front_yard", "five of the bananas are in the front_yard"], "correct answer": "not all the bananas are in the front_yard", "id": "736"}
733
  {"pretext": "Speaker_1: did Ava put the beans in the hallway\nSpeaker_2: she said she was not in the hallway\nSpeaker_1: are some of them in the porch\nSpeaker_2: all of them are in the porch\nSpeaker_1: where can I get the lettuces\nSpeaker_2: Avery said there is a green basket in the attic\nSpeaker_1: how many lettuces are there\nSpeaker_2: there are at least two there\nSpeaker_1: did you put them there\nSpeaker_2: no\n", "options": ["I put the lettuces in the attic", "I didn't put the lettuces in the attic", "the lettuces are in the porch", "the lettuces are in the attic"], "correct answer": "I didn't put the lettuces in the attic", "id": "737"}
734
  {"pretext": "Speaker_1: was Emma in the TV_room\nSpeaker_2: Emma was not there\nSpeaker_1: what about office\nSpeaker_2: Emma was not in the office\nSpeaker_1: where was she\nSpeaker_2: she said she was in the sunroom\nSpeaker_1: did she leave the eggplants in the TV_room\nSpeaker_2: she left them in the TV_room or the sunroom\nSpeaker_1: how many apples are there\nSpeaker_2: four or five\nSpeaker_1: did you leave them there\nSpeaker_2: no, I didn't\nSpeaker_1: did Emma put them in the office\nSpeaker_2: no, she didn't\nSpeaker_1: where can I find the pears\nSpeaker_2: the pears are in the TV_room or the sunroom\nSpeaker_1: are some of the potatoes in the TV_room\nSpeaker_2: they are all there\n", "options": ["some of the potatoes are in the TV_room", "all the potatoes are in the TV_room", "I am not sure if some of the potatoes are in the TV_room", "all of the potatoes are in the TV_room"], "correct answer": "all the potatoes are in the TV_room", "id": "738"}
 
1229
  {"pretext": "Speaker_1: are some of the cabbages in the bedroom\nSpeaker_2: two cabbages are in the bedroom\nSpeaker_1: did you go to the crawlspace\nSpeaker_2: I returned to the bathroom\nSpeaker_1: are some of the pineapples in the crawlspace\nSpeaker_2: three pineapples are in the crawlspace\nSpeaker_1: where was Logan\nSpeaker_2: he travelled to the patio\nSpeaker_1: was Benjamin there\nSpeaker_2: he journeyed to the bedroom\n", "options": ["I don't know", "Benjamin was in the patio", "Benjamin was not in the patio", "I was not in the patio"], "correct answer": "Benjamin was not in the patio", "id": "1233"}
1230
  {"pretext": "Speaker_1: did you leave the melons in the crawlspace\nSpeaker_2: I left the melons and the onion there\nSpeaker_1: was Jack in the back_yard\nSpeaker_2: Jack was there\nSpeaker_1: are some of the grapes in the sunroom\nSpeaker_2: Sophia said she saw all the grapes were in the sunroom\nSpeaker_1: are some of the turnips in the back_yard\nSpeaker_2: two turnips are in the back_yard\n", "options": ["all of the turnips are in the back_yard", "two of the turnips are in the back_yard", "I am not sure how many turnips are in the back_yard", "I am not sure if some of the turnips are in the back_yard"], "correct answer": "two of the turnips are in the back_yard", "id": "1234"}
1231
  {"pretext": "Speaker_1: are some of the peas in the living_room\nSpeaker_2: all of the peas are in the living_room\nSpeaker_1: did Mia leave the peas there\nSpeaker_2: she left them there and travelled to the garden\n", "options": ["I didn't leave the peas in the living_room", "I left the peas in the living_room and then travelled to the garden", "I left the peas in the garden and then travelled to the living_room", "Mia left the peas in the living_room and then travelled to the garden"], "correct answer": "Mia left the peas in the living_room and then travelled to the garden", "id": "1235"}
1232
+ {"pretext": "Speaker_1: how can I find Lily\nSpeaker_2: I know she didn't went to the study\nSpeaker_1: did she go to the patio \nSpeaker_2: yes\nSpeaker_1: where did you go\nSpeaker_2: I journeyed to the patio and the sunroom\nSpeaker_1: are some of the beans in the patio\nSpeaker_2: three beans are in the patio\nSpeaker_1: did you leave them there\nSpeaker_2: I left them there and travelled to the sunroom\n", "options": ["I didn't leave the beans in the patio", "I left the beans in the patio and then travelled to the sunroom", "the beans are in the patio", "I leave the beans in the patio"], "correct answer": "I left the beans in the patio and then travelled to the sunroom", "id": "1236"}
1233
  {"pretext": "Speaker_1: did Jackson go to the study \nSpeaker_2: he journeyed to the patio\nSpeaker_1: where can I get the plums\nSpeaker_2: Mia said there is a red envelope in the study\nSpeaker_1: did you leave them in the study\nSpeaker_2: I left them there and went to the front_yard\nSpeaker_1: where did you see Jack\nSpeaker_2: he was in the hallway\nSpeaker_1: did you see the radishes\nSpeaker_2: they are in the study or the front_yard\nSpeaker_1: how many grapes are in the patio\nSpeaker_2: there are four or five\nSpeaker_1: how many eggplants are there\nSpeaker_2: one or two\nSpeaker_1: how many turnips are in the hallway\nSpeaker_2: one or two\nSpeaker_1: where can I get the carrots\nSpeaker_2: the carrots are in the front_yard\nSpeaker_1: did Jack leave them there\nSpeaker_2: no, he didn't\n", "options": ["Jack didn't leave the carrots in the front_yard", "Jack leave the carrots in the front_yard", "I didn't leave the carrots in the front_yard", "the carrots are in the front_yard"], "correct answer": "Jack didn't leave the carrots in the front_yard", "id": "1237"}
1234
  {"pretext": "Speaker_1: did Emily go to the crawlspace \nSpeaker_2: she was in the bathroom\nSpeaker_1: are all the corns in the crawlspace\nSpeaker_2: some corns are in the crawlspace\nSpeaker_1: how many radishes are in the bathroom\nSpeaker_2: four\nSpeaker_1: where was Hannah\nSpeaker_2: she said she travelled to the crawlspace\nSpeaker_1: where can I find the celeries\nSpeaker_2: the celeries are in the bathroom or the lounge\nSpeaker_1: what about the carrots\nSpeaker_2: they are in the attic or the lounge\nSpeaker_1: did you leave them in the attic\nSpeaker_2: I left them and the lettuces there\nSpeaker_1: where are the pumpkins\nSpeaker_2: they are in the lounge\n", "options": ["the pumpkins are in the lounge", "the pumpkins are in the attic", "the pumpkins are not in the lounge", "I am not sure where the pumpkins are"], "correct answer": "the pumpkins are in the lounge", "id": "1238"}
1235
  {"pretext": "Speaker_1: did you see the grapefruits\nSpeaker_2: they are in the den or the office\nSpeaker_1: are some of the pineapples in the front_yard\nSpeaker_2: four pineapples are in the front_yard\n", "options": ["four of the pineapples are in the front_yard", "the pineapples are not in the front_yard", "all of the grapefruits are in the front_yard", "I am not sure how many pineapples are in the front_yard"], "correct answer": "four of the pineapples are in the front_yard", "id": "1239"}
 
1728
  {"pretext": "Speaker_1: how many grapefruits are in the hallway\nSpeaker_2: three\nSpeaker_1: did Mason place them in the garden\nSpeaker_2: no, he didn't\nSpeaker_1: where can I find the corns\nSpeaker_2: I left the corns in the garden and walked to the hallway\nSpeaker_1: did Mason leave the lettuces in the kitchen\nSpeaker_2: yes, he did\nSpeaker_1: did Nathan place the strawberries in the garden\nSpeaker_2: he placed them in the study if not the garden\nSpeaker_1: are all the cabbages in the kitchen\nSpeaker_2: some are in the kitchen\nSpeaker_1: where are the persimmons\nSpeaker_2: the persimmons are in the hallway or the kitchen\nSpeaker_1: did you see the tomatoes\nSpeaker_2: they are in the study\nSpeaker_1: are all the tomatoes there\nSpeaker_2: some are there\n", "options": ["I am not sure if all of the tomatoes are in the study", "the tomatoes are not in the study", "I am not sure how many tomatoes are in the study", "not all the tomatoes are in the study"], "correct answer": "not all the tomatoes are in the study", "id": "1732"}
1729
  {"pretext": "Speaker_1: where are the melons\nSpeaker_2: Lily said there is a red bucket in the cellar\nSpeaker_1: how about the peas\nSpeaker_2: Oliver left the peas in the lounge and journeyed to the lounge\nSpeaker_1: how about the eggplants\nSpeaker_2: Jackson and I left the eggplants in the office\nSpeaker_1: how many are in the office\nSpeaker_2: there are at least two there\nSpeaker_1: did you place the asparagus in the cellar\nSpeaker_2: I placed them there and walked to the lounge\nSpeaker_1: did Oliver place the persimmons there\nSpeaker_2: he said he was not there\nSpeaker_1: did you leave them there\nSpeaker_2: no\n", "options": ["the persimmons are in the cellar", "I leave the persimmons in the cellar", "the persimmons are in the lounge", "I didn't leave the persimmons in the cellar"], "correct answer": "I didn't leave the persimmons in the cellar", "id": "1733"}
1730
  {"pretext": "Speaker_1: did Charlotte put the turnips in the back_yard\nSpeaker_2: no\nSpeaker_1: how many turnips are there\nSpeaker_2: there are at least one there\nSpeaker_1: where can I get the radishes\nSpeaker_2: Charlotte said there is a blue cupboard in the staircase\nSpeaker_1: are some of them there\nSpeaker_2: Charlotte said she left three of them there\nSpeaker_1: how many melons are in the bathroom\nSpeaker_2: I'm not sure\nSpeaker_1: did Ethan place the peaches there\nSpeaker_2: he placed them in the bathroom or the staircase\nSpeaker_1: are all the pineapples there\nSpeaker_2: yes, they are all there\n", "options": ["all of the pineapples are in the bathroom", "I am not sure if all of the pineapples are in the bathroom", "four of the pineapples are in the bathroom", "all of the peaches are in the bathroom"], "correct answer": "all of the pineapples are in the bathroom", "id": "1734"}
1731
+ {"pretext": "Speaker_1: are all the green peppers in the porch\nSpeaker_2: some are there\nSpeaker_1: where did you go\nSpeaker_2: I went to the porch and the bathroom\nSpeaker_1: where did you see Chloe\nSpeaker_2: I don't know\nSpeaker_1: did Alexander leave the celeries in the bathroom\nSpeaker_2: I'm not sure\nSpeaker_1: how many are in the hallway\nSpeaker_2: there are two or three\nSpeaker_1: are all the corns in the porch\nSpeaker_2: Alexander said he saw some corns in the porch\nSpeaker_1: did you place the plums there\nSpeaker_2: I placed them in the bathroom\n", "options": ["I didn't place the plums in the porch", "I place the plums in the porch", "I place the corns in the porch", "the plums are in the porch"], "correct answer": "I didn't place the plums in the porch", "id": "1735"}
1732
  {"pretext": "Speaker_1: where are the pineapples\nSpeaker_2: Sophia left the pineapples in the dining_room and walked to the workshop\nSpeaker_1: did she place the lemon in the den\nSpeaker_2: yes, she did\nSpeaker_1: where did you go\nSpeaker_2: I travelled to the den and the workshop\nSpeaker_1: are all the persimmons there\nSpeaker_2: yes, they are all there\nSpeaker_1: are some of the cabbages in the living_room\nSpeaker_2: three are in the living_room\n", "options": ["three of the cabbages are in the living_room", "all of the cabbages are in the living_room", "the cabbages are not in the living_room", "all of the cabbages are in the workshop"], "correct answer": "three of the cabbages are in the living_room", "id": "1736"}
1733
  {"pretext": "Speaker_1: did Oliver put the persimmons in the bathroom\nSpeaker_2: no\nSpeaker_1: did you go there\nSpeaker_2: I was not there\nSpeaker_1: what about the hall\nSpeaker_2: yes, I was in the hall\nSpeaker_1: are some of the beans in the basement\nSpeaker_2: Jackson said he left all of them there\nSpeaker_1: how many persimmons are in the bathroom\nSpeaker_2: two or three\nSpeaker_1: did you see the turnips\nSpeaker_2: the turnips are in the hall or the basement\nSpeaker_1: where can I get the melons\nSpeaker_2: the melons are in the workshop\nSpeaker_1: did you put the melons there\nSpeaker_2: I put them there and travelled to the hall\nSpeaker_1: did you leave the turnips there\nSpeaker_2: no\n", "options": ["I leave the melons in the workshop", "I leave the turnips in the workshop", "I didn't leave the melons in the workshop", "I didn't leave the turnips in the workshop"], "correct answer": "I didn't leave the turnips in the workshop", "id": "1737"}
1734
  {"pretext": "Speaker_1: did Mila leave the persimmons in the laundry\nSpeaker_2: she left the orange there\nSpeaker_1: where are the plums\nSpeaker_2: I put the plums in the closet and walked to the laundry\nSpeaker_1: did Mila place the strawberries in the crawlspace\nSpeaker_2: she placed them in the crawlspace or the playroom\nSpeaker_1: did Amelia go there\nSpeaker_2: it is likely\nSpeaker_1: how many plums are in the closet\nSpeaker_2: four\n", "options": ["the plums are not in the closet", "four of the plums are in the closet", "four plums are in the closet", "I am not sure how many plums are in the closet"], "correct answer": "four plums are in the closet", "id": "1738"}
task_5/dev.jsonl CHANGED
@@ -1,5 +1,5 @@
1
- {"pretext": "Speaker_1: The chemicals were as explosive as 1000 grenades\nSpeaker_2: The chemicals were not very volatile", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "541"}
2
- {"pretext": "Speaker_1: I'm as impartial as an umpire\nSpeaker_2: I'm impartial", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1652"}
3
- {"pretext": "Speaker_1: The pug was lightning in dog form.\nSpeaker_2: The dog has a ton of energy.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "88"}
4
- {"pretext": "Speaker_1: The waiting room was no different than a library at midnight\nSpeaker_2: The waiting room was empty and barely had any people", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1494"}
5
- {"pretext": "Speaker_1: Her dress was as elegant as a dumpster on fire.\nSpeaker_2: Her dress was elegant.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "940"}
 
1
+ {"pretext": "Speaker_1: The chair was comfortable like a pillow.\nSpeaker_2: The chair was uncomfortable.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "0"}
2
+ {"pretext": "Speaker_1: the man's idea had the creativity of a young child\nSpeaker_2: The idea was very creative", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1"}
3
+ {"pretext": "Speaker_1: The girl's taste was as rich as champagne\nSpeaker_2: The girl had cheap and tacky taste.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "2"}
4
+ {"pretext": "Speaker_1: The student has the insight of a goose\nSpeaker_2: The student is unwise", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "3"}
5
+ {"pretext": "Speaker_1: Her eyes are real intoxication.\nSpeaker_2: Her eyes are ugly.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "4"}
task_5/test.jsonl CHANGED
@@ -1,8 +1,3 @@
1
- {"pretext": "Speaker_1: The chair was comfortable like a pillow.\nSpeaker_2: The chair was uncomfortable.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "0"}
2
- {"pretext": "Speaker_1: the man's idea had the creativity of a young child\nSpeaker_2: The idea was very creative", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1"}
3
- {"pretext": "Speaker_1: The girl's taste was as rich as champagne\nSpeaker_2: The girl had cheap and tacky taste.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "2"}
4
- {"pretext": "Speaker_1: The student has the insight of a goose\nSpeaker_2: The student is unwise", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "3"}
5
- {"pretext": "Speaker_1: Her eyes are real intoxication.\nSpeaker_2: Her eyes are ugly.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "4"}
6
  {"pretext": "Speaker_1: The turkey had the gobble of an giant eagle having sex\nSpeaker_2: The turkey had a weak gobble", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "5"}
7
  {"pretext": "Speaker_1: The pizza tasted as good as being in Italy.\nSpeaker_2: The pizza was good.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "6"}
8
  {"pretext": "Speaker_1: The nerd can fight a toenail and get beaten up by it\nSpeaker_2: The nerd can win a fight with strong people", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "7"}
@@ -86,6 +81,7 @@
86
  {"pretext": "Speaker_1: the man loved the sandwich his wife made as much as he loved having to take out the garbage\nSpeaker_2: The wife made a good sandwich", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "85"}
87
  {"pretext": "Speaker_1: He's as free as a death-row inmate.\nSpeaker_2: He's very free.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "86"}
88
  {"pretext": "Speaker_1: The girl's personality was like soda\nSpeaker_2: The girl's personality was bubbly.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "87"}
 
89
  {"pretext": "Speaker_1: Her cheeks were the color of chalk\nSpeaker_2: Her cheeks were pink", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "89"}
90
  {"pretext": "Speaker_1: The turkey was as dry as cotton\nSpeaker_2: The turkey was really moist", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "90"}
91
  {"pretext": "Speaker_1: The You Tube tutorial was as informative as a blank sheet of paper.\nSpeaker_2: The You Tube tutorial was extremely informative.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "91"}
@@ -538,6 +534,7 @@
538
  {"pretext": "Speaker_1: She was supportive like a cane.\nSpeaker_2: She was very supportive.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "538"}
539
  {"pretext": "Speaker_1: The light has the brightness of A cave\nSpeaker_2: The light is extremely bright", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "539"}
540
  {"pretext": "Speaker_1: Reading the book is a fun little jog\nSpeaker_2: The book is a quick, entertaining read", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "540"}
 
541
  {"pretext": "Speaker_1: This drink has the sweetness of a chocolate coverd caramel\nSpeaker_2: It is fairly bland", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "542"}
542
  {"pretext": "Speaker_1: The shirt was as pretty as A field of blooming tulips.\nSpeaker_2: The shirt was not pretty at all.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "543"}
543
  {"pretext": "Speaker_1: The safe was as impenetrable as a doll house\nSpeaker_2: The safe was invulnerable", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "544"}
@@ -936,6 +933,7 @@
936
  {"pretext": "Speaker_1: The monk's incantations were like a whispering wind\nSpeaker_2: The monk's incantations were loud.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "937"}
937
  {"pretext": "Speaker_1: The girl's taste was as rich as champagne\nSpeaker_2: The girl had expensive taste.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "938"}
938
  {"pretext": "Speaker_1: Your gift is like extra butter.\nSpeaker_2: Your gift is not welcome.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "939"}
 
939
  {"pretext": "Speaker_1: The desire between them was a diamond\nSpeaker_2: The desire between them was flimsy, weak.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "941"}
940
  {"pretext": "Speaker_1: The jar is As a pit\nSpeaker_2: The jar is deep", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "942"}
941
  {"pretext": "Speaker_1: This couch has all the comfort of a pile of nails.\nSpeaker_2: The couch was very comfortable.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "943"}
@@ -1489,6 +1487,7 @@
1489
  {"pretext": "Speaker_1: The carnival ride is about as thrilling as Watching a TV commercial for the 40th time\nSpeaker_2: The carnival ride was exciting and thrilling", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "1491"}
1490
  {"pretext": "Speaker_1: Her gaze pierced your soul like a sharp sword.\nSpeaker_2: She only sees the outside of a person.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "1492"}
1491
  {"pretext": "Speaker_1: The railing was as sturdy as a twig.\nSpeaker_2: The railing was weak.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1493"}
 
1492
  {"pretext": "Speaker_1: Taking care of your responsibilities is like a trip to the candy store\nSpeaker_2: Taking care of your responsibilities is fun", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1495"}
1493
  {"pretext": "Speaker_1: the company grew as fast as a newborn panda\nSpeaker_2: The company grew slowly.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "1496"}
1494
  {"pretext": "Speaker_1: The sun is happy\nSpeaker_2: The weather is really hot!", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "1497"}
@@ -1646,6 +1645,7 @@
1646
  {"pretext": "Speaker_1: The razor was as sharp as An instrument that cuts through wood like butter\nSpeaker_2: The razor is dull", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "1649"}
1647
  {"pretext": "Speaker_1: The computer is as fast as a hungry cheetah\nSpeaker_2: The computer is fast.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1650"}
1648
  {"pretext": "Speaker_1: The cat is a wooly mammoth.\nSpeaker_2: The cat is hairy.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1651"}
 
1649
  {"pretext": "Speaker_1: THe dedication of that player is like scientist researching for quantum theory\nSpeaker_2: The dedication of that player is immerse", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "1653"}
1650
  {"pretext": "Speaker_1: The game was as unfair as a 6 sided-die\nSpeaker_2: the game was very fair", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1654"}
1651
  {"pretext": "Speaker_1: They would follow him nowhere\nSpeaker_2: They completely trusted him", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "1655"}
 
 
 
 
 
 
1
  {"pretext": "Speaker_1: The turkey had the gobble of an giant eagle having sex\nSpeaker_2: The turkey had a weak gobble", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "5"}
2
  {"pretext": "Speaker_1: The pizza tasted as good as being in Italy.\nSpeaker_2: The pizza was good.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "6"}
3
  {"pretext": "Speaker_1: The nerd can fight a toenail and get beaten up by it\nSpeaker_2: The nerd can win a fight with strong people", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "7"}
 
81
  {"pretext": "Speaker_1: the man loved the sandwich his wife made as much as he loved having to take out the garbage\nSpeaker_2: The wife made a good sandwich", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "85"}
82
  {"pretext": "Speaker_1: He's as free as a death-row inmate.\nSpeaker_2: He's very free.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "86"}
83
  {"pretext": "Speaker_1: The girl's personality was like soda\nSpeaker_2: The girl's personality was bubbly.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "87"}
84
+ {"pretext": "Speaker_1: The pug was lightning in dog form.\nSpeaker_2: The dog has a ton of energy.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "88"}
85
  {"pretext": "Speaker_1: Her cheeks were the color of chalk\nSpeaker_2: Her cheeks were pink", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "89"}
86
  {"pretext": "Speaker_1: The turkey was as dry as cotton\nSpeaker_2: The turkey was really moist", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "90"}
87
  {"pretext": "Speaker_1: The You Tube tutorial was as informative as a blank sheet of paper.\nSpeaker_2: The You Tube tutorial was extremely informative.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "91"}
 
534
  {"pretext": "Speaker_1: She was supportive like a cane.\nSpeaker_2: She was very supportive.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "538"}
535
  {"pretext": "Speaker_1: The light has the brightness of A cave\nSpeaker_2: The light is extremely bright", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "539"}
536
  {"pretext": "Speaker_1: Reading the book is a fun little jog\nSpeaker_2: The book is a quick, entertaining read", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "540"}
537
+ {"pretext": "Speaker_1: The chemicals were as explosive as 1000 grenades\nSpeaker_2: The chemicals were not very volatile", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "541"}
538
  {"pretext": "Speaker_1: This drink has the sweetness of a chocolate coverd caramel\nSpeaker_2: It is fairly bland", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "542"}
539
  {"pretext": "Speaker_1: The shirt was as pretty as A field of blooming tulips.\nSpeaker_2: The shirt was not pretty at all.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "543"}
540
  {"pretext": "Speaker_1: The safe was as impenetrable as a doll house\nSpeaker_2: The safe was invulnerable", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "544"}
 
933
  {"pretext": "Speaker_1: The monk's incantations were like a whispering wind\nSpeaker_2: The monk's incantations were loud.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "937"}
934
  {"pretext": "Speaker_1: The girl's taste was as rich as champagne\nSpeaker_2: The girl had expensive taste.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "938"}
935
  {"pretext": "Speaker_1: Your gift is like extra butter.\nSpeaker_2: Your gift is not welcome.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "939"}
936
+ {"pretext": "Speaker_1: Her dress was as elegant as a dumpster on fire.\nSpeaker_2: Her dress was elegant.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "940"}
937
  {"pretext": "Speaker_1: The desire between them was a diamond\nSpeaker_2: The desire between them was flimsy, weak.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "941"}
938
  {"pretext": "Speaker_1: The jar is As a pit\nSpeaker_2: The jar is deep", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "942"}
939
  {"pretext": "Speaker_1: This couch has all the comfort of a pile of nails.\nSpeaker_2: The couch was very comfortable.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "943"}
 
1487
  {"pretext": "Speaker_1: The carnival ride is about as thrilling as Watching a TV commercial for the 40th time\nSpeaker_2: The carnival ride was exciting and thrilling", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "1491"}
1488
  {"pretext": "Speaker_1: Her gaze pierced your soul like a sharp sword.\nSpeaker_2: She only sees the outside of a person.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "1492"}
1489
  {"pretext": "Speaker_1: The railing was as sturdy as a twig.\nSpeaker_2: The railing was weak.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1493"}
1490
+ {"pretext": "Speaker_1: The waiting room was no different than a library at midnight\nSpeaker_2: The waiting room was empty and barely had any people", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1494"}
1491
  {"pretext": "Speaker_1: Taking care of your responsibilities is like a trip to the candy store\nSpeaker_2: Taking care of your responsibilities is fun", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1495"}
1492
  {"pretext": "Speaker_1: the company grew as fast as a newborn panda\nSpeaker_2: The company grew slowly.", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "1496"}
1493
  {"pretext": "Speaker_1: The sun is happy\nSpeaker_2: The weather is really hot!", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "1497"}
 
1645
  {"pretext": "Speaker_1: The razor was as sharp as An instrument that cuts through wood like butter\nSpeaker_2: The razor is dull", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "1649"}
1646
  {"pretext": "Speaker_1: The computer is as fast as a hungry cheetah\nSpeaker_2: The computer is fast.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1650"}
1647
  {"pretext": "Speaker_1: The cat is a wooly mammoth.\nSpeaker_2: The cat is hairy.", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1651"}
1648
+ {"pretext": "Speaker_1: I'm as impartial as an umpire\nSpeaker_2: I'm impartial", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1652"}
1649
  {"pretext": "Speaker_1: THe dedication of that player is like scientist researching for quantum theory\nSpeaker_2: The dedication of that player is immerse", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "1653"}
1650
  {"pretext": "Speaker_1: The game was as unfair as a 6 sided-die\nSpeaker_2: the game was very fair", "options": ["Agrees", "Disagrees"], "correct answer": "Agrees", "id": "1654"}
1651
  {"pretext": "Speaker_1: They would follow him nowhere\nSpeaker_2: They completely trusted him", "options": ["Agrees", "Disagrees"], "correct answer": "Disagrees", "id": "1655"}
task_6/dev.jsonl CHANGED
@@ -1,5 +1,5 @@
1
- {"pretext": "Speaker_1: The link was very useful\nSpeaker_2: Of course, The link in the email was as helpful as An offer from Hulu for 99 cents for a year", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1098"}
2
- {"pretext": "Speaker_1: The report was detailed, in depth, and very comprehensive\nSpeaker_2: Of course, The report was a comprehensive as a coloring book", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "255"}
3
- {"pretext": "Speaker_1: His sacrifice was very bold\nSpeaker_2: Yeah, His sacrifice showed he had a heart like a mouse", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1992"}
4
- {"pretext": "Speaker_1: the blood was light\nSpeaker_2: True, His blood was darker than midnight", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1888"}
5
- {"pretext": "Speaker_1: The car is very, very loud\nSpeaker_2: Yes, That car is about as loud as WW2 tank", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "775"}
 
1
+ {"pretext": "Speaker_1: The chair was uncomfortable.\nSpeaker_2: Yeah, The chair was comfortable like a pillow.", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "0"}
2
+ {"pretext": "Speaker_1: The idea was very creative\nSpeaker_2: True, the man's idea had the creativity of a young child", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1"}
3
+ {"pretext": "Speaker_1: The girl had cheap and tacky taste.\nSpeaker_2: Yeah, The girl's taste was as rich as champagne", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "2"}
4
+ {"pretext": "Speaker_1: The student is unwise\nSpeaker_2: Of course, The student has the insight of a goose", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "3"}
5
+ {"pretext": "Speaker_1: Her eyes are ugly.\nSpeaker_2: True, Her eyes are real intoxication.", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "4"}
task_6/test.jsonl CHANGED
@@ -1,8 +1,3 @@
1
- {"pretext": "Speaker_1: The chair was uncomfortable.\nSpeaker_2: Yeah, The chair was comfortable like a pillow.", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "0"}
2
- {"pretext": "Speaker_1: The idea was very creative\nSpeaker_2: True, the man's idea had the creativity of a young child", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1"}
3
- {"pretext": "Speaker_1: The girl had cheap and tacky taste.\nSpeaker_2: Yeah, The girl's taste was as rich as champagne", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "2"}
4
- {"pretext": "Speaker_1: The student is unwise\nSpeaker_2: Of course, The student has the insight of a goose", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "3"}
5
- {"pretext": "Speaker_1: Her eyes are ugly.\nSpeaker_2: True, Her eyes are real intoxication.", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "4"}
6
  {"pretext": "Speaker_1: The turkey had a weak gobble\nSpeaker_2: True, The turkey had the gobble of an giant eagle having sex", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "5"}
7
  {"pretext": "Speaker_1: The pizza was good.\nSpeaker_2: True, The pizza tasted as good as being in Italy.", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "6"}
8
  {"pretext": "Speaker_1: The nerd can win a fight with strong people\nSpeaker_2: Of course, The nerd can fight a toenail and get beaten up by it", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "7"}
@@ -253,6 +248,7 @@
253
  {"pretext": "Speaker_1: The librarian had no charm.\nSpeaker_2: True, The librarian had the charm of your most understanding confidante.", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "252"}
254
  {"pretext": "Speaker_1: The party was loud and uninhibited\nSpeaker_2: True, The party was as wild as a barrel of bonobo monkeys", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "253"}
255
  {"pretext": "Speaker_1: The man was noticeable and had lots of presence.\nSpeaker_2: True, The man had the presence of a mouse", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "254"}
 
256
  {"pretext": "Speaker_1: His home is a subpar.\nSpeaker_2: Of course, Going to his house is like being on an episode of Hoarders.", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "256"}
257
  {"pretext": "Speaker_1: The pilot was oriented badly\nSpeaker_2: Yes, The pilot was oriented as well as a funhouse visitor", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "257"}
258
  {"pretext": "Speaker_1: The chemical process is very complex\nSpeaker_2: True, The chemical process has the complexity of A kid mixing vinegar and baking soda", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "258"}
@@ -772,6 +768,7 @@
772
  {"pretext": "Speaker_1: He's fat\nSpeaker_2: Yeah, he's as fat as a stick", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "772"}
773
  {"pretext": "Speaker_1: The level was difficult\nSpeaker_2: Of course, The level on the game was as hard as Passing a 10th grade algebra exam with the teachers answers.", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "773"}
774
  {"pretext": "Speaker_1: he wasn't scared\nSpeaker_2: Yes, He was as frightened as a bear in the woods", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "774"}
 
775
  {"pretext": "Speaker_1: That flower smell very bad\nSpeaker_2: True, That flower smells like a home cooked meal", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "776"}
776
  {"pretext": "Speaker_1: The computer ran very slowly.\nSpeaker_2: Yeah, The computer has the speed of and Olympic sprinter crossing the finish line first.", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "777"}
777
  {"pretext": "Speaker_1: The inscription was easy to read\nSpeaker_2: True, Trying to read the inscription on the machine was as hard as Trying to read something with a magnifying glass", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "778"}
@@ -1094,6 +1091,7 @@
1094
  {"pretext": "Speaker_1: It is really hard, and challenging\nSpeaker_2: Of course, It's about as challenging as walking down the street", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1095"}
1095
  {"pretext": "Speaker_1: It is very small\nSpeaker_2: Yes, It's about as small as a kidney bean", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1096"}
1096
  {"pretext": "Speaker_1: The motor barely ran at all\nSpeaker_2: True, The motor ran as well as a program from 1995 on a modern PC", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1097"}
 
1097
  {"pretext": "Speaker_1: He had no authority\nSpeaker_2: Yes, He had the authority of the President during a world war", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1099"}
1098
  {"pretext": "Speaker_1: The turkey tasted good.\nSpeaker_2: Yeah, That turkey was sent from heaven", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1100"}
1099
  {"pretext": "Speaker_1: Her head was small\nSpeaker_2: True, Her head was the size of a basketball", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1101"}
@@ -1883,6 +1881,7 @@
1883
  {"pretext": "Speaker_1: The break felt like it lasted only a short time.\nSpeaker_2: Of course, the break in the day's work felt like it lasted about as long as a christopher nolan movie.", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1885"}
1884
  {"pretext": "Speaker_1: The cat is hyperactive\nSpeaker_2: Yeah, The elderly cat has the energy of a class at recess", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1886"}
1885
  {"pretext": "Speaker_1: He is not smart\nSpeaker_2: Yes, His intelligence stretched from one end of the universe to the other", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1887"}
 
1886
  {"pretext": "Speaker_1: The lasagna is below acceptable\nSpeaker_2: Of course, This lasagna has the flavor of Buca di beppo", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1889"}
1887
  {"pretext": "Speaker_1: You're kind\nSpeaker_2: Yeah, You're as kind as a monster", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1890"}
1888
  {"pretext": "Speaker_1: That seminar instructor was not very intelligent\nSpeaker_2: Of course, That seminar instructor was sharp as a new razor blade", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1891"}
@@ -1986,6 +1985,7 @@
1986
  {"pretext": "Speaker_1: The old lady is very elegant\nSpeaker_2: Of course, The old lady has the graciousness of a princess who welcomes her prince from the magical chariot", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1989"}
1987
  {"pretext": "Speaker_1: The teacher is lenient.\nSpeaker_2: Yes, The teacher rules with a feather touch.", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1990"}
1988
  {"pretext": "Speaker_1: Time was moving very quickly.\nSpeaker_2: True, Time was moving like a snail", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1991"}
 
1989
  {"pretext": "Speaker_1: He was a good bowler\nSpeaker_2: True, He tossed the bowling bowling ball with such authority it looked like tumble weed tumbling aimlesssly down the roadway", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1993"}
1990
  {"pretext": "Speaker_1: The house was priceless to him.\nSpeaker_2: Yeah, The house near the lake was to him as precious as The car he had that was always breaking down.", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1994"}
1991
  {"pretext": "Speaker_1: The shirt was bright\nSpeaker_2: Of course, The shirt was as bright as a dark cave", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1995"}
 
 
 
 
 
 
1
  {"pretext": "Speaker_1: The turkey had a weak gobble\nSpeaker_2: True, The turkey had the gobble of an giant eagle having sex", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "5"}
2
  {"pretext": "Speaker_1: The pizza was good.\nSpeaker_2: True, The pizza tasted as good as being in Italy.", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "6"}
3
  {"pretext": "Speaker_1: The nerd can win a fight with strong people\nSpeaker_2: Of course, The nerd can fight a toenail and get beaten up by it", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "7"}
 
248
  {"pretext": "Speaker_1: The librarian had no charm.\nSpeaker_2: True, The librarian had the charm of your most understanding confidante.", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "252"}
249
  {"pretext": "Speaker_1: The party was loud and uninhibited\nSpeaker_2: True, The party was as wild as a barrel of bonobo monkeys", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "253"}
250
  {"pretext": "Speaker_1: The man was noticeable and had lots of presence.\nSpeaker_2: True, The man had the presence of a mouse", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "254"}
251
+ {"pretext": "Speaker_1: The report was detailed, in depth, and very comprehensive\nSpeaker_2: Of course, The report was a comprehensive as a coloring book", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "255"}
252
  {"pretext": "Speaker_1: His home is a subpar.\nSpeaker_2: Of course, Going to his house is like being on an episode of Hoarders.", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "256"}
253
  {"pretext": "Speaker_1: The pilot was oriented badly\nSpeaker_2: Yes, The pilot was oriented as well as a funhouse visitor", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "257"}
254
  {"pretext": "Speaker_1: The chemical process is very complex\nSpeaker_2: True, The chemical process has the complexity of A kid mixing vinegar and baking soda", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "258"}
 
768
  {"pretext": "Speaker_1: He's fat\nSpeaker_2: Yeah, he's as fat as a stick", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "772"}
769
  {"pretext": "Speaker_1: The level was difficult\nSpeaker_2: Of course, The level on the game was as hard as Passing a 10th grade algebra exam with the teachers answers.", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "773"}
770
  {"pretext": "Speaker_1: he wasn't scared\nSpeaker_2: Yes, He was as frightened as a bear in the woods", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "774"}
771
+ {"pretext": "Speaker_1: The car is very, very loud\nSpeaker_2: Yes, That car is about as loud as WW2 tank", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "775"}
772
  {"pretext": "Speaker_1: That flower smell very bad\nSpeaker_2: True, That flower smells like a home cooked meal", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "776"}
773
  {"pretext": "Speaker_1: The computer ran very slowly.\nSpeaker_2: Yeah, The computer has the speed of and Olympic sprinter crossing the finish line first.", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "777"}
774
  {"pretext": "Speaker_1: The inscription was easy to read\nSpeaker_2: True, Trying to read the inscription on the machine was as hard as Trying to read something with a magnifying glass", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "778"}
 
1091
  {"pretext": "Speaker_1: It is really hard, and challenging\nSpeaker_2: Of course, It's about as challenging as walking down the street", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1095"}
1092
  {"pretext": "Speaker_1: It is very small\nSpeaker_2: Yes, It's about as small as a kidney bean", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1096"}
1093
  {"pretext": "Speaker_1: The motor barely ran at all\nSpeaker_2: True, The motor ran as well as a program from 1995 on a modern PC", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1097"}
1094
+ {"pretext": "Speaker_1: The link was very useful\nSpeaker_2: Of course, The link in the email was as helpful as An offer from Hulu for 99 cents for a year", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1098"}
1095
  {"pretext": "Speaker_1: He had no authority\nSpeaker_2: Yes, He had the authority of the President during a world war", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1099"}
1096
  {"pretext": "Speaker_1: The turkey tasted good.\nSpeaker_2: Yeah, That turkey was sent from heaven", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1100"}
1097
  {"pretext": "Speaker_1: Her head was small\nSpeaker_2: True, Her head was the size of a basketball", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1101"}
 
1881
  {"pretext": "Speaker_1: The break felt like it lasted only a short time.\nSpeaker_2: Of course, the break in the day's work felt like it lasted about as long as a christopher nolan movie.", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1885"}
1882
  {"pretext": "Speaker_1: The cat is hyperactive\nSpeaker_2: Yeah, The elderly cat has the energy of a class at recess", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1886"}
1883
  {"pretext": "Speaker_1: He is not smart\nSpeaker_2: Yes, His intelligence stretched from one end of the universe to the other", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1887"}
1884
+ {"pretext": "Speaker_1: the blood was light\nSpeaker_2: True, His blood was darker than midnight", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1888"}
1885
  {"pretext": "Speaker_1: The lasagna is below acceptable\nSpeaker_2: Of course, This lasagna has the flavor of Buca di beppo", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1889"}
1886
  {"pretext": "Speaker_1: You're kind\nSpeaker_2: Yeah, You're as kind as a monster", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1890"}
1887
  {"pretext": "Speaker_1: That seminar instructor was not very intelligent\nSpeaker_2: Of course, That seminar instructor was sharp as a new razor blade", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1891"}
 
1985
  {"pretext": "Speaker_1: The old lady is very elegant\nSpeaker_2: Of course, The old lady has the graciousness of a princess who welcomes her prince from the magical chariot", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1989"}
1986
  {"pretext": "Speaker_1: The teacher is lenient.\nSpeaker_2: Yes, The teacher rules with a feather touch.", "options": ["Agrees", "Sarcastic"], "correct answer": "Agrees", "id": "1990"}
1987
  {"pretext": "Speaker_1: Time was moving very quickly.\nSpeaker_2: True, Time was moving like a snail", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1991"}
1988
+ {"pretext": "Speaker_1: His sacrifice was very bold\nSpeaker_2: Yeah, His sacrifice showed he had a heart like a mouse", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1992"}
1989
  {"pretext": "Speaker_1: He was a good bowler\nSpeaker_2: True, He tossed the bowling bowling ball with such authority it looked like tumble weed tumbling aimlesssly down the roadway", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1993"}
1990
  {"pretext": "Speaker_1: The house was priceless to him.\nSpeaker_2: Yeah, The house near the lake was to him as precious as The car he had that was always breaking down.", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1994"}
1991
  {"pretext": "Speaker_1: The shirt was bright\nSpeaker_2: Of course, The shirt was as bright as a dark cave", "options": ["Agrees", "Sarcastic"], "correct answer": "Sarcastic", "id": "1995"}
task_7/dev.jsonl CHANGED
@@ -1,5 +1,5 @@
1
- {"pretext": "Sentence : You've got to get a grip.", "options": ["You need to get control of yourself and your emotions.", "You need to let go of yourself and your emotions."], "correct answer": "You need to get control of yourself and your emotions.", "id": "161"}
2
- {"pretext": "Sentence : How can we build a \u2019Global economy\u2019 if finance is handcuffed?", "options": ["Since finances are restricted by economics, how can we become part of global economy?", "How can we build a \u2019Global economy\u2019 if finance is free?"], "correct answer": "Since finances are restricted by economics, how can we become part of global economy?", "id": "1130"}
3
- {"pretext": "Sentence : Until the rest of you wake up and smell the coffee, someone has to keep an eye on what goes on up here at the institute.", "options": ["Until you all start paying attention to what is happening, someone has to keep an eye on what goes on up here at the institute.", "Even though nobody is paying attention to what is happening, someone has to keep an eye on what goes on up here at the institute."], "correct answer": "Until you all start paying attention to what is happening, someone has to keep an eye on what goes on up here at the institute.", "id": "600"}
4
- {"pretext": "Sentence : Her leg was as hairy as a baby's bottom", "options": ["Her leg was hairy", "Her leg was smooth"], "correct answer": "Her leg was smooth", "id": "1698"}
5
- {"pretext": "Sentence : Every so often a peak could be seen like a granite tooth stabbing the sky.", "options": ["There were tall and bladed peaks that could be seen every so often.", "There were small and rounded peaks that could be seen every so often."], "correct answer": "There were tall and bladed peaks that could be seen every so often.", "id": "1287"}
 
1
+ {"pretext": "Sentence : To add insult to injury, a boy was leading a handsome sheep on a string behind him.", "options": ["To make things worse, a boy was leading a handsome sheep on a string behind him.", "In order to make things a lot better, a boy was leading a handsome sheep on a string behind him."], "correct answer": "To make things worse, a boy was leading a handsome sheep on a string behind him.", "id": "0"}
2
+ {"pretext": "Sentence : Oh, you know how it is, mother, when you spend the night having sex with an old flame in public, you just glow a little bit more than usual.", "options": ["Oh, you know how it is, mother, when you spend the night having sex with a former lover in public, you just glow a little bit more than usual.", "Oh, you know how it is, mother, when you spend the night having sex with an absolute stranger in public, you just glow a little bit more than usual."], "correct answer": "Oh, you know how it is, mother, when you spend the night having sex with a former lover in public, you just glow a little bit more than usual.", "id": "1"}
3
+ {"pretext": "Sentence : Definitely a good person, but one could tell she believes in the flower power, power of the people and all that jazz from kilometers away.", "options": ["Definitely a good person, but one could tell she believes in the flower power, power of the people and a lot of other things as well from kilometers away.", "Definitely a good person, but one could tell she believes in the flower power, power of the people and nothing else."], "correct answer": "Definitely a good person, but one could tell she believes in the flower power, power of the people and a lot of other things as well from kilometers away.", "id": "2"}
4
+ {"pretext": "Sentence : To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice and all that jazz.", "options": ["To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice and nothing else that is related.", "To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice as well as everything else that is related."], "correct answer": "To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice as well as everything else that is related.", "id": "3"}
5
+ {"pretext": "Sentence : He would smash into it at full tilt.", "options": ["He would smash into it as fast as he could.", "He would smash into it as slowly as he could."], "correct answer": "He would smash into it as fast as he could.", "id": "4"}
task_7/test.jsonl CHANGED
@@ -1,8 +1,3 @@
1
- {"pretext": "Sentence : To add insult to injury, a boy was leading a handsome sheep on a string behind him.", "options": ["To make things worse, a boy was leading a handsome sheep on a string behind him.", "In order to make things a lot better, a boy was leading a handsome sheep on a string behind him."], "correct answer": "To make things worse, a boy was leading a handsome sheep on a string behind him.", "id": "0"}
2
- {"pretext": "Sentence : Oh, you know how it is, mother, when you spend the night having sex with an old flame in public, you just glow a little bit more than usual.", "options": ["Oh, you know how it is, mother, when you spend the night having sex with a former lover in public, you just glow a little bit more than usual.", "Oh, you know how it is, mother, when you spend the night having sex with an absolute stranger in public, you just glow a little bit more than usual."], "correct answer": "Oh, you know how it is, mother, when you spend the night having sex with a former lover in public, you just glow a little bit more than usual.", "id": "1"}
3
- {"pretext": "Sentence : Definitely a good person, but one could tell she believes in the flower power, power of the people and all that jazz from kilometers away.", "options": ["Definitely a good person, but one could tell she believes in the flower power, power of the people and a lot of other things as well from kilometers away.", "Definitely a good person, but one could tell she believes in the flower power, power of the people and nothing else."], "correct answer": "Definitely a good person, but one could tell she believes in the flower power, power of the people and a lot of other things as well from kilometers away.", "id": "2"}
4
- {"pretext": "Sentence : To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice and all that jazz.", "options": ["To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice and nothing else that is related.", "To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice as well as everything else that is related."], "correct answer": "To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice as well as everything else that is related.", "id": "3"}
5
- {"pretext": "Sentence : He would smash into it at full tilt.", "options": ["He would smash into it as fast as he could.", "He would smash into it as slowly as he could."], "correct answer": "He would smash into it as fast as he could.", "id": "4"}
6
  {"pretext": "Sentence : It seemed to take forever to return to the cricket field, but when they arrived, the battle was still going at full tilt.", "options": ["It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on very slowly at the minimum possible speed.", "It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on at maximum speed"], "correct answer": "It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on at maximum speed", "id": "5"}
7
  {"pretext": "Sentence : He was even surprised to learn the men were pretty good friends when they weren't at loggerheads over political issues.", "options": ["He was even surprised to learn the men were pretty good friends when they weren't in complete agreement with each other over political issues.", "He was even surprised to learn the men were pretty good friends when they weren't in conflict with each other over political issues."], "correct answer": "He was even surprised to learn the men were pretty good friends when they weren't in conflict with each other over political issues.", "id": "6"}
8
  {"pretext": "Sentence : Ever since we met,she continued, we've been at loggerheads.", "options": ["Ever since we met, she continued, we've been in complete agreement with each other on everything.", "Ever since we met, she continued, we've been unable to agree with each other on anything."], "correct answer": "Ever since we met, she continued, we've been unable to agree with each other on anything.", "id": "7"}
@@ -159,6 +154,7 @@
159
  {"pretext": "Sentence : In that case, game on.", "options": ["If that's the case, then I need to prepare to pursue this challenge.", "If that's the case, then I'm ready to pursue this challenge."], "correct answer": "If that's the case, then I'm ready to pursue this challenge.", "id": "158"}
160
  {"pretext": "Sentence : His memory slipped away from most who had grieved; legacy left to gather dust.", "options": ["His memory slipped away from most who had grieved; legacy left to become forgotten and unused.", "His memory slipped away from most who had grieved; legacy left to become remembered and used."], "correct answer": "His memory slipped away from most who had grieved; legacy left to become forgotten and unused.", "id": "159"}
161
  {"pretext": "Sentence : It opened its mouth and screamed, revealing rows of tiny sharp teeth and clawing at jason's muzzle as jason tried to get a grip with his own teeth.", "options": ["It opened its mouth and screamed, revealing rows of tiny sharp teeth and clawing at jason's muzzle as jason tried to stay calm and in control with his own teeth.", "It opened its mouth and screamed, revealing rows of tiny sharp teeth and clawing at jason's muzzle as jason tried to lose control and go crazy with his own teeth."], "correct answer": "It opened its mouth and screamed, revealing rows of tiny sharp teeth and clawing at jason's muzzle as jason tried to stay calm and in control with his own teeth.", "id": "160"}
 
162
  {"pretext": "Sentence : I desperately wanted to hear their secret conversation and get a handle on who or what this biker was all about.", "options": ["I desperately wanted to hear their secret conversation and have a firm clear understanding of who or what this biker was all about.", "I desperately wanted to hear their secret conversation and get confused about who or what this biker was all about."], "correct answer": "I desperately wanted to hear their secret conversation and have a firm clear understanding of who or what this biker was all about.", "id": "162"}
163
  {"pretext": "Sentence : Colby, get a handle on your emotions.", "options": ["Colby, don't try to understand or have any clarity about your emotions.", "Colby, figure out and have a clear understanding of your emotions."], "correct answer": "Colby, figure out and have a clear understanding of your emotions.", "id": "163"}
164
  {"pretext": "Sentence : If shay thought it was going to get a rise out of me, he was wrong.", "options": ["If shay thought it was going to irritate or anger me, he was wrong.", "If shay thought it was going to calm or soothe me, he was wrong."], "correct answer": "If shay thought it was going to irritate or anger me, he was wrong.", "id": "164"}
@@ -597,6 +593,7 @@
597
  {"pretext": "Sentence : In this vale of tears - blah blah blah.", "options": ["In this miserable place where life is full of sorrow and tragedy - blah blah blah.", "In this happy place where life is wonderful and there is no strife or tragedy - blah blah blah."], "correct answer": "In this miserable place where life is full of sorrow and tragedy - blah blah blah.", "id": "597"}
598
  {"pretext": "Sentence : Barb leaves, you cant deal with it, so you vent your spleen at her and the company she works for.", "options": ["Barb leaves, you can't deal with it, so you keep your anger and frustration to yourself at her and the company she works for.", "Barb leaves, you can't deal with it, so you let out your anger and frustration at her and the company she works for."], "correct answer": "Barb leaves, you can't deal with it, so you let out your anger and frustration at her and the company she works for.", "id": "598"}
599
  {"pretext": "Sentence : To vent your spleen about something for which only you can be blamed?", "options": ["To express your anger about something for which only you can be blamed?", "To never express your anger about something for which only you can be blamed?"], "correct answer": "To express your anger about something for which only you can be blamed?", "id": "599"}
 
600
  {"pretext": "Sentence : If nothing else, we the american people better wake up and smell the coffee.", "options": ["If nothing else, we the american people better ignore what is happening.", "If nothing else, we the american people better pay attention to what is happening."], "correct answer": "If nothing else, we the american people better pay attention to what is happening.", "id": "601"}
601
  {"pretext": "Sentence : People would walk all over you.", "options": ["People would treat you very badly.", "People would treat you very well."], "correct answer": "People would treat you very badly.", "id": "602"}
602
  {"pretext": "Sentence : This company has many thousands of clients around the world from all walks of life.", "options": ["This company has many thousands of clients around the world from all different backgrounds.", "Clients of this company come from all over the world, but all come from a homogenous status."], "correct answer": "This company has many thousands of clients around the world from all different backgrounds.", "id": "603"}
@@ -1126,6 +1123,7 @@
1126
  {"pretext": "Sentence : You might have assumed this was the police bluffing and bullying .", "options": ["You might have assumed this was the police scaring with a false show of strength and bullying .", "You'd have to be stupid if you actually believed the police being completely honest and calm."], "correct answer": "You might have assumed this was the police scaring with a false show of strength and bullying .", "id": "1127"}
1127
  {"pretext": "Sentence : You were the golden boy back then.", "options": ["Everyone used to love you.", "You were the scapegoat of those times."], "correct answer": "Everyone used to love you.", "id": "1128"}
1128
  {"pretext": "Sentence : Joanna, you disagree? Okay, shoot!", "options": ["Joanna, you disagree? Okay, tell me why!", "Joanna, you disagree? Oh... okay, no more questions."], "correct answer": "Joanna, you disagree? Okay, tell me why!", "id": "1129"}
 
1129
  {"pretext": "Sentence : You will love the new train. it is a heavenly ride.", "options": ["You will love the new train it is a great ride that it offers.", "You will love the new train, it is a horrid ride."], "correct answer": "You will love the new train it is a great ride that it offers.", "id": "1131"}
1130
  {"pretext": "Sentence : You disagree? Okay, shoot!", "options": ["You disagree? Okay, tell me why!", "You disagree? Oh... okay, no more questions."], "correct answer": "You disagree? Okay, tell me why!", "id": "1132"}
1131
  {"pretext": "Sentence : Those galaxies were jellyfishes in the abyss of space.", "options": ["Those galaxies were jellyfishes in the seemingly endless space.", "Those galaxies were jellyfishes in such a small finite space."], "correct answer": "Those galaxies were jellyfishes in the seemingly endless space.", "id": "1133"}
@@ -1282,6 +1280,7 @@
1282
  {"pretext": "Sentence : She was like a porcelain doll", "options": ["She was Brunette and brown eyed and sturdy", "She was Blonde and blue eyed and delicate"], "correct answer": "She was Blonde and blue eyed and delicate", "id": "1284"}
1283
  {"pretext": "Sentence : In the fading sunlight, he looked like a secret agent for satan.", "options": ["He looked dark and menacing in the fading sunlight.", "He looked bright and friendly in the fading sunlight."], "correct answer": "He looked dark and menacing in the fading sunlight.", "id": "1285"}
1284
  {"pretext": "Sentence : He raised his chest and stood like a security guard .", "options": ["He stood upright with his chest raised.", "He slumped over with his chest raised."], "correct answer": "He stood upright with his chest raised.", "id": "1286"}
 
1285
  {"pretext": "Sentence : His skin felt like a doves feathers and his little face was round, set by a golden crown of curls.", "options": ["His skin was rough, and he had a round face with golden curly hair.", "His skin was smooth, and he had a round face with golden curly hair."], "correct answer": "His skin was smooth, and he had a round face with golden curly hair.", "id": "1288"}
1286
  {"pretext": "Sentence : He felt like a millstone round his neck", "options": ["He felt free and unrestricted.", "He felt suffocated"], "correct answer": "He felt suffocated", "id": "1289"}
1287
  {"pretext": "Sentence : The courtyard goes like a movie screen with the film broken in the projector.", "options": ["The courtyard goes glaring blank", "The courtyard goes dark and hidden"], "correct answer": "The courtyard goes glaring blank", "id": "1290"}
@@ -1692,6 +1691,7 @@
1692
  {"pretext": "Sentence : The dancer was as graceful as a honking goose.", "options": ["The dancer was boorish and uncoordinated.", "The dancer was graceful."], "correct answer": "The dancer was boorish and uncoordinated.", "id": "1695"}
1693
  {"pretext": "Sentence : The girl's personality was as sweet as a grapefruit", "options": ["The girl's personality was sweet.", "The girl's personality was sour."], "correct answer": "The girl's personality was sour.", "id": "1696"}
1694
  {"pretext": "Sentence : She liked drama like a secluded monk", "options": ["She avoided drama.", "She loved drama."], "correct answer": "She avoided drama.", "id": "1697"}
 
1695
  {"pretext": "Sentence : This plane can fly like a dodo", "options": ["This plane can fly", "This plane can scarcely fly at all"], "correct answer": "This plane can scarcely fly at all", "id": "1699"}
1696
  {"pretext": "Sentence : The armor was tough as glass", "options": ["The armor was breakable and weak", "The armor was tough"], "correct answer": "The armor was breakable and weak", "id": "1700"}
1697
  {"pretext": "Sentence : The family was as friendly as a pack of wolves", "options": ["The family was very friendly.", "The family was very mean."], "correct answer": "The family was very mean.", "id": "1701"}
 
 
 
 
 
 
1
  {"pretext": "Sentence : It seemed to take forever to return to the cricket field, but when they arrived, the battle was still going at full tilt.", "options": ["It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on very slowly at the minimum possible speed.", "It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on at maximum speed"], "correct answer": "It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on at maximum speed", "id": "5"}
2
  {"pretext": "Sentence : He was even surprised to learn the men were pretty good friends when they weren't at loggerheads over political issues.", "options": ["He was even surprised to learn the men were pretty good friends when they weren't in complete agreement with each other over political issues.", "He was even surprised to learn the men were pretty good friends when they weren't in conflict with each other over political issues."], "correct answer": "He was even surprised to learn the men were pretty good friends when they weren't in conflict with each other over political issues.", "id": "6"}
3
  {"pretext": "Sentence : Ever since we met,she continued, we've been at loggerheads.", "options": ["Ever since we met, she continued, we've been in complete agreement with each other on everything.", "Ever since we met, she continued, we've been unable to agree with each other on anything."], "correct answer": "Ever since we met, she continued, we've been unable to agree with each other on anything.", "id": "7"}
 
154
  {"pretext": "Sentence : In that case, game on.", "options": ["If that's the case, then I need to prepare to pursue this challenge.", "If that's the case, then I'm ready to pursue this challenge."], "correct answer": "If that's the case, then I'm ready to pursue this challenge.", "id": "158"}
155
  {"pretext": "Sentence : His memory slipped away from most who had grieved; legacy left to gather dust.", "options": ["His memory slipped away from most who had grieved; legacy left to become forgotten and unused.", "His memory slipped away from most who had grieved; legacy left to become remembered and used."], "correct answer": "His memory slipped away from most who had grieved; legacy left to become forgotten and unused.", "id": "159"}
156
  {"pretext": "Sentence : It opened its mouth and screamed, revealing rows of tiny sharp teeth and clawing at jason's muzzle as jason tried to get a grip with his own teeth.", "options": ["It opened its mouth and screamed, revealing rows of tiny sharp teeth and clawing at jason's muzzle as jason tried to stay calm and in control with his own teeth.", "It opened its mouth and screamed, revealing rows of tiny sharp teeth and clawing at jason's muzzle as jason tried to lose control and go crazy with his own teeth."], "correct answer": "It opened its mouth and screamed, revealing rows of tiny sharp teeth and clawing at jason's muzzle as jason tried to stay calm and in control with his own teeth.", "id": "160"}
157
+ {"pretext": "Sentence : You've got to get a grip.", "options": ["You need to get control of yourself and your emotions.", "You need to let go of yourself and your emotions."], "correct answer": "You need to get control of yourself and your emotions.", "id": "161"}
158
  {"pretext": "Sentence : I desperately wanted to hear their secret conversation and get a handle on who or what this biker was all about.", "options": ["I desperately wanted to hear their secret conversation and have a firm clear understanding of who or what this biker was all about.", "I desperately wanted to hear their secret conversation and get confused about who or what this biker was all about."], "correct answer": "I desperately wanted to hear their secret conversation and have a firm clear understanding of who or what this biker was all about.", "id": "162"}
159
  {"pretext": "Sentence : Colby, get a handle on your emotions.", "options": ["Colby, don't try to understand or have any clarity about your emotions.", "Colby, figure out and have a clear understanding of your emotions."], "correct answer": "Colby, figure out and have a clear understanding of your emotions.", "id": "163"}
160
  {"pretext": "Sentence : If shay thought it was going to get a rise out of me, he was wrong.", "options": ["If shay thought it was going to irritate or anger me, he was wrong.", "If shay thought it was going to calm or soothe me, he was wrong."], "correct answer": "If shay thought it was going to irritate or anger me, he was wrong.", "id": "164"}
 
593
  {"pretext": "Sentence : In this vale of tears - blah blah blah.", "options": ["In this miserable place where life is full of sorrow and tragedy - blah blah blah.", "In this happy place where life is wonderful and there is no strife or tragedy - blah blah blah."], "correct answer": "In this miserable place where life is full of sorrow and tragedy - blah blah blah.", "id": "597"}
594
  {"pretext": "Sentence : Barb leaves, you cant deal with it, so you vent your spleen at her and the company she works for.", "options": ["Barb leaves, you can't deal with it, so you keep your anger and frustration to yourself at her and the company she works for.", "Barb leaves, you can't deal with it, so you let out your anger and frustration at her and the company she works for."], "correct answer": "Barb leaves, you can't deal with it, so you let out your anger and frustration at her and the company she works for.", "id": "598"}
595
  {"pretext": "Sentence : To vent your spleen about something for which only you can be blamed?", "options": ["To express your anger about something for which only you can be blamed?", "To never express your anger about something for which only you can be blamed?"], "correct answer": "To express your anger about something for which only you can be blamed?", "id": "599"}
596
+ {"pretext": "Sentence : Until the rest of you wake up and smell the coffee, someone has to keep an eye on what goes on up here at the institute.", "options": ["Until you all start paying attention to what is happening, someone has to keep an eye on what goes on up here at the institute.", "Even though nobody is paying attention to what is happening, someone has to keep an eye on what goes on up here at the institute."], "correct answer": "Until you all start paying attention to what is happening, someone has to keep an eye on what goes on up here at the institute.", "id": "600"}
597
  {"pretext": "Sentence : If nothing else, we the american people better wake up and smell the coffee.", "options": ["If nothing else, we the american people better ignore what is happening.", "If nothing else, we the american people better pay attention to what is happening."], "correct answer": "If nothing else, we the american people better pay attention to what is happening.", "id": "601"}
598
  {"pretext": "Sentence : People would walk all over you.", "options": ["People would treat you very badly.", "People would treat you very well."], "correct answer": "People would treat you very badly.", "id": "602"}
599
  {"pretext": "Sentence : This company has many thousands of clients around the world from all walks of life.", "options": ["This company has many thousands of clients around the world from all different backgrounds.", "Clients of this company come from all over the world, but all come from a homogenous status."], "correct answer": "This company has many thousands of clients around the world from all different backgrounds.", "id": "603"}
 
1123
  {"pretext": "Sentence : You might have assumed this was the police bluffing and bullying .", "options": ["You might have assumed this was the police scaring with a false show of strength and bullying .", "You'd have to be stupid if you actually believed the police being completely honest and calm."], "correct answer": "You might have assumed this was the police scaring with a false show of strength and bullying .", "id": "1127"}
1124
  {"pretext": "Sentence : You were the golden boy back then.", "options": ["Everyone used to love you.", "You were the scapegoat of those times."], "correct answer": "Everyone used to love you.", "id": "1128"}
1125
  {"pretext": "Sentence : Joanna, you disagree? Okay, shoot!", "options": ["Joanna, you disagree? Okay, tell me why!", "Joanna, you disagree? Oh... okay, no more questions."], "correct answer": "Joanna, you disagree? Okay, tell me why!", "id": "1129"}
1126
+ {"pretext": "Sentence : How can we build a \u2019Global economy\u2019 if finance is handcuffed?", "options": ["Since finances are restricted by economics, how can we become part of global economy?", "How can we build a \u2019Global economy\u2019 if finance is free?"], "correct answer": "Since finances are restricted by economics, how can we become part of global economy?", "id": "1130"}
1127
  {"pretext": "Sentence : You will love the new train. it is a heavenly ride.", "options": ["You will love the new train it is a great ride that it offers.", "You will love the new train, it is a horrid ride."], "correct answer": "You will love the new train it is a great ride that it offers.", "id": "1131"}
1128
  {"pretext": "Sentence : You disagree? Okay, shoot!", "options": ["You disagree? Okay, tell me why!", "You disagree? Oh... okay, no more questions."], "correct answer": "You disagree? Okay, tell me why!", "id": "1132"}
1129
  {"pretext": "Sentence : Those galaxies were jellyfishes in the abyss of space.", "options": ["Those galaxies were jellyfishes in the seemingly endless space.", "Those galaxies were jellyfishes in such a small finite space."], "correct answer": "Those galaxies were jellyfishes in the seemingly endless space.", "id": "1133"}
 
1280
  {"pretext": "Sentence : She was like a porcelain doll", "options": ["She was Brunette and brown eyed and sturdy", "She was Blonde and blue eyed and delicate"], "correct answer": "She was Blonde and blue eyed and delicate", "id": "1284"}
1281
  {"pretext": "Sentence : In the fading sunlight, he looked like a secret agent for satan.", "options": ["He looked dark and menacing in the fading sunlight.", "He looked bright and friendly in the fading sunlight."], "correct answer": "He looked dark and menacing in the fading sunlight.", "id": "1285"}
1282
  {"pretext": "Sentence : He raised his chest and stood like a security guard .", "options": ["He stood upright with his chest raised.", "He slumped over with his chest raised."], "correct answer": "He stood upright with his chest raised.", "id": "1286"}
1283
+ {"pretext": "Sentence : Every so often a peak could be seen like a granite tooth stabbing the sky.", "options": ["There were tall and bladed peaks that could be seen every so often.", "There were small and rounded peaks that could be seen every so often."], "correct answer": "There were tall and bladed peaks that could be seen every so often.", "id": "1287"}
1284
  {"pretext": "Sentence : His skin felt like a doves feathers and his little face was round, set by a golden crown of curls.", "options": ["His skin was rough, and he had a round face with golden curly hair.", "His skin was smooth, and he had a round face with golden curly hair."], "correct answer": "His skin was smooth, and he had a round face with golden curly hair.", "id": "1288"}
1285
  {"pretext": "Sentence : He felt like a millstone round his neck", "options": ["He felt free and unrestricted.", "He felt suffocated"], "correct answer": "He felt suffocated", "id": "1289"}
1286
  {"pretext": "Sentence : The courtyard goes like a movie screen with the film broken in the projector.", "options": ["The courtyard goes glaring blank", "The courtyard goes dark and hidden"], "correct answer": "The courtyard goes glaring blank", "id": "1290"}
 
1691
  {"pretext": "Sentence : The dancer was as graceful as a honking goose.", "options": ["The dancer was boorish and uncoordinated.", "The dancer was graceful."], "correct answer": "The dancer was boorish and uncoordinated.", "id": "1695"}
1692
  {"pretext": "Sentence : The girl's personality was as sweet as a grapefruit", "options": ["The girl's personality was sweet.", "The girl's personality was sour."], "correct answer": "The girl's personality was sour.", "id": "1696"}
1693
  {"pretext": "Sentence : She liked drama like a secluded monk", "options": ["She avoided drama.", "She loved drama."], "correct answer": "She avoided drama.", "id": "1697"}
1694
+ {"pretext": "Sentence : Her leg was as hairy as a baby's bottom", "options": ["Her leg was hairy", "Her leg was smooth"], "correct answer": "Her leg was smooth", "id": "1698"}
1695
  {"pretext": "Sentence : This plane can fly like a dodo", "options": ["This plane can fly", "This plane can scarcely fly at all"], "correct answer": "This plane can scarcely fly at all", "id": "1699"}
1696
  {"pretext": "Sentence : The armor was tough as glass", "options": ["The armor was breakable and weak", "The armor was tough"], "correct answer": "The armor was breakable and weak", "id": "1700"}
1697
  {"pretext": "Sentence : The family was as friendly as a pack of wolves", "options": ["The family was very friendly.", "The family was very mean."], "correct answer": "The family was very mean.", "id": "1701"}
task_8/dev.jsonl CHANGED
@@ -1,5 +1,5 @@
1
- {"pretext": "Sentence : All was like a winter morning after it had snowed all night.\nHint : A winter morning is silent and white because of the snow.", "options": ["All was loud and colorful", "All was silent and white"], "correct answer": "All was silent and white", "id": "1266"}
2
- {"pretext": "Sentence : The game is as fun as a grey park\nHint : A grey park is a dull, uninteresting place - in other words, it is boring.", "options": ["The game is fun", "The game is boring"], "correct answer": "The game is boring", "id": "1764"}
3
- {"pretext": "Sentence : He was in a black mood.\nHint : Being in a black mood means being in a bad angry mood.", "options": ["He was happy and jolly.", "He kept on being very miserable, irritated, and angry."], "correct answer": "He kept on being very miserable, irritated, and angry.", "id": "740"}
4
- {"pretext": "Sentence : they never mentioned being germans.\nHint : This is a metaphor meaning that the person was never upfront about their nationality and kept it hidden.", "options": ["They never said that they are germans.", "They were always upfront that they are germans."], "correct answer": "They never said that they are germans.", "id": "1182"}
5
- {"pretext": "Sentence : You couldn't order right off the top of your head in a dennys.\nHint : To order off the top of your head means to do it from memory or without much consideration, so in this context it would mean ordering without giving it much thought.", "options": ["You couldn't order right in a dennys immediately and without thinking .", "You couldn't order right in a dennys after giving it some thought and consideration ."], "correct answer": "You couldn't order right in a dennys immediately and without thinking .", "id": "393"}
 
1
+ {"pretext": "Sentence : To add insult to injury, a boy was leading a handsome sheep on a string behind him.\nHint : To add insult to injury means to make a bad situation worse, and in this sentence the boy leading the sheep makes the situation worse.", "options": ["To make things worse, a boy was leading a handsome sheep on a string behind him.", "In order to make things a lot better, a boy was leading a handsome sheep on a string behind him."], "correct answer": "To make things worse, a boy was leading a handsome sheep on a string behind him.", "id": "0"}
2
+ {"pretext": "Sentence : Oh, you know how it is, mother, when you spend the night having sex with an old flame in public, you just glow a little bit more than usual.\nHint : An old flame is a former lover, so spending the night with a former lover would make sense and cause one to glow.", "options": ["Oh, you know how it is, mother, when you spend the night having sex with a former lover in public, you just glow a little bit more than usual.", "Oh, you know how it is, mother, when you spend the night having sex with an absolute stranger in public, you just glow a little bit more than usual."], "correct answer": "Oh, you know how it is, mother, when you spend the night having sex with a former lover in public, you just glow a little bit more than usual.", "id": "1"}
3
+ {"pretext": "Sentence : Definitely a good person, but one could tell she believes in the flower power, power of the people and all that jazz from kilometers away.\nHint : And all that jazz means and everything else, so in this sentence it is saying that she believes in flower power and power of the people among other things.", "options": ["Definitely a good person, but one could tell she believes in the flower power, power of the people and a lot of other things as well from kilometers away.", "Definitely a good person, but one could tell she believes in the flower power, power of the people and nothing else."], "correct answer": "Definitely a good person, but one could tell she believes in the flower power, power of the people and a lot of other things as well from kilometers away.", "id": "2"}
4
+ {"pretext": "Sentence : To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice and all that jazz.\nHint : And all that jazz means and everything else, so in this sentence it is referring to everything else that is related to being a warden in D.C.", "options": ["To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice and nothing else that is related.", "To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice as well as everything else that is related."], "correct answer": "To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice as well as everything else that is related.", "id": "3"}
5
+ {"pretext": "Sentence : He would smash into it at full tilt.\nHint : To be at full tilt means to be going as fast as possible, so he would smash into it as fast as he could.", "options": ["He would smash into it as fast as he could.", "He would smash into it as slowly as he could."], "correct answer": "He would smash into it as fast as he could.", "id": "4"}
task_8/test.jsonl CHANGED
@@ -1,8 +1,3 @@
1
- {"pretext": "Sentence : To add insult to injury, a boy was leading a handsome sheep on a string behind him.\nHint : To add insult to injury means to make a bad situation worse, and in this sentence the boy leading the sheep makes the situation worse.", "options": ["To make things worse, a boy was leading a handsome sheep on a string behind him.", "In order to make things a lot better, a boy was leading a handsome sheep on a string behind him."], "correct answer": "To make things worse, a boy was leading a handsome sheep on a string behind him.", "id": "0"}
2
- {"pretext": "Sentence : Oh, you know how it is, mother, when you spend the night having sex with an old flame in public, you just glow a little bit more than usual.\nHint : An old flame is a former lover, so spending the night with a former lover would make sense and cause one to glow.", "options": ["Oh, you know how it is, mother, when you spend the night having sex with a former lover in public, you just glow a little bit more than usual.", "Oh, you know how it is, mother, when you spend the night having sex with an absolute stranger in public, you just glow a little bit more than usual."], "correct answer": "Oh, you know how it is, mother, when you spend the night having sex with a former lover in public, you just glow a little bit more than usual.", "id": "1"}
3
- {"pretext": "Sentence : Definitely a good person, but one could tell she believes in the flower power, power of the people and all that jazz from kilometers away.\nHint : And all that jazz means and everything else, so in this sentence it is saying that she believes in flower power and power of the people among other things.", "options": ["Definitely a good person, but one could tell she believes in the flower power, power of the people and a lot of other things as well from kilometers away.", "Definitely a good person, but one could tell she believes in the flower power, power of the people and nothing else."], "correct answer": "Definitely a good person, but one could tell she believes in the flower power, power of the people and a lot of other things as well from kilometers away.", "id": "2"}
4
- {"pretext": "Sentence : To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice and all that jazz.\nHint : And all that jazz means and everything else, so in this sentence it is referring to everything else that is related to being a warden in D.C.", "options": ["To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice and nothing else that is related.", "To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice as well as everything else that is related."], "correct answer": "To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice as well as everything else that is related.", "id": "3"}
5
- {"pretext": "Sentence : He would smash into it at full tilt.\nHint : To be at full tilt means to be going as fast as possible, so he would smash into it as fast as he could.", "options": ["He would smash into it as fast as he could.", "He would smash into it as slowly as he could."], "correct answer": "He would smash into it as fast as he could.", "id": "4"}
6
  {"pretext": "Sentence : It seemed to take forever to return to the cricket field, but when they arrived, the battle was still going at full tilt.\nHint : At full tilt means to go as fast as possible, so the battle still going at full tilt means it was still going at maximum speed.", "options": ["It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on very slowly at the minimum possible speed.", "It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on at maximum speed"], "correct answer": "It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on at maximum speed", "id": "5"}
7
  {"pretext": "Sentence : He was even surprised to learn the men were pretty good friends when they weren't at loggerheads over political issues.\nHint : To be at loggerheads is to be in conflict with someone, and in this sentence the men are in conflict with each other over political issues.", "options": ["He was even surprised to learn the men were pretty good friends when they weren't in complete agreement with each other over political issues.", "He was even surprised to learn the men were pretty good friends when they weren't in conflict with each other over political issues."], "correct answer": "He was even surprised to learn the men were pretty good friends when they weren't in conflict with each other over political issues.", "id": "6"}
8
  {"pretext": "Sentence : Ever since we met,she continued, we've been at loggerheads.\nHint : To be at loggerheads with someone means to be in conflict with them, which is what the sentence describes.", "options": ["Ever since we met, she continued, we've been in complete agreement with each other on everything.", "Ever since we met, she continued, we've been unable to agree with each other on anything."], "correct answer": "Ever since we met, she continued, we've been unable to agree with each other on anything.", "id": "7"}
@@ -391,6 +386,7 @@
391
  {"pretext": "Sentence : Months earlier, wade lanier had suggested, off the record, that the body be exhumed for toxicity tests.\nHint : To be off the record is to be unofficial and informal, which is what wade lanier was when he suggested the body be exhumed.", "options": ["Months earlier, wade lanier had suggested, officially and formally, that the body be exhumed for toxicity tests.", "Months earlier, wade lanier had suggested, unofficially and informally, that the body be exhumed for toxicity tests."], "correct answer": "Months earlier, wade lanier had suggested, unofficially and informally, that the body be exhumed for toxicity tests.", "id": "390"}
392
  {"pretext": "Sentence : Can we talk off the record?\u201d\nHint : To talk off the record is to talk informally and in confidence, without it being recorded for official publication.", "options": ["Can we talk in unofficially and informally in confidence?\u201d", "Can we talk for officially and publicly?."], "correct answer": "Can we talk in unofficially and informally in confidence?\u201d", "id": "391"}
393
  {"pretext": "Sentence : We use our own custom software, so we can offer much more precision than what you can find off the shelf.' , the CEO exclaimed\u201d\nHint : Off the shelf means that it is ready made for purchase and not custom built, and the context is saying that the precision offered is better than what is off the shelf aka readily available for purchase.", "options": ["We use our own custom software, so we can offer much more precision than what you can find in stores or commercially available.' , the CEO exclaimed\u201d", "We use our own custom software, so we can offer much more precision than what you can find if you were to build it yourself from scratch.' , the CEO exclaimed\u201d."], "correct answer": "We use our own custom software, so we can offer much more precision than what you can find in stores or commercially available.' , the CEO exclaimed\u201d", "id": "392"}
 
394
  {"pretext": "Sentence : Right off the top of your head, describe john.\nHint : To do something off the top of your head means to do it from memory or without much consideration, which is what the speaker is asking for.", "options": ["After giving it a lot of thought and careful consideration, describe John.", "Without giving it much thought or without careful consideration, describe John."], "correct answer": "Without giving it much thought or without careful consideration, describe John.", "id": "394"}
395
  {"pretext": "Sentence : Her favorite random moments began when she asked a question and it was answered with something off the wall like, miss williams, did you know that my brother got sick last night?\nHint : To be off the wall is to be strange, wacky or unusual, and in this context the person answering the question did something that was unusual.", "options": ["Her favorite random moments began when she asked a question and it was answered with something unusual or unexpected like, miss williams, did you know that my brother got sick last night?", "Her favorite random moments began when she asked a question and it was answered with something boring or expected like, miss williams, did you know that my brother got sick last night?."], "correct answer": "Her favorite random moments began when she asked a question and it was answered with something unusual or unexpected like, miss williams, did you know that my brother got sick last night?", "id": "395"}
396
  {"pretext": "Sentence : And that presupposes madison doesn't do something totally off the wall.\nHint : To do something off the wall is to do something strange or unusual, and in this context it is expected that Madison will do something crazy and unexpected.", "options": ["And that presupposes Madison doesn't do something expected and mundane.", "And that presupposes Madison doesn't do something crazy and unexpected."], "correct answer": "And that presupposes Madison doesn't do something crazy and unexpected.", "id": "396"}
@@ -737,6 +733,7 @@
737
  {"pretext": "Sentence : He swept aside my objections.\nHint : To sweep something aside means to dismiss it or ignore it.", "options": ["He removed aside my objections.", "It was disappointing to find out that my objections were put aside."], "correct answer": "It was disappointing to find out that my objections were put aside.", "id": "737"}
738
  {"pretext": "Sentence : He thinks these documents will leak out soon or late.\nHint : Leak out means that the information will be made public, either on purpose or by accident.", "options": ["He thinks these documents will never leak out.", "He thinks these documents will be disclosed in a few years or so."], "correct answer": "He thinks these documents will be disclosed in a few years or so.", "id": "738"}
739
  {"pretext": "Sentence : He was gripped with a terrible illness that killed him quickly.\nHint : Gripped with illness is used here to mean that something happend suddenly and violently, here, in this case, the man was hit with an illness that killed him quickly.", "options": ["He was stricken with a terrible illness that killed him so fast he had no chance to do anything.", "He was unaffected by the terrible illness but it still killed him."], "correct answer": "He was stricken with a terrible illness that killed him so fast he had no chance to do anything.", "id": "739"}
 
740
  {"pretext": "Sentence : He was slapped with a terrible illness that killed him quickly.\nHint : He was slapped with a terrible illness means he got a really bad illness.", "options": ["He got an illness which made him quickly die.", "He was unaffected by a terrible illness for several months but still died later."], "correct answer": "He got an illness which made him quickly die.", "id": "741"}
741
  {"pretext": "Sentence : He was so happy he felt his heart was exploding.\nHint : When people are extremely happy, they sometimes say they feel like their heart is going to explode.", "options": ["He was so happy that he felt his heart was imploding.", "He was so overwhelmed with happiness."], "correct answer": "He was so overwhelmed with happiness.", "id": "742"}
742
  {"pretext": "Sentence : Her face glowed when she came out of the sauna.\nHint : After taking a sauna bath, people's skin usually looks flushed and their face is covered in sweat.", "options": ["Her face was pale after she came out from the sauna. .", "Her face flushed because she just took a sauna bath."], "correct answer": "Her face flushed because she just took a sauna bath.", "id": "743"}
@@ -1178,6 +1175,7 @@
1178
  {"pretext": "Sentence : The wheel has come full circle.\nHint : The phrase the wheel has come full circle means that something has come back to its original state or position.", "options": ["The wheel has gone off its axis and everything changed now.", "Everything is back to the way it was before."], "correct answer": "Everything is back to the way it was before.", "id": "1179"}
1179
  {"pretext": "Sentence : well don't turn it on too loud , will you ?\nHint : This is a metaphor meaning don't do something to excess.", "options": ["well turn it on too loud , will you ?", "Will you please be careful when turning it on so it doesn't get too loud?"], "correct answer": "Will you please be careful when turning it on so it doesn't get too loud?", "id": "1180"}
1180
  {"pretext": "Sentence : some peaks of demand can be dealt with by external consultants.\nHint : Peaks in demand refers to times when there is a lot of demand for a product or service, here, in external consultants are used to mean that they are expert and you can get help to deal with these times.", "options": ["Some peaks in demand can be handled by bringing in some expert consultants.", "some peaks of demand can be dealt with by internal consultants."], "correct answer": "Some peaks in demand can be handled by bringing in some expert consultants.", "id": "1181"}
 
1181
  {"pretext": "Sentence : I have had enough of your melodrama.\nHint : Melodrama is a form of drama that is characterized by exaggerated emotions and characters.", "options": ["I've had it up to here with your emotional dramatics.", "Your untheatrical behavior has reached its limit."], "correct answer": "I've had it up to here with your emotional dramatics.", "id": "1183"}
1182
  {"pretext": "Sentence : back on jennifer or are you going out with michael ?\nHint : The person is asking if the other person is returning to an old relationship or starting a new one.", "options": ["you never stopped going out with Jennifer, right?", "Are you going out with Michael again or are you returning back to Jennifer?"], "correct answer": "Are you going out with Michael again or are you returning back to Jennifer?", "id": "1184"}
1183
  {"pretext": "Sentence : But their work is hindered by lack of money .\nHint : This is a metaphor meaning that the work is being impeded by a lack of financial resources.", "options": ["But their work is blocked by the fact that they don't have enough money.", "But their work is boosted by lack of money."], "correct answer": "But their work is blocked by the fact that they don't have enough money.", "id": "1185"}
@@ -1261,6 +1259,7 @@
1261
  {"pretext": "Sentence : A little stubble on his square jaw made him look like a roguish viking raider .\nHint : A viking raider is a wild and sexy individual, so the stubble on his jaw makes him look like one.", "options": ["The little bit of stubble on his jaw made him look wild and sexy.", "The little bit of stubble on his jaw made him look tame and unappealing."], "correct answer": "The little bit of stubble on his jaw made him look wild and sexy.", "id": "1263"}
1262
  {"pretext": "Sentence : The left side of his face was like a healing injury\nHint : A healing injury is one that is in the process of mending, and is usually swollen.", "options": ["The left side of his face was swollen.", "The left side of his face was smooth."], "correct answer": "The left side of his face was swollen.", "id": "1264"}
1263
  {"pretext": "Sentence : The atmosphere was like a funeral chamber for some big shot human being.\nHint : A funeral chamber is a place where someone has died, and is thus dark and mysterious.", "options": ["The atmosphere was dark and mysterious,", "The atmosphere was light and cheerful."], "correct answer": "The atmosphere was dark and mysterious,", "id": "1265"}
 
1264
  {"pretext": "Sentence : She is like a rare stone in a museum surrounded by laser lights.\nHint : A rare stone in a museum is something that is to be admired from a distance, and never touched.", "options": ["She is so damn untouchable", "She is so easily accessible"], "correct answer": "She is so damn untouchable", "id": "1267"}
1265
  {"pretext": "Sentence : The lid was stuck shut, and my entire face felt like a submerged corpse 's.\nHint : A corpse's face would be cold and puffy, and would have trouble opening its eyes (lids).", "options": ["My face felt cold and puffy, and the lid was stuck shut.", "My face felt warm and flat, and the lid was stuck shut."], "correct answer": "My face felt cold and puffy, and the lid was stuck shut.", "id": "1268"}
1266
  {"pretext": "Sentence : That is why it is so important to remain like a planted oak\nHint : An oak is a very strong, sturdy tree that can stay firm.", "options": ["That is why its essential to be pliant.", "That is why its essential to stay firm."], "correct answer": "That is why its essential to stay firm.", "id": "1269"}
@@ -1758,6 +1757,7 @@
1758
  {"pretext": "Sentence : I'm as honest as a used car salesman\nHint : A used car salesman is someone who is known for being dishonest, so the person is saying that they are not honest.", "options": ["I'm dishonest", "I'm honest"], "correct answer": "I'm dishonest", "id": "1761"}
1759
  {"pretext": "Sentence : I understand him as easy as ancient Greek\nHint : Ancinet Greek is a dead language so very few would understand it, hence the simile highlights how that speaker doesn't understand him", "options": ["I understand him", "I don't understand him"], "correct answer": "I don't understand him", "id": "1762"}
1760
  {"pretext": "Sentence : The woman's personality had as intriguing as oatmeal\nHint : Oatmeal is a really bland food, so the simile is saying that the woman's personality is just as bland.", "options": ["The woman had a really intriguing personality.", "The woman had a really dull personality."], "correct answer": "The woman had a really dull personality.", "id": "1763"}
 
1761
  {"pretext": "Sentence : You're loyal as Benedict Arnold\nHint : Benedict Arnold was a traitor, so to say someone is as loyal as Benedict Arnold would be to say that they are not loyal at all.", "options": ["You're disloyal", "You're loyal"], "correct answer": "You're disloyal", "id": "1765"}
1762
  {"pretext": "Sentence : The cat was as white as charcoal\nHint : White and black are opposite colors on the color spectrum and charcoal is usually black.", "options": ["The cat was white", "The cat was black"], "correct answer": "The cat was black", "id": "1766"}
1763
  {"pretext": "Sentence : You're as thin as a balloon\nHint : A balloon is filled with air, and is therefore very light.", "options": ["You're thin", "You're fat"], "correct answer": "You're fat", "id": "1767"}
 
 
 
 
 
 
1
  {"pretext": "Sentence : It seemed to take forever to return to the cricket field, but when they arrived, the battle was still going at full tilt.\nHint : At full tilt means to go as fast as possible, so the battle still going at full tilt means it was still going at maximum speed.", "options": ["It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on very slowly at the minimum possible speed.", "It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on at maximum speed"], "correct answer": "It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on at maximum speed", "id": "5"}
2
  {"pretext": "Sentence : He was even surprised to learn the men were pretty good friends when they weren't at loggerheads over political issues.\nHint : To be at loggerheads is to be in conflict with someone, and in this sentence the men are in conflict with each other over political issues.", "options": ["He was even surprised to learn the men were pretty good friends when they weren't in complete agreement with each other over political issues.", "He was even surprised to learn the men were pretty good friends when they weren't in conflict with each other over political issues."], "correct answer": "He was even surprised to learn the men were pretty good friends when they weren't in conflict with each other over political issues.", "id": "6"}
3
  {"pretext": "Sentence : Ever since we met,she continued, we've been at loggerheads.\nHint : To be at loggerheads with someone means to be in conflict with them, which is what the sentence describes.", "options": ["Ever since we met, she continued, we've been in complete agreement with each other on everything.", "Ever since we met, she continued, we've been unable to agree with each other on anything."], "correct answer": "Ever since we met, she continued, we've been unable to agree with each other on anything.", "id": "7"}
 
386
  {"pretext": "Sentence : Months earlier, wade lanier had suggested, off the record, that the body be exhumed for toxicity tests.\nHint : To be off the record is to be unofficial and informal, which is what wade lanier was when he suggested the body be exhumed.", "options": ["Months earlier, wade lanier had suggested, officially and formally, that the body be exhumed for toxicity tests.", "Months earlier, wade lanier had suggested, unofficially and informally, that the body be exhumed for toxicity tests."], "correct answer": "Months earlier, wade lanier had suggested, unofficially and informally, that the body be exhumed for toxicity tests.", "id": "390"}
387
  {"pretext": "Sentence : Can we talk off the record?\u201d\nHint : To talk off the record is to talk informally and in confidence, without it being recorded for official publication.", "options": ["Can we talk in unofficially and informally in confidence?\u201d", "Can we talk for officially and publicly?."], "correct answer": "Can we talk in unofficially and informally in confidence?\u201d", "id": "391"}
388
  {"pretext": "Sentence : We use our own custom software, so we can offer much more precision than what you can find off the shelf.' , the CEO exclaimed\u201d\nHint : Off the shelf means that it is ready made for purchase and not custom built, and the context is saying that the precision offered is better than what is off the shelf aka readily available for purchase.", "options": ["We use our own custom software, so we can offer much more precision than what you can find in stores or commercially available.' , the CEO exclaimed\u201d", "We use our own custom software, so we can offer much more precision than what you can find if you were to build it yourself from scratch.' , the CEO exclaimed\u201d."], "correct answer": "We use our own custom software, so we can offer much more precision than what you can find in stores or commercially available.' , the CEO exclaimed\u201d", "id": "392"}
389
+ {"pretext": "Sentence : You couldn't order right off the top of your head in a dennys.\nHint : To order off the top of your head means to do it from memory or without much consideration, so in this context it would mean ordering without giving it much thought.", "options": ["You couldn't order right in a dennys immediately and without thinking .", "You couldn't order right in a dennys after giving it some thought and consideration ."], "correct answer": "You couldn't order right in a dennys immediately and without thinking .", "id": "393"}
390
  {"pretext": "Sentence : Right off the top of your head, describe john.\nHint : To do something off the top of your head means to do it from memory or without much consideration, which is what the speaker is asking for.", "options": ["After giving it a lot of thought and careful consideration, describe John.", "Without giving it much thought or without careful consideration, describe John."], "correct answer": "Without giving it much thought or without careful consideration, describe John.", "id": "394"}
391
  {"pretext": "Sentence : Her favorite random moments began when she asked a question and it was answered with something off the wall like, miss williams, did you know that my brother got sick last night?\nHint : To be off the wall is to be strange, wacky or unusual, and in this context the person answering the question did something that was unusual.", "options": ["Her favorite random moments began when she asked a question and it was answered with something unusual or unexpected like, miss williams, did you know that my brother got sick last night?", "Her favorite random moments began when she asked a question and it was answered with something boring or expected like, miss williams, did you know that my brother got sick last night?."], "correct answer": "Her favorite random moments began when she asked a question and it was answered with something unusual or unexpected like, miss williams, did you know that my brother got sick last night?", "id": "395"}
392
  {"pretext": "Sentence : And that presupposes madison doesn't do something totally off the wall.\nHint : To do something off the wall is to do something strange or unusual, and in this context it is expected that Madison will do something crazy and unexpected.", "options": ["And that presupposes Madison doesn't do something expected and mundane.", "And that presupposes Madison doesn't do something crazy and unexpected."], "correct answer": "And that presupposes Madison doesn't do something crazy and unexpected.", "id": "396"}
 
733
  {"pretext": "Sentence : He swept aside my objections.\nHint : To sweep something aside means to dismiss it or ignore it.", "options": ["He removed aside my objections.", "It was disappointing to find out that my objections were put aside."], "correct answer": "It was disappointing to find out that my objections were put aside.", "id": "737"}
734
  {"pretext": "Sentence : He thinks these documents will leak out soon or late.\nHint : Leak out means that the information will be made public, either on purpose or by accident.", "options": ["He thinks these documents will never leak out.", "He thinks these documents will be disclosed in a few years or so."], "correct answer": "He thinks these documents will be disclosed in a few years or so.", "id": "738"}
735
  {"pretext": "Sentence : He was gripped with a terrible illness that killed him quickly.\nHint : Gripped with illness is used here to mean that something happend suddenly and violently, here, in this case, the man was hit with an illness that killed him quickly.", "options": ["He was stricken with a terrible illness that killed him so fast he had no chance to do anything.", "He was unaffected by the terrible illness but it still killed him."], "correct answer": "He was stricken with a terrible illness that killed him so fast he had no chance to do anything.", "id": "739"}
736
+ {"pretext": "Sentence : He was in a black mood.\nHint : Being in a black mood means being in a bad angry mood.", "options": ["He was happy and jolly.", "He kept on being very miserable, irritated, and angry."], "correct answer": "He kept on being very miserable, irritated, and angry.", "id": "740"}
737
  {"pretext": "Sentence : He was slapped with a terrible illness that killed him quickly.\nHint : He was slapped with a terrible illness means he got a really bad illness.", "options": ["He got an illness which made him quickly die.", "He was unaffected by a terrible illness for several months but still died later."], "correct answer": "He got an illness which made him quickly die.", "id": "741"}
738
  {"pretext": "Sentence : He was so happy he felt his heart was exploding.\nHint : When people are extremely happy, they sometimes say they feel like their heart is going to explode.", "options": ["He was so happy that he felt his heart was imploding.", "He was so overwhelmed with happiness."], "correct answer": "He was so overwhelmed with happiness.", "id": "742"}
739
  {"pretext": "Sentence : Her face glowed when she came out of the sauna.\nHint : After taking a sauna bath, people's skin usually looks flushed and their face is covered in sweat.", "options": ["Her face was pale after she came out from the sauna. .", "Her face flushed because she just took a sauna bath."], "correct answer": "Her face flushed because she just took a sauna bath.", "id": "743"}
 
1175
  {"pretext": "Sentence : The wheel has come full circle.\nHint : The phrase the wheel has come full circle means that something has come back to its original state or position.", "options": ["The wheel has gone off its axis and everything changed now.", "Everything is back to the way it was before."], "correct answer": "Everything is back to the way it was before.", "id": "1179"}
1176
  {"pretext": "Sentence : well don't turn it on too loud , will you ?\nHint : This is a metaphor meaning don't do something to excess.", "options": ["well turn it on too loud , will you ?", "Will you please be careful when turning it on so it doesn't get too loud?"], "correct answer": "Will you please be careful when turning it on so it doesn't get too loud?", "id": "1180"}
1177
  {"pretext": "Sentence : some peaks of demand can be dealt with by external consultants.\nHint : Peaks in demand refers to times when there is a lot of demand for a product or service, here, in external consultants are used to mean that they are expert and you can get help to deal with these times.", "options": ["Some peaks in demand can be handled by bringing in some expert consultants.", "some peaks of demand can be dealt with by internal consultants."], "correct answer": "Some peaks in demand can be handled by bringing in some expert consultants.", "id": "1181"}
1178
+ {"pretext": "Sentence : they never mentioned being germans.\nHint : This is a metaphor meaning that the person was never upfront about their nationality and kept it hidden.", "options": ["They never said that they are germans.", "They were always upfront that they are germans."], "correct answer": "They never said that they are germans.", "id": "1182"}
1179
  {"pretext": "Sentence : I have had enough of your melodrama.\nHint : Melodrama is a form of drama that is characterized by exaggerated emotions and characters.", "options": ["I've had it up to here with your emotional dramatics.", "Your untheatrical behavior has reached its limit."], "correct answer": "I've had it up to here with your emotional dramatics.", "id": "1183"}
1180
  {"pretext": "Sentence : back on jennifer or are you going out with michael ?\nHint : The person is asking if the other person is returning to an old relationship or starting a new one.", "options": ["you never stopped going out with Jennifer, right?", "Are you going out with Michael again or are you returning back to Jennifer?"], "correct answer": "Are you going out with Michael again or are you returning back to Jennifer?", "id": "1184"}
1181
  {"pretext": "Sentence : But their work is hindered by lack of money .\nHint : This is a metaphor meaning that the work is being impeded by a lack of financial resources.", "options": ["But their work is blocked by the fact that they don't have enough money.", "But their work is boosted by lack of money."], "correct answer": "But their work is blocked by the fact that they don't have enough money.", "id": "1185"}
 
1259
  {"pretext": "Sentence : A little stubble on his square jaw made him look like a roguish viking raider .\nHint : A viking raider is a wild and sexy individual, so the stubble on his jaw makes him look like one.", "options": ["The little bit of stubble on his jaw made him look wild and sexy.", "The little bit of stubble on his jaw made him look tame and unappealing."], "correct answer": "The little bit of stubble on his jaw made him look wild and sexy.", "id": "1263"}
1260
  {"pretext": "Sentence : The left side of his face was like a healing injury\nHint : A healing injury is one that is in the process of mending, and is usually swollen.", "options": ["The left side of his face was swollen.", "The left side of his face was smooth."], "correct answer": "The left side of his face was swollen.", "id": "1264"}
1261
  {"pretext": "Sentence : The atmosphere was like a funeral chamber for some big shot human being.\nHint : A funeral chamber is a place where someone has died, and is thus dark and mysterious.", "options": ["The atmosphere was dark and mysterious,", "The atmosphere was light and cheerful."], "correct answer": "The atmosphere was dark and mysterious,", "id": "1265"}
1262
+ {"pretext": "Sentence : All was like a winter morning after it had snowed all night.\nHint : A winter morning is silent and white because of the snow.", "options": ["All was loud and colorful", "All was silent and white"], "correct answer": "All was silent and white", "id": "1266"}
1263
  {"pretext": "Sentence : She is like a rare stone in a museum surrounded by laser lights.\nHint : A rare stone in a museum is something that is to be admired from a distance, and never touched.", "options": ["She is so damn untouchable", "She is so easily accessible"], "correct answer": "She is so damn untouchable", "id": "1267"}
1264
  {"pretext": "Sentence : The lid was stuck shut, and my entire face felt like a submerged corpse 's.\nHint : A corpse's face would be cold and puffy, and would have trouble opening its eyes (lids).", "options": ["My face felt cold and puffy, and the lid was stuck shut.", "My face felt warm and flat, and the lid was stuck shut."], "correct answer": "My face felt cold and puffy, and the lid was stuck shut.", "id": "1268"}
1265
  {"pretext": "Sentence : That is why it is so important to remain like a planted oak\nHint : An oak is a very strong, sturdy tree that can stay firm.", "options": ["That is why its essential to be pliant.", "That is why its essential to stay firm."], "correct answer": "That is why its essential to stay firm.", "id": "1269"}
 
1757
  {"pretext": "Sentence : I'm as honest as a used car salesman\nHint : A used car salesman is someone who is known for being dishonest, so the person is saying that they are not honest.", "options": ["I'm dishonest", "I'm honest"], "correct answer": "I'm dishonest", "id": "1761"}
1758
  {"pretext": "Sentence : I understand him as easy as ancient Greek\nHint : Ancinet Greek is a dead language so very few would understand it, hence the simile highlights how that speaker doesn't understand him", "options": ["I understand him", "I don't understand him"], "correct answer": "I don't understand him", "id": "1762"}
1759
  {"pretext": "Sentence : The woman's personality had as intriguing as oatmeal\nHint : Oatmeal is a really bland food, so the simile is saying that the woman's personality is just as bland.", "options": ["The woman had a really intriguing personality.", "The woman had a really dull personality."], "correct answer": "The woman had a really dull personality.", "id": "1763"}
1760
+ {"pretext": "Sentence : The game is as fun as a grey park\nHint : A grey park is a dull, uninteresting place - in other words, it is boring.", "options": ["The game is fun", "The game is boring"], "correct answer": "The game is boring", "id": "1764"}
1761
  {"pretext": "Sentence : You're loyal as Benedict Arnold\nHint : Benedict Arnold was a traitor, so to say someone is as loyal as Benedict Arnold would be to say that they are not loyal at all.", "options": ["You're disloyal", "You're loyal"], "correct answer": "You're disloyal", "id": "1765"}
1762
  {"pretext": "Sentence : The cat was as white as charcoal\nHint : White and black are opposite colors on the color spectrum and charcoal is usually black.", "options": ["The cat was white", "The cat was black"], "correct answer": "The cat was black", "id": "1766"}
1763
  {"pretext": "Sentence : You're as thin as a balloon\nHint : A balloon is filled with air, and is therefore very light.", "options": ["You're thin", "You're fat"], "correct answer": "You're fat", "id": "1767"}
task_9/dev.jsonl CHANGED
@@ -1,5 +1,5 @@
1
- {"pretext": "Sentence : Joe, after being pushed and nudged, rolls his cold crampy body, like a a memfoam mattress, into a sitting position.\nHint : A mattress is hard to move or carry, hence it is unwiedly and not nimble", "options": ["Joe, after being pushed and nudged, rolls his cold crampy body nimbly.", "Joe, after being pushed and nudged, rolls his cold crampy body unwieldy"], "correct answer": "Joe, after being pushed and nudged, rolls his cold crampy body unwieldy", "id": "1442"}
2
- {"pretext": "Sentence : As gandalf always says, when in doubt, peregrin took, follow your nose.\nHint : To follow your nose means to trust one's instinct, but in this sentence Peregrin ignored his instincts", "options": ["As gandalf always says, when in doubt, peregrin took, ignored his instincts and went against his gut feeling.", "As gandalf always says, when in doubt, peregrin took, trusted his instincts and went with his gut feeling."], "correct answer": "As gandalf always says, when in doubt, peregrin took, trusted his instincts and went with his gut feeling.", "id": "142"}
3
- {"pretext": "Sentence : That's chicken feed.\nHint : Chicken feed refers to a very small or minuscule amount of money, but this sentence refers to a lot of money.", "options": ["That's peanuts.", "That's a lot of money."], "correct answer": "That's peanuts.", "id": "93"}
4
- {"pretext": "Sentence : The demons were closing in, but I was like an old man on a park bench, feeding pigeons on a warm summer afternoon.\nHint : An old man on a park bench, feeding pigeons on a warm summer afternoon remains is typically someone who is calm and not frantic", "options": ["Even though the demons were closing in, I remained calm.", "Even though the demons were closing in, I became frantic."], "correct answer": "Even though the demons were closing in, I remained calm.", "id": "1354"}
5
- {"pretext": "Sentence : The slight pinch was a slow but sure reminder.\nHint : To be slow but sure means to be gradual but yielding steady dependable progress, but in this context the reminder was fast and fleeting", "options": ["The slight pinch was a gradual and certain reminder.", "The slight pinch was a fast and fleeting reminder."], "correct answer": "The slight pinch was a gradual and certain reminder.", "id": "466"}
 
1
+ {"pretext": "Sentence : To add insult to injury, a boy was leading a handsome sheep on a string behind him.\nHint : To add insult to injury means to make a bad situation worse, but in this sentence the boy leading the sheep makes the situation better.", "options": ["To make things worse, a boy was leading a handsome sheep on a string behind him.", "In order to make things a lot better, a boy was leading a handsome sheep on a string behind him."], "correct answer": "To make things worse, a boy was leading a handsome sheep on a string behind him.", "id": "0"}
2
+ {"pretext": "Sentence : Oh, you know how it is, mother, when you spend the night having sex with an old flame in public, you just glow a little bit more than usual.\nHint : An old flame is a former lover, but spending the night with an absolute stranger would not make sense and would not cause one to glow", "options": ["Oh, you know how it is, mother, when you spend the night having sex with a former lover in public, you just glow a little bit more than usual.", "Oh, you know how it is, mother, when you spend the night having sex with an absolute stranger in public, you just glow a little bit more than usual."], "correct answer": "Oh, you know how it is, mother, when you spend the night having sex with a former lover in public, you just glow a little bit more than usual.", "id": "1"}
3
+ {"pretext": "Sentence : Definitely a good person, but one could tell she believes in the flower power, power of the people and all that jazz from kilometers away.\nHint : And all that jazz means and everything else, but in this sentence it is saying that she only believes in flower power and power of the people and nothing else", "options": ["Definitely a good person, but one could tell she believes in the flower power, power of the people and a lot of other things as well from kilometers away.", "Definitely a good person, but one could tell she believes in the flower power, power of the people and nothing else."], "correct answer": "Definitely a good person, but one could tell she believes in the flower power, power of the people and a lot of other things as well from kilometers away.", "id": "2"}
4
+ {"pretext": "Sentence : To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice and all that jazz.\nHint : And all that jazz means and everything else, but in this sentence it is referring to nothing else that is related to being a warden in D.C.", "options": ["To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice and nothing else that is related.", "To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice as well as everything else that is related."], "correct answer": "To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice as well as everything else that is related.", "id": "3"}
5
+ {"pretext": "Sentence : He would smash into it at full tilt.\nHint : To be at full tilt means to be going as fast as possible, but in this sentence he would smash into it slowly", "options": ["He would smash into it as fast as he could.", "He would smash into it as slowly as he could."], "correct answer": "He would smash into it as fast as he could.", "id": "4"}
task_9/test.jsonl CHANGED
@@ -1,8 +1,3 @@
1
- {"pretext": "Sentence : To add insult to injury, a boy was leading a handsome sheep on a string behind him.\nHint : To add insult to injury means to make a bad situation worse, but in this sentence the boy leading the sheep makes the situation better.", "options": ["To make things worse, a boy was leading a handsome sheep on a string behind him.", "In order to make things a lot better, a boy was leading a handsome sheep on a string behind him."], "correct answer": "To make things worse, a boy was leading a handsome sheep on a string behind him.", "id": "0"}
2
- {"pretext": "Sentence : Oh, you know how it is, mother, when you spend the night having sex with an old flame in public, you just glow a little bit more than usual.\nHint : An old flame is a former lover, but spending the night with an absolute stranger would not make sense and would not cause one to glow", "options": ["Oh, you know how it is, mother, when you spend the night having sex with a former lover in public, you just glow a little bit more than usual.", "Oh, you know how it is, mother, when you spend the night having sex with an absolute stranger in public, you just glow a little bit more than usual."], "correct answer": "Oh, you know how it is, mother, when you spend the night having sex with a former lover in public, you just glow a little bit more than usual.", "id": "1"}
3
- {"pretext": "Sentence : Definitely a good person, but one could tell she believes in the flower power, power of the people and all that jazz from kilometers away.\nHint : And all that jazz means and everything else, but in this sentence it is saying that she only believes in flower power and power of the people and nothing else", "options": ["Definitely a good person, but one could tell she believes in the flower power, power of the people and a lot of other things as well from kilometers away.", "Definitely a good person, but one could tell she believes in the flower power, power of the people and nothing else."], "correct answer": "Definitely a good person, but one could tell she believes in the flower power, power of the people and a lot of other things as well from kilometers away.", "id": "2"}
4
- {"pretext": "Sentence : To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice and all that jazz.\nHint : And all that jazz means and everything else, but in this sentence it is referring to nothing else that is related to being a warden in D.C.", "options": ["To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice and nothing else that is related.", "To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice as well as everything else that is related."], "correct answer": "To ask what's it like to be a warden in d.c., Hunting down the bad guys and bringing them to justice as well as everything else that is related.", "id": "3"}
5
- {"pretext": "Sentence : He would smash into it at full tilt.\nHint : To be at full tilt means to be going as fast as possible, but in this sentence he would smash into it slowly", "options": ["He would smash into it as fast as he could.", "He would smash into it as slowly as he could."], "correct answer": "He would smash into it as fast as he could.", "id": "4"}
6
  {"pretext": "Sentence : It seemed to take forever to return to the cricket field, but when they arrived, the battle was still going at full tilt.\nHint : At full tilt means to go as fast as possible, but in this sentence the battle was going very slowly", "options": ["It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on very slowly at the minimum possible speed.", "It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on at maximum speed"], "correct answer": "It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on at maximum speed", "id": "5"}
7
  {"pretext": "Sentence : He was even surprised to learn the men were pretty good friends when they weren't at loggerheads over political issues.\nHint : To be at loggerheads is to be in conflict with someone, but in this sentence the men are in agreement with each other over political issues.", "options": ["He was even surprised to learn the men were pretty good friends when they weren't in complete agreement with each other over political issues.", "He was even surprised to learn the men were pretty good friends when they weren't in conflict with each other over political issues."], "correct answer": "He was even surprised to learn the men were pretty good friends when they weren't in conflict with each other over political issues.", "id": "6"}
8
  {"pretext": "Sentence : Ever since we met,she continued, we've been at loggerheads.\nHint : To be at loggerheads with someone means to be in conflict with them, but the sentence describes being in complete agreement", "options": ["Ever since we met, she continued, we've been in complete agreement with each other on everything.", "Ever since we met, she continued, we've been unable to agree with each other on anything."], "correct answer": "Ever since we met, she continued, we've been unable to agree with each other on anything.", "id": "7"}
@@ -91,6 +86,7 @@
91
  {"pretext": "Sentence : He saw totally decrepit, brightly painted buses belching smoke and fumes cheek by jowl with hummers and BMWs.\nHint : To be cheek by jowl is to be positioned very close together, but in this sentence the buses and cars are positioned far away from each other.", "options": ["He saw totally decrepit, brightly painted buses belching smoke and fumes positioned far away from hummers and BMWs.", "He saw totally decrepit, brightly painted buses belching smoke and fumes positioned right next to hummers and BMWs."], "correct answer": "He saw totally decrepit, brightly painted buses belching smoke and fumes positioned right next to hummers and BMWs.", "id": "90"}
92
  {"pretext": "Sentence : However I've been chewing my cud, so I still haven't decided whether I'm taking the job or not.\nHint : To chew the cud means to contemplate something, but in this sentence the speaker has only been thinking about the job for minutes", "options": ["I've been thinking about this for minutes, so I still haven't decided whether I'm taking the job or not.", "I've been thinking about this for days, so I still haven't decided whether I'm taking the job or not."], "correct answer": "I've been thinking about this for days, so I still haven't decided whether I'm taking the job or not.", "id": "91"}
93
  {"pretext": "Sentence : He mentioned that his inheritance made Jonathan/Elliott's look like chicken feed.\nHint : Chicken feed is a small amount of money, but this sentence describes the inheritance making Jonathan/Elliott's look like a very large amount of money.", "options": ["He mentioned that his inheritance made Jonathan/Elliott's look like a very large amount of money.", "He mentioned that his inheritance made Jonathan/Elliott's look like a very small amount of money."], "correct answer": "He mentioned that his inheritance made Jonathan/Elliott's look like a very small amount of money.", "id": "92"}
 
94
  {"pretext": "Sentence : Jane: The chickens have come home to roost, I see.\nHint : The idiom chickens come home to roost means that you have to face the consequences of your mistakes or bad deeds, but in this sentence the consequences are positive", "options": ["Jane: The positive consequences of your actions have come back to reward you, I see.", "Jane: The negative consequences of your actions have come back to haunt you, I see."], "correct answer": "Jane: The negative consequences of your actions have come back to haunt you, I see.", "id": "94"}
95
  {"pretext": "Sentence : I was on my second drink, it looked like open mic night was going to crash and burn.\nHint : To crash and burn means to fail at something completely and dramatically, but in this sentence it looked like open mic night was going to succeed.", "options": ["I was on my second drink, it looked like open mic night was going to fail miserably and be a complete disaster.", "I was on my second drink, it looked like open mic night was going to succeed greatly and be a huge success."], "correct answer": "I was on my second drink, it looked like open mic night was going to fail miserably and be a complete disaster.", "id": "95"}
96
  {"pretext": "Sentence : If we have to see it crash and burn, we 'll still do it supporting you.\nHint : To crash and burn means to fail at something completely and dramatically, but in this sentence they describe the opposite of failing, which is succeeding.", "options": ["If we have to see it succeed greatly and continue on, we'll still do it supporting you.", "If we have to see it fail miserably and come to an end, we'll still do it supporting you."], "correct answer": "If we have to see it fail miserably and come to an end, we'll still do it supporting you.", "id": "96"}
@@ -139,6 +135,7 @@
139
  {"pretext": "Sentence : They'd rather buy Yank or Scandinavian\u2026no wonder Scotland's down the pan.\nHint : To be down the pan means to reach a stage of abject failure or uselessness, but in this sentence it is clear that Scotland is succeeding.", "options": ["They'd rather buy Yank or Scandinavian\u2026no wonder Scotland's succeeding greatly.", "They'd rather buy Yank or Scandinavian\u2026no wonder Scotland's failing miserably."], "correct answer": "They'd rather buy Yank or Scandinavian\u2026no wonder Scotland's failing miserably.", "id": "139"}
140
  {"pretext": "Sentence : Her tears decided to follow suit.\nHint : To follow suit means to follow in the same pattern, but in this sentence the tears decided to do the opposite", "options": ["Her tears decided to follow the example.", "Her tears decided to contradict the example."], "correct answer": "Her tears decided to follow the example.", "id": "140"}
141
  {"pretext": "Sentence : If you want fresh food, just follow your noses and you will find villagers happy to sell or trade what they have.\nHint : To follow your nose means to trust one's instinct, but in this sentence you would need to ignore your gut feeling to find fresh food", "options": ["If you want fresh food, just ignore your gut feeling and you will find villagers happy to sell or trade what they have.", "If you want fresh food, just go with your gut feeling and you will find villagers happy to sell or trade what they have."], "correct answer": "If you want fresh food, just go with your gut feeling and you will find villagers happy to sell or trade what they have.", "id": "141"}
 
142
  {"pretext": "Sentence : But I was, it perplexed me and gave me food for thought as I made my way back outside the club.\nHint : To give food for thought is to give someone something to think about, but this sentence describes the person being given nothing to think about", "options": ["But I was, it puzzled me and gave me nothing to think about as I made my way back outside the club.", "But I was, it puzzled me and gave me something to think about as I made my way back outside the club."], "correct answer": "But I was, it puzzled me and gave me something to think about as I made my way back outside the club.", "id": "143"}
143
  {"pretext": "Sentence : Now there was food for thought.\nHint : The idiom food for thought means something for someone to think about, but in this sentence there is nothing for the person to think about.", "options": ["Now there was something to think about.", "Now there was nothing to think about."], "correct answer": "Now there was something to think about.", "id": "144"}
144
  {"pretext": "Sentence : Foy offered to foot the bill to bring him to midstate as soon as possible.\nHint : To foot the bill means to pay for something, but this sentence describes Foy offering to lend money instead", "options": ["Foy offered to lend money to bring him to midstate as soon as possible.", "Foy offered to pay for to bring him to midstate as soon as possible."], "correct answer": "Foy offered to pay for to bring him to midstate as soon as possible.", "id": "145"}
@@ -462,6 +459,7 @@
462
  {"pretext": "Sentence : Hopefully, the claim would slip through the net, but if it didn't she was in even more trouble.\nHint : To slip through the net means to go unnoticed or be neglected, but in this context it would be better if the claim was noticed", "options": ["If the claim went unnoticed or was neglected, she would be in less trouble.", "Hopefully, the claim would go unnoticed or be neglected, but if it didn't she was in even more trouble."], "correct answer": "Hopefully, the claim would go unnoticed or be neglected, but if it didn't she was in even more trouble.", "id": "463"}
463
  {"pretext": "Sentence : You know how this place is; it's a slippery slope to the bottom.\nHint : A slippery slope is a situation where some behavior or action will eventually lead to a worse form of the same behavior or action or a disastrous outcome, but this context describes a situation where it will lead to a better outcome.", "options": ["You know how this place is; it's a situation where some behavior or action will eventually lead to a better form of the same behavior or action or a positive outcome.", "You know how this place is; it's a situation where some behavior or action will eventually lead to a worse form of the same behavior or action or a disastrous outcome."], "correct answer": "You know how this place is; it's a situation where some behavior or action will eventually lead to a worse form of the same behavior or action or a disastrous outcome.", "id": "464"}
464
  {"pretext": "Sentence : The album sale went from some kind of spontaneous combustion to a slow burn.\nHint : A slow burn is a gradual development, but the album sale went from a spontaneous combustion to a sudden development.", "options": ["The album sale went from some kind of spontaneous combustion to a very quick and sudden development.", "The album sale went from some kind of spontaneous combustion to a slow and gradual development."], "correct answer": "The album sale went from some kind of spontaneous combustion to a slow and gradual development.", "id": "465"}
 
465
  {"pretext": "Sentence : With slow but sure movements, he edged across the finely-fitted hardwood floor towards the place of fire.\nHint : Slow but sure means slow or incremental but yielding steady dependable progress, but in this context the movements were rapid and impulsive", "options": ["With rapid and impulsive movements, he edged across the finely-fitted hardwood floor towards the place of fire.", "With slow but certain movements, he edged across the finely-fitted hardwood floor towards the place of fire."], "correct answer": "With slow but certain movements, he edged across the finely-fitted hardwood floor towards the place of fire.", "id": "467"}
466
  {"pretext": "Sentence : English earls were small beer by comparison to the margraves.\nHint : To be small beer means to be unimportant and trivial, but in this context English earls are actually the most important people when compared to margraves.", "options": ["English earls were very unimportant and trivial when compared to the margraves.", "English earls were the most important people when compared to the margraves."], "correct answer": "English earls were very unimportant and trivial when compared to the margraves.", "id": "468"}
467
  {"pretext": "Sentence : And he handed them each a warm pie and small beer from his own jug, then left them to eat while he rearranged his wares.\nHint : To give someone small beer is to give them a tiny, trifling amount of beer, but in this context he gave them the full jug of beer.", "options": ["And he handed them each a warm pie and the full jug of beer, then left them to eat while he rearranged his wares.", "And he handed them each a warm pie and small amount of beer from his own jug, then left them to eat while he rearranged his wares."], "correct answer": "And he handed them each a warm pie and small amount of beer from his own jug, then left them to eat while he rearranged his wares.", "id": "469"}
@@ -1349,6 +1347,7 @@
1349
  {"pretext": "Sentence : Jake tried to pull the crystal off the battery to silence the phone, but it was stuck like a barnacle to a rusty ship.\nHint : A barnacle is a small marine crustacean that attaches itself to a ship's hull, and is very difficult to remove", "options": ["Jake tried to remove the crystal from the battery to silence the phone, but it was stuck tight.", "Jake tried to remove the crystal from the battery to silence the phone, but it was loose."], "correct answer": "Jake tried to remove the crystal from the battery to silence the phone, but it was stuck tight.", "id": "1351"}
1350
  {"pretext": "Sentence : Terradyn took a long time to answer, and with a voice like a blazing comet.\nHint : A comet is a large, celestial object that is often far away, so saying someone's voice is like a blazing comet would imply that the person's voice can be heard vaguely from far away", "options": ["Terradyn took a long time to answer, and his voice sounded distant.", "Terradyn took a long time to answer, and his voice sounded close."], "correct answer": "Terradyn took a long time to answer, and his voice sounded distant.", "id": "1352"}
1351
  {"pretext": "Sentence : She glided to him, like a ballet dancer.\nHint : A ballet dancer is light on their feet and moves gracefully, whereas someone who lumbers is heavy and moves awkwardly", "options": ["She glided to him, gracefully", "She lumbered to him, clumsily"], "correct answer": "She glided to him, gracefully", "id": "1353"}
 
1352
  {"pretext": "Sentence : He was like a butterfly in autumn, waiting to be destroyed by the first frost.\nHint : A butterfly in autumn is close to the end of its life, and is not strong and sturdy", "options": ["He was fragile", "He was strong and sturdy."], "correct answer": "He was fragile", "id": "1355"}
1353
  {"pretext": "Sentence : i see it now,\" she said, her voice like a breeze rustling through the wildflowers.\nHint : A soft breeze rustling through wildflowers would be a gentle sound, whereas a loud voice would sound harsh", "options": ["I understand,\" she said quietly.", "I understand,\" she said loudly."], "correct answer": "I understand,\" she said quietly.", "id": "1356"}
1354
  {"pretext": "Sentence : He was wired like a champagne cork.\nHint : A champagne cork is under a lot of pressure, and is about to burst open, implying that the person is under a lot of pressure and is about to explode, not relax", "options": ["He was wired tight", "He was relaxed"], "correct answer": "He was wired tight", "id": "1357"}
@@ -1436,6 +1435,7 @@
1436
  {"pretext": "Sentence : The thin, sick face of the tartar in the pearl hood resembled a crazy hawk .\nHint : A hawk is a predatory bird, known for being fierce and brave, whereas a coward is the opposite", "options": ["The thin, sick face of the tartar in the pearl hood remained fierce and steadfast .", "The thin, sick face of the tartar in the pearl hood remained weak and cowardly."], "correct answer": "The thin, sick face of the tartar in the pearl hood remained fierce and steadfast .", "id": "1439"}
1437
  {"pretext": "Sentence : But they still freak me out, which is why I was like a five-year old child in a grown man's arms.\nHint : A five-year old child would be small and would have to be held in a grown man's arms, whereas if the person is standing up, they are not small", "options": ["But they still freak me out, which is why I was currently curled up", "But they still freak me out, which is why I was currently standing up."], "correct answer": "But they still freak me out, which is why I was currently curled up", "id": "1440"}
1438
  {"pretext": "Sentence : The blood that came out was like the night\nHint : A night is black, not red", "options": ["The blood that oozed out was black.", "The blood that oozed out was red."], "correct answer": "The blood that oozed out was black.", "id": "1441"}
 
1439
  {"pretext": "Sentence : In puebla, the sauce was like liquid tar\nHint : Tar is a thick, black substance, whereas water is thin and clear, so the sauce being like liquid tar would indicate it is thick, not thin and watery", "options": ["In puebla, the sauce was nearly black, and thick", "In puebla, the sauce was light and watery."], "correct answer": "In puebla, the sauce was nearly black, and thick", "id": "1443"}
1440
  {"pretext": "Sentence : Darcy had a reputation for being like a butterfly gathering nectar .\nHint : Butterflies are known for flitting from flower to flower, gathering nectar, and not being committed to one flower, whereas Darcy was known for being committed to one man, not flitting around", "options": ["Darcy had a reputation for being floating from one man to the next .", "Darcy had a reputation for being committed to one man at a time."], "correct answer": "Darcy had a reputation for being floating from one man to the next .", "id": "1444"}
1441
  {"pretext": "Sentence : The room was like an underground warehouse\nHint : A warehouse is a large storage space, so saying the room was like a warehouse would mean it is a large space, not tiny", "options": ["The room was cavernous", "The room was tiny."], "correct answer": "The room was cavernous", "id": "1445"}
 
 
 
 
 
 
1
  {"pretext": "Sentence : It seemed to take forever to return to the cricket field, but when they arrived, the battle was still going at full tilt.\nHint : At full tilt means to go as fast as possible, but in this sentence the battle was going very slowly", "options": ["It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on very slowly at the minimum possible speed.", "It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on at maximum speed"], "correct answer": "It felt like forever to come back to the cricket field, but when they arrived, the battle was still going on at maximum speed", "id": "5"}
2
  {"pretext": "Sentence : He was even surprised to learn the men were pretty good friends when they weren't at loggerheads over political issues.\nHint : To be at loggerheads is to be in conflict with someone, but in this sentence the men are in agreement with each other over political issues.", "options": ["He was even surprised to learn the men were pretty good friends when they weren't in complete agreement with each other over political issues.", "He was even surprised to learn the men were pretty good friends when they weren't in conflict with each other over political issues."], "correct answer": "He was even surprised to learn the men were pretty good friends when they weren't in conflict with each other over political issues.", "id": "6"}
3
  {"pretext": "Sentence : Ever since we met,she continued, we've been at loggerheads.\nHint : To be at loggerheads with someone means to be in conflict with them, but the sentence describes being in complete agreement", "options": ["Ever since we met, she continued, we've been in complete agreement with each other on everything.", "Ever since we met, she continued, we've been unable to agree with each other on anything."], "correct answer": "Ever since we met, she continued, we've been unable to agree with each other on anything.", "id": "7"}
 
86
  {"pretext": "Sentence : He saw totally decrepit, brightly painted buses belching smoke and fumes cheek by jowl with hummers and BMWs.\nHint : To be cheek by jowl is to be positioned very close together, but in this sentence the buses and cars are positioned far away from each other.", "options": ["He saw totally decrepit, brightly painted buses belching smoke and fumes positioned far away from hummers and BMWs.", "He saw totally decrepit, brightly painted buses belching smoke and fumes positioned right next to hummers and BMWs."], "correct answer": "He saw totally decrepit, brightly painted buses belching smoke and fumes positioned right next to hummers and BMWs.", "id": "90"}
87
  {"pretext": "Sentence : However I've been chewing my cud, so I still haven't decided whether I'm taking the job or not.\nHint : To chew the cud means to contemplate something, but in this sentence the speaker has only been thinking about the job for minutes", "options": ["I've been thinking about this for minutes, so I still haven't decided whether I'm taking the job or not.", "I've been thinking about this for days, so I still haven't decided whether I'm taking the job or not."], "correct answer": "I've been thinking about this for days, so I still haven't decided whether I'm taking the job or not.", "id": "91"}
88
  {"pretext": "Sentence : He mentioned that his inheritance made Jonathan/Elliott's look like chicken feed.\nHint : Chicken feed is a small amount of money, but this sentence describes the inheritance making Jonathan/Elliott's look like a very large amount of money.", "options": ["He mentioned that his inheritance made Jonathan/Elliott's look like a very large amount of money.", "He mentioned that his inheritance made Jonathan/Elliott's look like a very small amount of money."], "correct answer": "He mentioned that his inheritance made Jonathan/Elliott's look like a very small amount of money.", "id": "92"}
89
+ {"pretext": "Sentence : That's chicken feed.\nHint : Chicken feed refers to a very small or minuscule amount of money, but this sentence refers to a lot of money.", "options": ["That's peanuts.", "That's a lot of money."], "correct answer": "That's peanuts.", "id": "93"}
90
  {"pretext": "Sentence : Jane: The chickens have come home to roost, I see.\nHint : The idiom chickens come home to roost means that you have to face the consequences of your mistakes or bad deeds, but in this sentence the consequences are positive", "options": ["Jane: The positive consequences of your actions have come back to reward you, I see.", "Jane: The negative consequences of your actions have come back to haunt you, I see."], "correct answer": "Jane: The negative consequences of your actions have come back to haunt you, I see.", "id": "94"}
91
  {"pretext": "Sentence : I was on my second drink, it looked like open mic night was going to crash and burn.\nHint : To crash and burn means to fail at something completely and dramatically, but in this sentence it looked like open mic night was going to succeed.", "options": ["I was on my second drink, it looked like open mic night was going to fail miserably and be a complete disaster.", "I was on my second drink, it looked like open mic night was going to succeed greatly and be a huge success."], "correct answer": "I was on my second drink, it looked like open mic night was going to fail miserably and be a complete disaster.", "id": "95"}
92
  {"pretext": "Sentence : If we have to see it crash and burn, we 'll still do it supporting you.\nHint : To crash and burn means to fail at something completely and dramatically, but in this sentence they describe the opposite of failing, which is succeeding.", "options": ["If we have to see it succeed greatly and continue on, we'll still do it supporting you.", "If we have to see it fail miserably and come to an end, we'll still do it supporting you."], "correct answer": "If we have to see it fail miserably and come to an end, we'll still do it supporting you.", "id": "96"}
 
135
  {"pretext": "Sentence : They'd rather buy Yank or Scandinavian\u2026no wonder Scotland's down the pan.\nHint : To be down the pan means to reach a stage of abject failure or uselessness, but in this sentence it is clear that Scotland is succeeding.", "options": ["They'd rather buy Yank or Scandinavian\u2026no wonder Scotland's succeeding greatly.", "They'd rather buy Yank or Scandinavian\u2026no wonder Scotland's failing miserably."], "correct answer": "They'd rather buy Yank or Scandinavian\u2026no wonder Scotland's failing miserably.", "id": "139"}
136
  {"pretext": "Sentence : Her tears decided to follow suit.\nHint : To follow suit means to follow in the same pattern, but in this sentence the tears decided to do the opposite", "options": ["Her tears decided to follow the example.", "Her tears decided to contradict the example."], "correct answer": "Her tears decided to follow the example.", "id": "140"}
137
  {"pretext": "Sentence : If you want fresh food, just follow your noses and you will find villagers happy to sell or trade what they have.\nHint : To follow your nose means to trust one's instinct, but in this sentence you would need to ignore your gut feeling to find fresh food", "options": ["If you want fresh food, just ignore your gut feeling and you will find villagers happy to sell or trade what they have.", "If you want fresh food, just go with your gut feeling and you will find villagers happy to sell or trade what they have."], "correct answer": "If you want fresh food, just go with your gut feeling and you will find villagers happy to sell or trade what they have.", "id": "141"}
138
+ {"pretext": "Sentence : As gandalf always says, when in doubt, peregrin took, follow your nose.\nHint : To follow your nose means to trust one's instinct, but in this sentence Peregrin ignored his instincts", "options": ["As gandalf always says, when in doubt, peregrin took, ignored his instincts and went against his gut feeling.", "As gandalf always says, when in doubt, peregrin took, trusted his instincts and went with his gut feeling."], "correct answer": "As gandalf always says, when in doubt, peregrin took, trusted his instincts and went with his gut feeling.", "id": "142"}
139
  {"pretext": "Sentence : But I was, it perplexed me and gave me food for thought as I made my way back outside the club.\nHint : To give food for thought is to give someone something to think about, but this sentence describes the person being given nothing to think about", "options": ["But I was, it puzzled me and gave me nothing to think about as I made my way back outside the club.", "But I was, it puzzled me and gave me something to think about as I made my way back outside the club."], "correct answer": "But I was, it puzzled me and gave me something to think about as I made my way back outside the club.", "id": "143"}
140
  {"pretext": "Sentence : Now there was food for thought.\nHint : The idiom food for thought means something for someone to think about, but in this sentence there is nothing for the person to think about.", "options": ["Now there was something to think about.", "Now there was nothing to think about."], "correct answer": "Now there was something to think about.", "id": "144"}
141
  {"pretext": "Sentence : Foy offered to foot the bill to bring him to midstate as soon as possible.\nHint : To foot the bill means to pay for something, but this sentence describes Foy offering to lend money instead", "options": ["Foy offered to lend money to bring him to midstate as soon as possible.", "Foy offered to pay for to bring him to midstate as soon as possible."], "correct answer": "Foy offered to pay for to bring him to midstate as soon as possible.", "id": "145"}
 
459
  {"pretext": "Sentence : Hopefully, the claim would slip through the net, but if it didn't she was in even more trouble.\nHint : To slip through the net means to go unnoticed or be neglected, but in this context it would be better if the claim was noticed", "options": ["If the claim went unnoticed or was neglected, she would be in less trouble.", "Hopefully, the claim would go unnoticed or be neglected, but if it didn't she was in even more trouble."], "correct answer": "Hopefully, the claim would go unnoticed or be neglected, but if it didn't she was in even more trouble.", "id": "463"}
460
  {"pretext": "Sentence : You know how this place is; it's a slippery slope to the bottom.\nHint : A slippery slope is a situation where some behavior or action will eventually lead to a worse form of the same behavior or action or a disastrous outcome, but this context describes a situation where it will lead to a better outcome.", "options": ["You know how this place is; it's a situation where some behavior or action will eventually lead to a better form of the same behavior or action or a positive outcome.", "You know how this place is; it's a situation where some behavior or action will eventually lead to a worse form of the same behavior or action or a disastrous outcome."], "correct answer": "You know how this place is; it's a situation where some behavior or action will eventually lead to a worse form of the same behavior or action or a disastrous outcome.", "id": "464"}
461
  {"pretext": "Sentence : The album sale went from some kind of spontaneous combustion to a slow burn.\nHint : A slow burn is a gradual development, but the album sale went from a spontaneous combustion to a sudden development.", "options": ["The album sale went from some kind of spontaneous combustion to a very quick and sudden development.", "The album sale went from some kind of spontaneous combustion to a slow and gradual development."], "correct answer": "The album sale went from some kind of spontaneous combustion to a slow and gradual development.", "id": "465"}
462
+ {"pretext": "Sentence : The slight pinch was a slow but sure reminder.\nHint : To be slow but sure means to be gradual but yielding steady dependable progress, but in this context the reminder was fast and fleeting", "options": ["The slight pinch was a gradual and certain reminder.", "The slight pinch was a fast and fleeting reminder."], "correct answer": "The slight pinch was a gradual and certain reminder.", "id": "466"}
463
  {"pretext": "Sentence : With slow but sure movements, he edged across the finely-fitted hardwood floor towards the place of fire.\nHint : Slow but sure means slow or incremental but yielding steady dependable progress, but in this context the movements were rapid and impulsive", "options": ["With rapid and impulsive movements, he edged across the finely-fitted hardwood floor towards the place of fire.", "With slow but certain movements, he edged across the finely-fitted hardwood floor towards the place of fire."], "correct answer": "With slow but certain movements, he edged across the finely-fitted hardwood floor towards the place of fire.", "id": "467"}
464
  {"pretext": "Sentence : English earls were small beer by comparison to the margraves.\nHint : To be small beer means to be unimportant and trivial, but in this context English earls are actually the most important people when compared to margraves.", "options": ["English earls were very unimportant and trivial when compared to the margraves.", "English earls were the most important people when compared to the margraves."], "correct answer": "English earls were very unimportant and trivial when compared to the margraves.", "id": "468"}
465
  {"pretext": "Sentence : And he handed them each a warm pie and small beer from his own jug, then left them to eat while he rearranged his wares.\nHint : To give someone small beer is to give them a tiny, trifling amount of beer, but in this context he gave them the full jug of beer.", "options": ["And he handed them each a warm pie and the full jug of beer, then left them to eat while he rearranged his wares.", "And he handed them each a warm pie and small amount of beer from his own jug, then left them to eat while he rearranged his wares."], "correct answer": "And he handed them each a warm pie and small amount of beer from his own jug, then left them to eat while he rearranged his wares.", "id": "469"}
 
1347
  {"pretext": "Sentence : Jake tried to pull the crystal off the battery to silence the phone, but it was stuck like a barnacle to a rusty ship.\nHint : A barnacle is a small marine crustacean that attaches itself to a ship's hull, and is very difficult to remove", "options": ["Jake tried to remove the crystal from the battery to silence the phone, but it was stuck tight.", "Jake tried to remove the crystal from the battery to silence the phone, but it was loose."], "correct answer": "Jake tried to remove the crystal from the battery to silence the phone, but it was stuck tight.", "id": "1351"}
1348
  {"pretext": "Sentence : Terradyn took a long time to answer, and with a voice like a blazing comet.\nHint : A comet is a large, celestial object that is often far away, so saying someone's voice is like a blazing comet would imply that the person's voice can be heard vaguely from far away", "options": ["Terradyn took a long time to answer, and his voice sounded distant.", "Terradyn took a long time to answer, and his voice sounded close."], "correct answer": "Terradyn took a long time to answer, and his voice sounded distant.", "id": "1352"}
1349
  {"pretext": "Sentence : She glided to him, like a ballet dancer.\nHint : A ballet dancer is light on their feet and moves gracefully, whereas someone who lumbers is heavy and moves awkwardly", "options": ["She glided to him, gracefully", "She lumbered to him, clumsily"], "correct answer": "She glided to him, gracefully", "id": "1353"}
1350
+ {"pretext": "Sentence : The demons were closing in, but I was like an old man on a park bench, feeding pigeons on a warm summer afternoon.\nHint : An old man on a park bench, feeding pigeons on a warm summer afternoon remains is typically someone who is calm and not frantic", "options": ["Even though the demons were closing in, I remained calm.", "Even though the demons were closing in, I became frantic."], "correct answer": "Even though the demons were closing in, I remained calm.", "id": "1354"}
1351
  {"pretext": "Sentence : He was like a butterfly in autumn, waiting to be destroyed by the first frost.\nHint : A butterfly in autumn is close to the end of its life, and is not strong and sturdy", "options": ["He was fragile", "He was strong and sturdy."], "correct answer": "He was fragile", "id": "1355"}
1352
  {"pretext": "Sentence : i see it now,\" she said, her voice like a breeze rustling through the wildflowers.\nHint : A soft breeze rustling through wildflowers would be a gentle sound, whereas a loud voice would sound harsh", "options": ["I understand,\" she said quietly.", "I understand,\" she said loudly."], "correct answer": "I understand,\" she said quietly.", "id": "1356"}
1353
  {"pretext": "Sentence : He was wired like a champagne cork.\nHint : A champagne cork is under a lot of pressure, and is about to burst open, implying that the person is under a lot of pressure and is about to explode, not relax", "options": ["He was wired tight", "He was relaxed"], "correct answer": "He was wired tight", "id": "1357"}
 
1435
  {"pretext": "Sentence : The thin, sick face of the tartar in the pearl hood resembled a crazy hawk .\nHint : A hawk is a predatory bird, known for being fierce and brave, whereas a coward is the opposite", "options": ["The thin, sick face of the tartar in the pearl hood remained fierce and steadfast .", "The thin, sick face of the tartar in the pearl hood remained weak and cowardly."], "correct answer": "The thin, sick face of the tartar in the pearl hood remained fierce and steadfast .", "id": "1439"}
1436
  {"pretext": "Sentence : But they still freak me out, which is why I was like a five-year old child in a grown man's arms.\nHint : A five-year old child would be small and would have to be held in a grown man's arms, whereas if the person is standing up, they are not small", "options": ["But they still freak me out, which is why I was currently curled up", "But they still freak me out, which is why I was currently standing up."], "correct answer": "But they still freak me out, which is why I was currently curled up", "id": "1440"}
1437
  {"pretext": "Sentence : The blood that came out was like the night\nHint : A night is black, not red", "options": ["The blood that oozed out was black.", "The blood that oozed out was red."], "correct answer": "The blood that oozed out was black.", "id": "1441"}
1438
+ {"pretext": "Sentence : Joe, after being pushed and nudged, rolls his cold crampy body, like a a memfoam mattress, into a sitting position.\nHint : A mattress is hard to move or carry, hence it is unwiedly and not nimble", "options": ["Joe, after being pushed and nudged, rolls his cold crampy body nimbly.", "Joe, after being pushed and nudged, rolls his cold crampy body unwieldy"], "correct answer": "Joe, after being pushed and nudged, rolls his cold crampy body unwieldy", "id": "1442"}
1439
  {"pretext": "Sentence : In puebla, the sauce was like liquid tar\nHint : Tar is a thick, black substance, whereas water is thin and clear, so the sauce being like liquid tar would indicate it is thick, not thin and watery", "options": ["In puebla, the sauce was nearly black, and thick", "In puebla, the sauce was light and watery."], "correct answer": "In puebla, the sauce was nearly black, and thick", "id": "1443"}
1440
  {"pretext": "Sentence : Darcy had a reputation for being like a butterfly gathering nectar .\nHint : Butterflies are known for flitting from flower to flower, gathering nectar, and not being committed to one flower, whereas Darcy was known for being committed to one man, not flitting around", "options": ["Darcy had a reputation for being floating from one man to the next .", "Darcy had a reputation for being committed to one man at a time."], "correct answer": "Darcy had a reputation for being floating from one man to the next .", "id": "1444"}
1441
  {"pretext": "Sentence : The room was like an underground warehouse\nHint : A warehouse is a large storage space, so saying the room was like a warehouse would mean it is a large space, not tiny", "options": ["The room was cavernous", "The room was tiny."], "correct answer": "The room was cavernous", "id": "1445"}