jiangjiechen commited on
Commit
3e5f708
1 Parent(s): 09ad03b

init datasets

Browse files
Files changed (6) hide show
  1. .gitignore +1 -0
  2. README.md +194 -3
  3. test_blind.json +262 -0
  4. test_easy_blind.json +0 -0
  5. train.json +0 -0
  6. validation.json +0 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
1
+ .DS_Store
README.md CHANGED
@@ -1,3 +1,194 @@
1
- ---
2
- license: afl-3.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ languages:
3
+ - en
4
+ licenses:
5
+ - afl-3.0
6
+ size_categories:
7
+ - 1K<n<2K
8
+ source_datasets:
9
+ - original
10
+ task_categories:
11
+ - question-answering
12
+ - text-generation
13
+ task_ids:
14
+ - analogical-qa
15
+ - explanation-generation
16
+ ---
17
+
18
+ # Dataset Card for ekar_english
19
+
20
+ ## Table of Contents
21
+ - [Dataset Description](#dataset-description)
22
+ - [Dataset Summary](#dataset-summary)
23
+ - [Supported Tasks](#supported-tasks-and-leaderboards)
24
+ - [Languages](#languages)
25
+ - [Dataset Structure](#dataset-structure)
26
+ - [Data Instances](#data-instances)
27
+ - [Data Fields](#data-instances)
28
+ - [Data Splits](#data-instances)
29
+ - [Dataset Creation](#dataset-creation)
30
+ - [Curation Rationale](#curation-rationale)
31
+ - [Source Data](#source-data)
32
+ - [Annotations](#annotations)
33
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
34
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
35
+ - [Social Impact of Dataset](#social-impact-of-dataset)
36
+ - [Discussion of Biases](#discussion-of-biases)
37
+ - [Other Known Limitations](#other-known-limitations)
38
+ - [Additional Information](#additional-information)
39
+ - [Dataset Curators](#dataset-curators)
40
+ - [Licensing Information](#licensing-information)
41
+ - [Citation Information](#citation-information)
42
+
43
+ ## Dataset Description
44
+
45
+ - **Homepage:** https://jiangjiechen.github.io/publication/ekar/
46
+ - **Repository:** https://github.com/jiangjiechen/E-KAR
47
+ - **Paper:** [E-KAR: A Benchmark for Rationalizing Natural Language Analogical Reasoning](https://arxiv.org/abs/2203.08480)
48
+ - **Leaderboard:** https://ekar-leaderboard.github.io
49
+ - **Point of Contact:** jjchen19@fudan.edu.cn
50
+
51
+ ### Dataset Summary
52
+
53
+ The ability to recognize analogies is fundamental to human cognition. Existing benchmarks to test word analogy do not reveal the underneath process of analogical reasoning of neural models. Holding the belief that models capable of reasoning should be right for the right reasons, we propose a first-of-its-kind Explainable Knowledge-intensive Analogical Reasoning benchmark (E-KAR). Our benchmark consists of 1,655 (in Chinese) and 1,251 (in English) problems sourced from the Civil Service Exams, which require intensive background knowledge to solve. More importantly, we design a free-text explanation scheme to explain whether an analogy should be drawn, and manually annotate them for each and every question and candidate answer. Empirical results suggest that this benchmark is very challenging for some state-of-the-art models for both explanation generation and analogical question answering tasks, which invites further research in this area.
54
+
55
+ ### Supported Tasks and Leaderboards
56
+
57
+ - `analogical-qa`: The dataset can be used to train a model for analogical reasoning in the form of multiple-choice QA.
58
+ - `explanation-generation`: The dataset can be used to generate free-text explanations to rationalize analogical reasoning.
59
+
60
+ This dataset supports two task modes: EASY mode and HARD mode:
61
+ - `EASY mode`: where query explanation can be used as part of the input.
62
+ - `HARD mode`: no explanation is allowed as part of the input.
63
+
64
+ ### Languages
65
+
66
+ This dataset is in English, which is translated from [its Chinese version](https://huggingface.co/datasets/Jiangjie/ekar_chinese/)
67
+
68
+ ## Dataset Structure
69
+
70
+ ### Data Instances
71
+
72
+ ```json
73
+ {
74
+ "id": "982f17-en",
75
+ "question": "plant:coal",
76
+ "choices": {
77
+ "label": [
78
+ "A",
79
+ "B",
80
+ "C",
81
+ "D"
82
+ ],
83
+ "text": [
84
+ "white wine:aged vinegar",
85
+ "starch:corn",
86
+ "milk:yogurt",
87
+ "pickled cabbage:cabbage"
88
+ ]
89
+ },
90
+ "answerKey": "C",
91
+ "explanation": [
92
+ "\"plant\" is the raw material of \"coal\".",
93
+ "both \"white wine\" and \"aged vinegar\" are brewed.",
94
+ "\"starch\" is made of \"corn\", and the order of words is inconsistent with the query.",
95
+ "\"yogurt\" is made from \"milk\".",
96
+ "\"pickled cabbage\" is made of \"cabbage\", and the word order is inconsistent with the query."
97
+ ],
98
+ "relation": [
99
+ [["plant", "coal", "R3.7"]],
100
+ [["white wine", "aged vinegar", "R2.4"]],
101
+ [["corn", "starch", "R3.7"]],
102
+ [["milk", "yogurt", "R3.7"]],
103
+ [["cabbage", "pickled cabbage", "R3.7"]]
104
+ ]
105
+ }
106
+ ```
107
+
108
+
109
+ ### Data Fields
110
+
111
+ - id: a string identifier for each example.
112
+ - question: query terms.
113
+ - choices: candidate answer terms.
114
+ - answerKey: correct answer.
115
+ - explanation: explanations for query (1st) and candidate answers (2nd-5th).
116
+ - relation: annotated relations for terms in the query (1st) and candidate answers (2nd-5th).
117
+
118
+ ### Data Splits
119
+
120
+ | name |train|validation|test_blind|test_easy_blind|
121
+ |:-----:|:---:|:--------:|:--:|:--:|
122
+ |default| 870| 119| 262| 262 |
123
+ |description| | | without query explanations (for HARD mode) | with query explanations (for EASY mode) |
124
+
125
+ ## Dataset Creation
126
+
127
+ ### Curation Rationale
128
+
129
+ [Needs More Information]
130
+
131
+ ### Source Data
132
+
133
+ #### Initial Data Collection and Normalization
134
+
135
+ [Needs More Information]
136
+
137
+ #### Who are the source language producers?
138
+
139
+ [Needs More Information]
140
+
141
+ ### Annotations
142
+
143
+ #### Annotation process
144
+
145
+ [Needs More Information]
146
+
147
+ #### Who are the annotators?
148
+
149
+ [Needs More Information]
150
+
151
+ ### Personal and Sensitive Information
152
+
153
+ [Needs More Information]
154
+
155
+ ## Considerations for Using the Data
156
+
157
+ ### Social Impact of Dataset
158
+
159
+ The purpose of this dataset is to help develop analogical reasoning systems that are right for the right reasons.
160
+
161
+ ### Discussion of Biases
162
+
163
+ This dataset is sourced and translated from the Civil Service Examinations of China. Therefore, despite the effort that the authors try to remove or rewrite such problems, it may still contain information biased to Chinese culture.
164
+
165
+ ### Other Known Limitations
166
+
167
+ 1. The explanation annotation process in E-KAR (not the EG task) is mostly post-hoc and reflects only the result of reasoning. Humans solve the analogy problems in a trial-and-error manner, i.e., adjusting the abduced source structure and trying to find the most suited one for all candidate answers. Therefore, such explanations cannot offer supervision for intermediate reasoning.
168
+
169
+ 2. E-KAR only presents one feasible explanation for each problem, whereas there may be several.
170
+
171
+ 3. The English version of E-KAR is machine-translated and post-edited by humans. Although the authors have tried their best to maintain the translation quality, there could be some unsatisfying samples in the English dataset, e.g., culture-specific ones, ambiguous ones after translation, etc.
172
+
173
+ ## Additional Information
174
+
175
+ ### Dataset Curators
176
+
177
+ The dataset was initially created and curated by Jiangjie Chen (Fudan University, ByteDance), Rui Xu (Fudan University), Ziquan Fu (Brain Technologies, Inc.), Wei Shi (South China University of Technology), Xinbo Zhang (ByteDance), Changzhi Sun (ByteDance) and other colleagues at ByteDance and Fudan University.
178
+
179
+ ### Licensing Information
180
+
181
+ [Needs More Information]
182
+
183
+ ### Citation Information
184
+
185
+ ```latex
186
+ @misc{chen2022ekar,
187
+ title={E-KAR: A Benchmark for Rationalizing Natural Language Analogical Reasoning},
188
+ author={Jiangjie Chen and Rui Xu and Ziquan Fu and Wei Shi and Zhongqiao Li and Xinbo Zhang and Changzhi Sun and Lei Li and Yanghua Xiao and Hao Zhou},
189
+ year={2022},
190
+ eprint={2203.08480},
191
+ archivePrefix={arXiv},
192
+ primaryClass={cs.CL}
193
+ }
194
+ ```
test_blind.json ADDED
@@ -0,0 +1,262 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"id": "bb6b40-en", "question": "paddy:rice", "choices": {"label": ["A", "B", "C", "D"], "text": ["walnut:walnut crisp", "cotton:cotton seed", "watermelon:melon seeds", "peanut:peanut butter"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
2
+ {"id": "1af9fe-en", "question": "principal:teacher", "choices": {"label": ["A", "B", "C", "D"], "text": ["police:thief", "manager:staff", "teacher:student", "doctor:nurse"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
3
+ {"id": "27a640-en", "question": "youth:village officials:grassroots training", "choices": {"label": ["A", "B", "C", "D"], "text": ["party history:national history", "workers:farmers:wealth creation", "scholars:confucian businessmen:market struggle", "heroine:hero:competing on the same stage"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
4
+ {"id": "abc747-en", "question": "police:civil servants", "choices": {"label": ["A", "B", "C", "D"], "text": ["white people:women", "cotton:cottonseed", "football:sports", "dance:act"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
5
+ {"id": "3a3cb3-en", "question": "sick:medicine", "choices": {"label": ["A", "B", "C", "D"], "text": ["emptiness:faith", "confused:understand", "thunderstorm:gale", "sad:happy"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
6
+ {"id": "0e810b-en", "question": "admire:respect", "choices": {"label": ["A", "B", "C", "D"], "text": ["like:adore", "oppression:exploitation", "spouse:husband and wife", "relatives:neighbors"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
7
+ {"id": "c1730a-en", "question": "firewall:isolation network", "choices": {"label": ["A", "B", "C", "D"], "text": ["radiator:electric blanket", "watch:compass", "memory:calculator", "kongming lantern:energy saving lamp"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
8
+ {"id": "1d704b-en", "question": "flower blush:bees:collecting honey", "choices": {"label": ["A", "B", "C", "D"], "text": ["restaurant:chef:cook", "farmland:farmer:harvest", "universe:star:run", "woods:willow:sprouting"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
9
+ {"id": "4cd587-en", "question": "production:quality inspection:sales", "choices": {"label": ["A", "B", "C", "D"], "text": ["go to school:preview:review", "investigate:organize:analyze", "supervision:improvement:efficiency", "jobless:poverty:relief"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
10
+ {"id": "8eddf7-en", "question": "reading:studying", "choices": {"label": ["A", "B", "C", "D"], "text": ["harvest:cultivation", "inheritance:propagation", "induction:summary", "war:campaign"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
11
+ {"id": "85c7d5-en", "question": "nicotine:cigarettes", "choices": {"label": ["A", "B", "C", "D"], "text": ["honey:biscuits", "smokable methamphetamine:drugs", "sugar:sugar cane", "radishes:vegetables"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
12
+ {"id": "5f5279-en", "question": "foul:free throw", "choices": {"label": ["A", "B", "C", "D"], "text": ["plagiarism:warning", "refuel:drive", "cold:take medicine", "injury:bandage"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
13
+ {"id": "8e69db-en", "question": "alarm clock:clockwork:time", "choices": {"label": ["A", "B", "C", "D"], "text": ["microorganisms:bacteria:decomposition", "tool:pliers:repair", "air conditioner:compressor:refrigeration", "potatoes:carbohydrates:nutrition"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
14
+ {"id": "5b889c-en", "question": "ceramics:teacups", "choices": {"label": ["A", "B", "C", "D"], "text": ["silver:necklace", "clay:potted", "goose feather:coat", "steel:automotive"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
15
+ {"id": "d5d70e-en", "question": "up:down", "choices": {"label": ["A", "B", "C", "D"], "text": ["country road:highway", "yali pear:snow pear", "joy:sorrow", "common year:leap year"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
16
+ {"id": "efed0f-en", "question": "photo:memorial", "choices": {"label": ["A", "B", "C", "D"], "text": ["document:confidential", "antiques:collect", "diary:record", "books:check"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
17
+ {"id": "cb677d-en", "question": "customs:inspection:tariff", "choices": {"label": ["A", "B", "C", "D"], "text": ["optical cable:communication:network speed", "filtration:purification:drinking", "forest:oxygen:health", "desert:camel:transport"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
18
+ {"id": "472f2b-en", "question": "parade:troops:base", "choices": {"label": ["A", "B", "C", "D"], "text": ["consumption:guest:hotel", "interview:representative:venue", "training:staff:position", "casting net:fisherman:sea"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
19
+ {"id": "937e9b-en", "question": "brand:loyalty", "choices": {"label": ["A", "B", "C", "D"], "text": ["label:callout", "boutique:value", "rumor:lie", "culture:identity"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
20
+ {"id": "5548ed-en", "question": "wechat:qq:msn", "choices": {"label": ["A", "B", "C", "D"], "text": ["scanner:printer:cartridge", "sohu:sina:netease", "stamp:mail:mailbox", "computer:mouse:display"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
21
+ {"id": "acca4c-en", "question": "bow:guns:war", "choices": {"label": ["A", "B", "C", "D"], "text": ["brush:fountain pen:calligraphy", "carriage:car:transportation", "book:computer:learning", "radio:television:propaganda"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
22
+ {"id": "328e33-en", "question": "candle:electric light", "choices": {"label": ["A", "B", "C", "D"], "text": ["abacus:computer", "carrier pigeon:telegraph", "firecrackers:muskets", "television:movies"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
23
+ {"id": "74f908-en", "question": "father:daughter", "choices": {"label": ["A", "B", "C", "D"], "text": ["uncle:aunt", "son:son-in-law", "uncle:aunt", "maternal grandfather:mother"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
24
+ {"id": "a61868-en", "question": "oxygen:breathing", "choices": {"label": ["A", "B", "C", "D"], "text": ["watch:time", "brain:thinking", "sun:lighting", "weapon:war"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
25
+ {"id": "eb9d1d-en", "question": "sculpture:painting", "choices": {"label": ["A", "B", "C", "D"], "text": ["government:democracy", "politics:faith", "mechanics:optics", "samples:examples"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
26
+ {"id": "a88664-en", "question": "pen:ballpoint pen:pencil", "choices": {"label": ["A", "B", "C", "D"], "text": ["soap:saponin:toilet soap", "steel scale:weighing scale:bench scale", "table:stool:chair", "gas stove:tv:washing machine"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
27
+ {"id": "0b13e2-en", "question": "comparison:analysis", "choices": {"label": ["A", "B", "C", "D"], "text": ["appreciation:evaluation", "planting:breeding", "prosperity:development", "aid:fund"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
28
+ {"id": "f24e3a-en", "question": "platform:pier:parking apron", "choices": {"label": ["A", "B", "C", "D"], "text": ["cash:check:bank card", "software:hardware:internet", "coat:wedding dress:down jacket", "actor:crowd:host"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
29
+ {"id": "2bf6b0-en", "question": "government affairs:official documents", "choices": {"label": ["A", "B", "C", "D"], "text": ["advertisement:tv", "brand:product", "market:demand", "schedule:plan"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
30
+ {"id": "42139b-en", "question": "call for papers:review:publishing", "choices": {"label": ["A", "B", "C", "D"], "text": ["assembly:repair:scrap", "submission for review:opening title:graduation", "separation:launch:orbit", "painting:on display:framed"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
31
+ {"id": "0be88d-en", "question": "b-ultrasound:ultrasound:diagnosis", "choices": {"label": ["A", "B", "C", "D"], "text": ["radar:antenna:detection", "camera:negative:photography", "refrigerator:refrigerant:refrigeration", "computer:display:work"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
32
+ {"id": "b4613f-en", "question": "ash:ashtray", "choices": {"label": ["A", "B", "C", "D"], "text": ["blackboard:blackboard eraser", "mouse:mousepad", "jewelry:jewelry box", "tie:tie clip"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
33
+ {"id": "0f63b5-en", "question": "pipe:tobacco", "choices": {"label": ["A", "B", "C", "D"], "text": ["wine cabinet:moutai", "windows:daylighting", "glass:beer", "smoke:smoking"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
34
+ {"id": "7ac1e7-en", "question": "bowl:water cup", "choices": {"label": ["A", "B", "C", "D"], "text": ["glass:schoolbag", "light:candle", "sofa:bed", "computer:entertainment"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
35
+ {"id": "6426ab-en", "question": "rice:grain", "choices": {"label": ["A", "B", "C", "D"], "text": ["textbook:school", "television:air conditioner", "sunshine:rain and dew", "elephant:animal"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
36
+ {"id": "6c0822-en", "question": "eye chart:glasses", "choices": {"label": ["A", "B", "C", "D"], "text": ["electronic scales:food", "treadmill:fat", "thermometer:antipyretic", "ct machine:tumor"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
37
+ {"id": "4a079a-en", "question": "dogs, pigs, chickens:doghouse, sty, kenhouse", "choices": {"label": ["A", "B", "C", "D"], "text": ["father, mother, male child:dad, mom, son", "color, sound, flavor:eyes, ears, nose", "fish, shrimp, crab:lake, sea, river", "building, house, roof:roof, beam, tent"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
38
+ {"id": "c40666-en", "question": "metrics:adjust", "choices": {"label": ["A", "B", "C", "D"], "text": ["future:looked forward", "ideal:to achieve", "meeting:postponed", "strength:enhanced"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
39
+ {"id": "5dd9be-en", "question": "mobile:landline:contact", "choices": {"label": ["A", "B", "C", "D"], "text": ["spaceship:rocket:missile", "air conditioner:refrigerator:temperature", "advertisement:slogan:propaganda", "atomic bomb:hydrogen bomb:scientists"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
40
+ {"id": "16b1f0-en", "question": "approval:review:declaration", "choices": {"label": ["A", "B", "C", "D"], "text": ["cooking:chopping:washing vegetables", "running:walking:crawling", "leave early:arrive late:check in", "healed:treatment:injured"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
41
+ {"id": "9d1dfc-en", "question": "plastic:container", "choices": {"label": ["A", "B", "C", "D"], "text": ["lime:cement", "ceramic:tableware", "pier:bridge", "timber:wood"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
42
+ {"id": "e4ba3b-en", "question": "shooting:pistol", "choices": {"label": ["A", "B", "C", "D"], "text": ["stabbing:dagger", "throwing:stone", "fail:escape", "bullet:wounded"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
43
+ {"id": "9b935d-en", "question": "bee:honey", "choices": {"label": ["A", "B", "C", "D"], "text": ["butterfly:cocoon pupa", "hen:egg", "father:child", "farmers:food"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
44
+ {"id": "aa5b10-en", "question": "computer:e-mail:photo", "choices": {"label": ["A", "B", "C", "D"], "text": ["brush:chinese painting:copybook", "truck:goods:refrigerator", "air conditioner:temperature:cold air", "mobile:text message:multimedia message"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
45
+ {"id": "2c324b-en", "question": "male doctor:female professor:professor", "choices": {"label": ["A", "B", "C", "D"], "text": ["politician:litterateur:writer", "irrational numbers:positive integers:positive numbers", "electric vehicle:refrigerator:electric appliance", "highway bridge:railway bridge:bridge"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
46
+ {"id": "c0d80c-en", "question": "worker:gear:mechanical watch", "choices": {"label": ["A", "B", "C", "D"], "text": ["poets:poems:publications", "teacher:textbook:top students", "painter:brush:painting", "cook:flour:steamed bread"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
47
+ {"id": "c6e505-en", "question": "student:military training:physical fitness", "choices": {"label": ["A", "B", "C", "D"], "text": ["patient:treatment:health", "farmer:increase yield:grain", "cadres:development:country", "institution:change:harmony"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
48
+ {"id": "af008f-en", "question": "loans:banks", "choices": {"label": ["A", "B", "C", "D"], "text": ["medical record:patient", "mail:post office", "fire:fire truck", "ticket:traffic police"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
49
+ {"id": "0c34ed-en", "question": "traffic lights:traffic", "choices": {"label": ["A", "B", "C", "D"], "text": ["airport:security check", "cell phone:call", "ministry of education:students", "switch:current"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
50
+ {"id": "d85418-en", "question": "buying tickets:boarding:arriving", "choices": {"label": ["A", "B", "C", "D"], "text": ["production:circulation:consumption", "getting acquainted:falling in love:getting married", "research:survey:summary", "applying:reviewing:winning"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
51
+ {"id": "c701d5-en", "question": "judgment:audition", "choices": {"label": ["A", "B", "C", "D"], "text": ["rescue and disaster relief:aftermath", "performance:audience", "macro control:fiscal policy", "meeting:learning"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
52
+ {"id": "ae983a-en", "question": "ritual:inscription", "choices": {"label": ["A", "B", "C", "D"], "text": ["stock market:stocks", "books:headnotes", "cabinet:prime minister", "ship:route"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
53
+ {"id": "1d8e22-en", "question": "high school students:college students:graduate students", "choices": {"label": ["A", "B", "C", "D"], "text": ["youth:middle age:old age", "morning light:blazing sunshine:the setting sun", "plateau:remote mountain:ravine", "moon phase:the waxing moon:the waning moon"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
54
+ {"id": "c5fd29-en", "question": "vibration:frequency", "choices": {"label": ["A", "B", "C", "D"], "text": ["value:price", "time:money", "moving:speed", "sun:temperature"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
55
+ {"id": "10dfb2-en", "question": "sheep:livestock:grassland", "choices": {"label": ["A", "B", "C", "D"], "text": ["fish and shrimp:seafood:lake water", "books:desk:school", "bird:chirping:woods", "white duck:poultry:river pond"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
56
+ {"id": "8c3f2e-en", "question": "rain:drought", "choices": {"label": ["A", "B", "C", "D"], "text": ["sunshine:damp", "haze:cold", "hurricane:disaster", "hail:farmland"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
57
+ {"id": "0d2d05-en", "question": "planning:implementation:acceptance", "choices": {"label": ["A", "B", "C", "D"], "text": ["litigation:trial:evidence collection", "sales:promotion:production", "bid:bid opening:bidding", "sowing:management:harvest"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
58
+ {"id": "818be2-en", "question": "upland crops:food crops:high yielding crops", "choices": {"label": ["A", "B", "C", "D"], "text": ["industrial alcohol:edible alcohol:medical alcohol", "people's daily:guangming daily:jiefang daily", "leading figures:news figures:public figures", "vertebrates:mammals:higher animals"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
59
+ {"id": "abb04d-en", "question": "earth:north pole", "choices": {"label": ["A", "B", "C", "D"], "text": ["planet:moon", "insects:mosquitoes", "united nations:china", "book:cover"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
60
+ {"id": "83648e-en", "question": "chalk:blackboard", "choices": {"label": ["A", "B", "C", "D"], "text": ["mouse:keyboard", "skate:runway", "key:gate", "battlefield:general"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
61
+ {"id": "dff412-en", "question": "fruit:apple", "choices": {"label": ["A", "B", "C", "D"], "text": ["bergamot pear:yellow pear", "trees:branches", "bmw:mercedes-benz", "mountain:high mountain"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
62
+ {"id": "583cba-en", "question": "food:vegetables:green foods", "choices": {"label": ["A", "B", "C", "D"], "text": ["movies:historical movies:science fiction", "china:haikou city:hainan province", "maps:traffic maps:monochrome maps", "peacock:green peacock:blue peacock"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
63
+ {"id": "7465de-en", "question": "willow:plant:gardener", "choices": {"label": ["A", "B", "C", "D"], "text": ["pen:pencil:student", "car:train:driver", "trees:woods:birds", "milk cows:cows:herders"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
64
+ {"id": "08c9d5-en", "question": "disc:burn:storage", "choices": {"label": ["A", "B", "C", "D"], "text": ["bulb:power on:lighting", "paper:print:read", "satellite:launch:communication", "cloth:cut:keep out the cold"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
65
+ {"id": "47e7b4-en", "question": "triangle:area", "choices": {"label": ["A", "B", "C", "D"], "text": ["trapezoid:tetrahedron", "line segment:circle", "cube:volume", "area:volume"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
66
+ {"id": "07509e-en", "question": "dawn:early morning", "choices": {"label": ["A", "B", "C", "D"], "text": ["mist:desert", "youth:remembrance", "moon:night", "mushroom:rain"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
67
+ {"id": "736b23-en", "question": "football:sports", "choices": {"label": ["A", "B", "C", "D"], "text": ["college student:student", "watermelon:fruit", "fox:animal", "mahjong:entertainment"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
68
+ {"id": "19e212-en", "question": "clay:calcination:ceramic", "choices": {"label": ["A", "B", "C", "D"], "text": ["peat:combustion:thermal energy", "jade:carving:ornament", "students:learning:talent", "grain:fermentation:china-baijiu"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
69
+ {"id": "933a71-en", "question": "investment:stocks", "choices": {"label": ["A", "B", "C", "D"], "text": ["savings:bonds", "bonds:treasury bonds", "listed company:securities company", "securities:liabilities"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
70
+ {"id": "46d87a-en", "question": "bonus:reward:incentive", "choices": {"label": ["A", "B", "C", "D"], "text": ["review:exam:graduate", "calligraphy:music:art", "discount:promotion:competition", "failure:success:growth"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
71
+ {"id": "efabba-en", "question": "sprayer:pesticides", "choices": {"label": ["A", "B", "C", "D"], "text": ["electric vehicles:batteries", "scabbard:sword", "cd:data", "bookcase:books"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
72
+ {"id": "7e302b-en", "question": "respect:reverence", "choices": {"label": ["A", "B", "C", "D"], "text": ["bare:to endure", "understand:know", "tired:drowsy", "shake:loose"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
73
+ {"id": "c4c28e-en", "question": "cultural relics:architecture", "choices": {"label": ["A", "B", "C", "D"], "text": ["cooking:seasoning", "the forbidden city:buildings", "poet:professor", "leather shoes:cloth shoes"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
74
+ {"id": "7e7c6b-en", "question": "america:san francisco", "choices": {"label": ["A", "B", "C", "D"], "text": ["korea:busan", "france:sahara", "germany:venice", "japan:honolulu"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
75
+ {"id": "aa1089-en", "question": "process:review", "choices": {"label": ["A", "B", "C", "D"], "text": ["assembly:attend", "strength:enhance", "vitality:show", "speed:accelerate"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
76
+ {"id": "8e28fb-en", "question": "silkworm:spinning:silkworm cocoon", "choices": {"label": ["A", "B", "C", "D"], "text": ["worm:infection:cordyceps", "trees:processing:paper", "soybean:fermentation:bean paste", "coal:burning:electricity"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
77
+ {"id": "624bef-en", "question": "penicillin:bacteria", "choices": {"label": ["A", "B", "C", "D"], "text": ["fake and shoddy products:reputation", "vitamins:nutrition", "national policy:population", "economic measures:crises"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
78
+ {"id": "754f6f-en", "question": "justice:injustice", "choices": {"label": ["A", "B", "C", "D"], "text": ["rational numbers:irrational numbers", "morning:tonight", "plants:animals", "forgiveness:resentment"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
79
+ {"id": "1c5946-en", "question": "overcome:respond:crisis", "choices": {"label": ["A", "B", "C", "D"], "text": ["develop:enterprise:product", "overcome:science:conundrum", "looking forward to:welcoming:future", "moon landing:aerospace:engineering"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
80
+ {"id": "9ab72a-en", "question": "archaeologists:study:culture relics", "choices": {"label": ["A", "B", "C", "D"], "text": ["books:analysis:textbooks", "novelist:create:fiction", "inspector:fine:police station", "worker:labor:factory"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
81
+ {"id": "ed5d0a-en", "question": "mcdonald's:united states", "choices": {"label": ["A", "B", "C", "D"], "text": ["kfc:germany", "samsung:korea", "sharp:uk", "haagen-dazs:japan"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
82
+ {"id": "fe353c-en", "question": "bill gates:microsoft:software", "choices": {"label": ["A", "B", "C", "D"], "text": ["zhang chaoyang:sohu:stocks", "steven jobs:apple:store", "li yanhong:baidu:chinese", "zhang ruimin:haier:electrical appliances"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
83
+ {"id": "b530f6-en", "question": "competition:referee", "choices": {"label": ["A", "B", "C", "D"], "text": ["singing:conducting", "litigation:judge", "driving:driver", "exam:proctored"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
84
+ {"id": "0b200f-en", "question": "restaurant:chef:cuisine", "choices": {"label": ["A", "B", "C", "D"], "text": ["prison:prisoner guard:prisoner", "factory:worker:product", "stage:actor:props", "school:teacher:student"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
85
+ {"id": "b0d280-en", "question": "tea:teapot:teacup", "choices": {"label": ["A", "B", "C", "D"], "text": ["passenger:bus:taxi", "magazines:bookshelf:reading room", "talent:school:enterprise", "textbook:bookstore:printing house"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
86
+ {"id": "ec44d2-en", "question": "cable damage:power interruption:tram out of service", "choices": {"label": ["A", "B", "C", "D"], "text": ["high take-off:body flip:jump into water", "good news:share price rises:company goes public", "speeding:a car accident occurs:revoke the driver's license", "asking a problem:analyzing a problem:solving a problem"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
87
+ {"id": "6fba67-en", "question": "spring scale:kilogram:mass", "choices": {"label": ["A", "B", "C", "D"], "text": ["thermometer:celsius:temperature", "ruler:square meter:area", "watch:light year:time", "exam:score:grade"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
88
+ {"id": "0d1341-en", "question": "facts:fake facts", "choices": {"label": ["A", "B", "C", "D"], "text": ["secret:public secret", "trap:gentle trap", "lies:white lies", "sorrow:sweet sorrow"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
89
+ {"id": "3d996b-en", "question": "calcium:osteoporosis", "choices": {"label": ["A", "B", "C", "D"], "text": ["sugar:diabetes", "water:wither", "patience:education", "weight:gravity"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
90
+ {"id": "db87cc-en", "question": "warn:warning", "choices": {"label": ["A", "B", "C", "D"], "text": ["back and forth:come back", "writing:write", "payment:pay", "boil:boiled water"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
91
+ {"id": "90c70c-en", "question": "rose:lover", "choices": {"label": ["A", "B", "C", "D"], "text": ["flower:butterfly", "organ:blood", "white:pure", "wind and snow:sunny"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
92
+ {"id": "a59f1e-en", "question": "night:street lights", "choices": {"label": ["A", "B", "C", "D"], "text": ["lonely boat:lighthouse", "platform:road sign", "spring festival:spring festival couplets", "dusk:farewell"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
93
+ {"id": "1b67eb-en", "question": "steamed bun:flour", "choices": {"label": ["A", "B", "C", "D"], "text": ["brush:rice paper", "clothes:fabric", "athlete:coach", "aircraft:missile"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
94
+ {"id": "c28e9a-en", "question": "teach:learn:educating", "choices": {"label": ["A", "B", "C", "D"], "text": ["buy:sell:deal", "good:bad:good or bad", "positive:large:upright", "cloudy:dark:gloomy"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
95
+ {"id": "29832f-en", "question": "red-crowned crane:chinese bulbul", "choices": {"label": ["A", "B", "C", "D"], "text": ["paguma larvata:giraffe", "polar bear:donald duck", "leopard:sarcandra glabra", "rattlesnake:vulture"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
96
+ {"id": "09abaf-en", "question": "gui:guangxi", "choices": {"label": ["A", "B", "C", "D"], "text": ["anhui:jiangxi", "rhododendron:azalea", "river:lake", "tomatoes:cherry tomatoes"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
97
+ {"id": "8bd969-en", "question": "trolley case:handbag", "choices": {"label": ["A", "B", "C", "D"], "text": ["teacup:tea leaves", "sneakers:sandals", "computer:desk", "desk:wardrobe"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
98
+ {"id": "677ce0-en", "question": "clean:dirt", "choices": {"label": ["A", "B", "C", "D"], "text": ["punctuality:credit", "communication:misunderstanding", "recite:memory", "criticism:correction"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
99
+ {"id": "41fda8-en", "question": "liberation:bondage", "choices": {"label": ["A", "B", "C", "D"], "text": ["crime:punishment", "metamorphosis:degeneration", "clever:clumsy", "dawn:daybreak"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
100
+ {"id": "a64221-en", "question": "progress:change", "choices": {"label": ["A", "B", "C", "D"], "text": ["compromise:concession", "spat:conflict", "flowering:fruiting", "likes:trust"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
101
+ {"id": "c2137d-en", "question": "oven:bake", "choices": {"label": ["A", "B", "C", "D"], "text": ["bronze mirror:refraction", "tape measure:measure", "software:navigation", "leather shoes:waterproof"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
102
+ {"id": "cdc004-en", "question": "boxing:wrestling", "choices": {"label": ["A", "B", "C", "D"], "text": ["shooting:fencing", "table tennis:badminton", "basketball:volleyball", "weightlifting:diving"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
103
+ {"id": "316eb2-en", "question": "mixture:air", "choices": {"label": ["A", "B", "C", "D"], "text": ["financial statements:income statement", "metal:insulator", "choir:members", "manchu:uyghur"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
104
+ {"id": "fcdbdf-en", "question": "rescue station:beggar", "choices": {"label": ["A", "B", "C", "D"], "text": ["nursing homes:nursing workers", "prison:criminals", "gas station:salesman", "institute:researcher"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
105
+ {"id": "2cca29-en", "question": "reservation:visit:politeness", "choices": {"label": ["A", "B", "C", "D"], "text": ["swipe card:signature:password", "review:inspection:integrity", "forensics:prosecution:justice", "internship:entry:promotion"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
106
+ {"id": "2f89be-en", "question": "shiyan:wudang mountain", "choices": {"label": ["A", "B", "C", "D"], "text": ["yichang:shennongjia", "xianning:jiugong mountain", "xiangyang:gulongzhong", "huangpi:mulan mountain"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
107
+ {"id": "5b8881-en", "question": "doctor:patient:diagnosis", "choices": {"label": ["A", "B", "C", "D"], "text": ["railway police:passengers:purchase tickets", "farmer:farm:farming", "salesperson:customer:shopping", "waiter:diner:service"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
108
+ {"id": "1ba161-en", "question": "conflict:resolve:harmony", "choices": {"label": ["A", "B", "C", "D"], "text": ["quarrel:break out:chaos", "life:wealthy:beautiful", "noise:eliminate:quiet", "excited:calm:relaxed"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
109
+ {"id": "37917a-en", "question": "kernel:hardcore", "choices": {"label": ["A", "B", "C", "D"], "text": ["sound waves:light waves", "value:price", "water waves:autumn waves", "symptoms:causes"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
110
+ {"id": "b6eefa-en", "question": "wood:drawer:storage", "choices": {"label": ["A", "B", "C", "D"], "text": ["steel:scissors:carve", "cotton:wool:warm", "wall:stone:defense", "rubber:air cushion:cushioning"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
111
+ {"id": "ca87e2-en", "question": "yao ming:china:basketball", "choices": {"label": ["A", "B", "C", "D"], "text": ["messi:brazil:football", "woods:usa:baseball", "federer:spain:tennis", "waldner:sweden:table tennis"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
112
+ {"id": "a9f848-en", "question": "stimulate:stir:exciting", "choices": {"label": ["A", "B", "C", "D"], "text": ["intensify:anger:agitating", "drama:passion:surge", "provoke:enrage:provoking", "activation:riptide:excite"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
113
+ {"id": "c2ba3f-en", "question": "item:buy:store", "choices": {"label": ["A", "B", "C", "D"], "text": ["online shopping:payment:internet", "reading:learning:library", "letter:mail:post office", "stocks:investments:accounts"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
114
+ {"id": "e4cc2d-en", "question": "band:audience:music", "choices": {"label": ["A", "B", "C", "D"], "text": ["hotel:tourist:accommodation", "tv series:children:stories", "club:member:vehicle", "union:rights:employee"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
115
+ {"id": "f01f7e-en", "question": "stinky tofu:shiitake mushrooms", "choices": {"label": ["A", "B", "C", "D"], "text": ["hot and dry noodles:cold water", "black sesame:cabbage", "wheat:rice", "beets:bitter gourd"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
116
+ {"id": "0c6119-en", "question": "celebrities:media:hype", "choices": {"label": ["A", "B", "C", "D"], "text": ["economy:policy:recovery", "commodity:market:exchange", "country:weapon:war", "disagreement:meeting:negotiation"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
117
+ {"id": "4001c5-en", "question": "magazines:books:reading", "choices": {"label": ["A", "B", "C", "D"], "text": ["pencil:stationery:writing", "saloon car:train:transportation", "painting:art:appreciation", "basketball:sports:throwing"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
118
+ {"id": "dd26ad-en", "question": "earth:planet", "choices": {"label": ["A", "B", "C", "D"], "text": ["united kingdom:country", "jiangsu:china", "highway:road", "island:mainland"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
119
+ {"id": "fc479a-en", "question": "attorney:client", "choices": {"label": ["A", "B", "C", "D"], "text": ["judges:various cases", "psychological counseling agency:mentally unhealthy people", "drug supervisor:a person who manufactures and sells drugs", "insurance agent:the insured"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
120
+ {"id": "399be9-en", "question": "summer:air conditioner", "choices": {"label": ["A", "B", "C", "D"], "text": ["master:cycling", "governor:meeting", "year end:bonus", "soldier:fighting"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
121
+ {"id": "063423-en", "question": "field:wheat:grain", "choices": {"label": ["A", "B", "C", "D"], "text": ["pond:carp:roe", "forest farm:trees:dead branches", "pasture:herd of cattle:cattle tail", "ocean:fins:sharks"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
122
+ {"id": "b00eb6-en", "question": "grape:wine", "choices": {"label": ["A", "B", "C", "D"], "text": ["rice:rice cake", "tieguanyin:tea", "coconut:candy", "soybean:soy sauce"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
123
+ {"id": "46d59c-en", "question": "firing:mud:ceramic", "choices": {"label": ["A", "B", "C", "D"], "text": ["smash:jade:bracelet", "water:fish:cormorant", "hardened:iron:sword", "soil:tree:tree fossil"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
124
+ {"id": "36a3b2-en", "question": "citizens:teachers:civil servants", "choices": {"label": ["A", "B", "C", "D"], "text": ["worker:migrant worker:rural areas", "entrepreneur:merchant:mall", "electrical appliances:refrigerator:color tv", "migrant worker:peasant:rural areas"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
125
+ {"id": "7ba9d6-en", "question": "kingfisher:fishing:animal", "choices": {"label": ["A", "B", "C", "D"], "text": ["tiger:mountain forest:fox", "water plants:growth:ocean", "spider:web:creature", "weasel:chicken:wolf"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
126
+ {"id": "59dca4-en", "question": "bidding:won the bid", "choices": {"label": ["A", "B", "C", "D"], "text": ["propaganda:promotion", "request:approve", "abstract:concrete", "expense:income"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
127
+ {"id": "4a3a16-en", "question": "elementary school:secondary school:university", "choices": {"label": ["A", "B", "C", "D"], "text": ["order:money transfer:transaction", "recruitment:hiring:training", "house purchase:down payment:agency", "buying tickets:boarding:security check"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
128
+ {"id": "5074aa-en", "question": "investigate:clue:case", "choices": {"label": ["A", "B", "C", "D"], "text": ["evaluation:ranking:singer", "locate:position:map", "navigation:gps:car", "search:keywords:webpage"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
129
+ {"id": "9037da-en", "question": "newspaper:news", "choices": {"label": ["A", "B", "C", "D"], "text": ["movie:cinema", "newsstand:newspapers", "magazine:ad", "envelope:letter paper"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
130
+ {"id": "a8fcd9-en", "question": "qingdao:city:coastal area", "choices": {"label": ["A", "B", "C", "D"], "text": ["apple:fruit:fruit tree", "mineral water:beverages:teacup", "football:sports:turf", "bus:highway:urban"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
131
+ {"id": "d0dc7b-en", "question": "data:document", "choices": {"label": ["A", "B", "C", "D"], "text": ["mass:weight", "airship:aircraft", "frigate:supply ship", "natural phenomenon:aurora"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
132
+ {"id": "e2477b-en", "question": "moon-shaped fan:feather fan:dancing fan", "choices": {"label": ["A", "B", "C", "D"], "text": ["xuan paper:napkin:coated paper", "round chair:solid wood chair:office chair", "volleyball:badminton:table tennis", "sunglasses:reading glasses:microscope"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
133
+ {"id": "e4c346-en", "question": "regular questions:irregular questions:questions", "choices": {"label": ["A", "B", "C", "D"], "text": ["midterm exam:final exam:exam", "top-level design:basic implementation:management", "luxury decoration:simple decoration:decoration", "gmo oil:non gmo oil:oil"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
134
+ {"id": "c43047-en", "question": "broom:dustpan", "choices": {"label": ["A", "B", "C", "D"], "text": ["toothbrush:cup", "frame:lens", "scarf:hat", "lock:key"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
135
+ {"id": "11f48c-en", "question": "competition:win-win", "choices": {"label": ["A", "B", "C", "D"], "text": ["game:draw", "judgement:reconciliation", "buy and sell:reciprocity", "ball game:draw"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
136
+ {"id": "6009c3-en", "question": "cotton:cotton field", "choices": {"label": ["A", "B", "C", "D"], "text": ["light-glow:light-flare", "beach:dolphins", "temple fair:temple", "tea tree:tea garden"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
137
+ {"id": "670b2b-en", "question": "fire:cooking", "choices": {"label": ["A", "B", "C", "D"], "text": ["fog:driving", "water:wash", "wind:sunny day", "magnetism:strength"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
138
+ {"id": "87c976-en", "question": "trait:good or bad:quality", "choices": {"label": ["A", "B", "C", "D"], "text": ["food:size:weight", "score:high and low:grade", "travel:near and far:interest", "population:how much:density"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
139
+ {"id": "74e87f-en", "question": "flood:drought:flood and drought control", "choices": {"label": ["A", "B", "C", "D"], "text": ["earthquake:tsunami:earthquake relief", "landslide:avalanche:road repair", "severe cold:extreme heat:antifreeze to cool off the heat", "wind and sand:fog and haze:sand control and haze removal"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
140
+ {"id": "36d3a8-en", "question": "oil field:gasoline", "choices": {"label": ["A", "B", "C", "D"], "text": ["lumberyard:furniture", "shopping mall:clothing", "farmland:paddy", "reservoir:water"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
141
+ {"id": "eb3a29-en", "question": "preview:class:review", "choices": {"label": ["A", "B", "C", "D"], "text": ["act:exam:university", "research:design:produce", "recovered:registered:discharged", "written test:interview:registration"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
142
+ {"id": "2a3bff-en", "question": "microscope:magnifying glass", "choices": {"label": ["A", "B", "C", "D"], "text": ["convex lens:funky mirror", "copier:scanner", "video recorder:camera", "navigator:rearview mirror"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
143
+ {"id": "9a6ddc-en", "question": "special economic zone:zhuhai", "choices": {"label": ["A", "B", "C", "D"], "text": ["instrument:ocarina", "spratly islands:huangyan island", "fowl:bats", "navy:aircraft carrier"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
144
+ {"id": "9c26e4-en", "question": "speed:time:distance", "choices": {"label": ["A", "B", "C", "D"], "text": ["interest rate:principal:interest", "quality:variety:quantity", "profit:cost:output value", "income:expenditure:surplus"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
145
+ {"id": "967fc7-en", "question": "actor:audience", "choices": {"label": ["A", "B", "C", "D"], "text": ["conductor:passenger", "worker:factory manager", "farmer:field", "parents:children"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
146
+ {"id": "57e015-en", "question": "imaginary numbers:complex numbers", "choices": {"label": ["A", "B", "C", "D"], "text": ["law:criminal law", "wheat:rice", "scarlett o'hara:gone with the wind", "artificial intelligence:computer science"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
147
+ {"id": "e8f843-en", "question": "plants:pollination:fructification", "choices": {"label": ["A", "B", "C", "D"], "text": ["rice wine:fermentation:preservation", "green tea:picking:processing", "filament:conductive:luminous", "oil:heating:deposition"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
148
+ {"id": "11fe5f-en", "question": "fireworks:gunpowder", "choices": {"label": ["A", "B", "C", "D"], "text": ["lawn:grass", "railway:high-speed ​​rail", "tv:set-top box", "tea bag:tea leaves"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
149
+ {"id": "10f792-en", "question": "opera house:library", "choices": {"label": ["A", "B", "C", "D"], "text": ["control tower:flying runway", "clothes:trousers", "vegetable basket:leather box", "water cup:pool"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
150
+ {"id": "12e696-en", "question": "forest:vegetation", "choices": {"label": ["A", "B", "C", "D"], "text": ["desert:land", "reservoir:river", "white cloud:blue sky", "black hole:ozone"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
151
+ {"id": "0d65df-en", "question": "buddhism:religion", "choices": {"label": ["A", "B", "C", "D"], "text": ["commodity:exchange", "chemistry:science", "system:whole", "community:society"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
152
+ {"id": "922c86-en", "question": "ounce:weight", "choices": {"label": ["A", "B", "C", "D"], "text": ["rupee:currency", "carat:diamond ring", "hertz:sound wave", "pint:volume"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
153
+ {"id": "5fa6a2-en", "question": "water:lake", "choices": {"label": ["A", "B", "C", "D"], "text": ["wealth:leisure", "mountain:river", "nutrition:health", "blueprint:ocean"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
154
+ {"id": "8b424b-en", "question": "cube:geometry", "choices": {"label": ["A", "B", "C", "D"], "text": ["specific gravity:physics", "blood:botany", "geology:compounds", "genes:history"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
155
+ {"id": "8e5317-en", "question": "history:wise", "choices": {"label": ["A", "B", "C", "D"], "text": ["news:broadcast", "law:restriction", "system:knowledge", "policy:aid to tibet"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
156
+ {"id": "0f2be2-en", "question": "risk:loss:insurance", "choices": {"label": ["A", "B", "C", "D"], "text": ["fame:propaganda:endorsement", "obesity:disease:taking exercise", "production:accident:safety", "laggard:openness:prosperity"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
157
+ {"id": "0128ec-en", "question": "investment:return", "choices": {"label": ["A", "B", "C", "D"], "text": ["advertisement:discount", "negotiation:business", "competitive:advantages", "shares:dividends"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
158
+ {"id": "b07a7a-en", "question": "x-ray:fracture", "choices": {"label": ["A", "B", "C", "D"], "text": ["satellite cloud image:rainfall", "popular science books:knowledge", "electronic navigation:routes", "eating habits:healthy"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
159
+ {"id": "67d331-en", "question": "pen:ink", "choices": {"label": ["A", "B", "C", "D"], "text": ["blood vessels:blood", "coal stove:coal ash", "electric drill:drill bit", "pistol:bullet"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
160
+ {"id": "e9aed3-en", "question": "plum:proud and aloof:quality", "choices": {"label": ["A", "B", "C", "D"], "text": ["fire:enthusiasm:character", "moon cake:reunion:food", "dove:peace:symbol", "red light:no traffic:information"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
161
+ {"id": "05d67f-en", "question": "oasis:desert", "choices": {"label": ["A", "B", "C", "D"], "text": ["openess:optimism", "white jade:jade", "green willow:yellow flower", "calm:nervous"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
162
+ {"id": "a030d9-en", "question": "goat:goat milk:fishy mutton", "choices": {"label": ["A", "B", "C", "D"], "text": ["silkworm:silk:snow white", "spider:web:bond", "bee:honey:sweet", "swift:bird's nest:nutrition"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
163
+ {"id": "8ed476-en", "question": "eggs:cake", "choices": {"label": ["A", "B", "C", "D"], "text": ["lead:pencil", "cement:cement road", "shoes:laces", "yuqian:yuqian cake"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
164
+ {"id": "a64bad-en", "question": "archery:bull's eye", "choices": {"label": ["A", "B", "C", "D"], "text": ["buy:seller", "trial:court", "bid:project", "departure:starting point"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
165
+ {"id": "b607ae-en", "question": "sea:fish", "choices": {"label": ["A", "B", "C", "D"], "text": ["sky:bird", "earth:mountains", "pig:forest", "fruit:core"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
166
+ {"id": "c558b8-en", "question": "bank:interest", "choices": {"label": ["A", "B", "C", "D"], "text": ["cow:calf", "school:student", "hospital:doctor", "factory:worker"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
167
+ {"id": "2de81e-en", "question": "screen:color screen", "choices": {"label": ["A", "B", "C", "D"], "text": ["time:nano", "polygonum multiflorum:traditional chinese medicine", "extreme heat:air conditioning", "youth:cynical youth"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
168
+ {"id": "2e8da2-en", "question": "duck:river", "choices": {"label": ["A", "B", "C", "D"], "text": ["ferris wheel:roller coaster", "comedy:drama", "aircraft:airport", "trai:track"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
169
+ {"id": "fdf7a2-en", "question": "exam:student:score", "choices": {"label": ["A", "B", "C", "D"], "text": ["internet:netizen:email", "car:driver:driving license", "job:staff:salary", "meals:chef:good in color, aroma and taste"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
170
+ {"id": "20b079-en", "question": "candidates:career fair:recruiters", "choices": {"label": ["A", "B", "C", "D"], "text": ["plaintiff:judgment:defendant", "doctor:registration office:patient", "producer:seller:manager", "party a:signing ceremony:party b"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
171
+ {"id": "b92f35-en", "question": "smart:stupid", "choices": {"label": ["A", "B", "C", "D"], "text": ["man:woman", "black:white", "sunglasses:bright", "wealth:poverty"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
172
+ {"id": "3e98f6-en", "question": "painter:writer", "choices": {"label": ["A", "B", "C", "D"], "text": ["worker:farmer", "potato:taro", "green tea:black tea", "soldier:poet"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
173
+ {"id": "4d517b-en", "question": "mekong river:cross-border river", "choices": {"label": ["A", "B", "C", "D"], "text": ["yellow crane tower:stilted tower", "qinghai lake:inland lake", "british:western european", "zhongshan gate:arc de triomphe"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
174
+ {"id": "541bb3-en", "question": "shopping:bank card", "choices": {"label": ["A", "B", "C", "D"], "text": ["driving:steering wheel", "cooking:natural gas", "running:sneakers", "travel:navigator"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
175
+ {"id": "f5daa9-en", "question": "life and death:survive or perish", "choices": {"label": ["A", "B", "C", "D"], "text": ["degree of severity:degree of urgency", "good or bad:good and bad", "intimacy and distance:old and young", "true or false:right or wrong"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
176
+ {"id": "3524bd-en", "question": "soybeans:broad beans", "choices": {"label": ["A", "B", "C", "D"], "text": ["accessories:lights", "crucian carp:whale", "monkey:lion", "papaya:watermelon"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
177
+ {"id": "e89045-en", "question": "cold medicine:chinese medicine:western medicine", "choices": {"label": ["A", "B", "C", "D"], "text": ["juice:cold drink:hot drink", "javelin:field competition:track competition", "city wall:ancient architecture:western architecture", "bachelor:master:phd"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
178
+ {"id": "c9471b-en", "question": "rice:plant", "choices": {"label": ["A", "B", "C", "D"], "text": ["agarics:tremella", "banana:fruit", "animal:voles", "rice:noodles"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
179
+ {"id": "56d4fc-en", "question": "umbrella:raincoat", "choices": {"label": ["A", "B", "C", "D"], "text": ["cash:check", "air conditioning:radiator", "pen:pencil", "mosquito coils:mosquito nets"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
180
+ {"id": "21d200-en", "question": "running a red light:traffic violation:administrative fines", "choices": {"label": ["A", "B", "C", "D"], "text": ["fighting:disturbance:destroy public property", "economic overheating:inflation:currency devaluation", "market economy:market failure:state intervention", "administrative monopoly:local protection:legal regulation"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
181
+ {"id": "cc1cd7-en", "question": "reimbursement:credentials:invoice", "choices": {"label": ["A", "B", "C", "D"], "text": ["balance:expenditure:consumption", "take a bus:voucher:ticket", "defense:attorney:legal", "watch:movies:tickets"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
182
+ {"id": "89e8b7-en", "question": "innovation:rigidity", "choices": {"label": ["A", "B", "C", "D"], "text": ["development:forward", "open:closed", "plan:order", "innovation:failure"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
183
+ {"id": "7ee511-en", "question": "bird:wings", "choices": {"label": ["A", "B", "C", "D"], "text": ["sheep:dog", "fish:fin", "locust:cicada", "cattle:grass"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
184
+ {"id": "cf728f-en", "question": "amazon:jd:dangdang", "choices": {"label": ["A", "B", "C", "D"], "text": ["keyboard:mouse:scanner", "lake:carp:fish tank", "schoolbag:textbook:student", "signal light:red light:green light"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
185
+ {"id": "5d0d1c-en", "question": "weave:cloth", "choices": {"label": ["A", "B", "C", "D"], "text": ["ore:metal", "effort:gain", "work:dedication", "cultivation:food"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
186
+ {"id": "e22c9c-en", "question": "language:tool:communication", "choices": {"label": ["A", "B", "C", "D"], "text": ["ship:steel:transportation", "books:reading:printing", "meeting:method:work", "chopsticks:eating:tableware"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
187
+ {"id": "c93971-en", "question": "pawn:loan:financing", "choices": {"label": ["A", "B", "C", "D"], "text": ["buy:sell:trade", "water:air:transportation", "inspecting:smelling:inquiring", "start:sprint:race"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
188
+ {"id": "e28448-en", "question": "cloth:clothes", "choices": {"label": ["A", "B", "C", "D"], "text": ["milk:yogurt", "food:wine", "wood:dining table", "tomato sauce:ketchup"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
189
+ {"id": "c1c829-en", "question": "head:chief labor contractor", "choices": {"label": ["A", "B", "C", "D"], "text": ["eyebrow:curved eyebrow", "belly:general's belly", "waist:slender waist", "hand:trader"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
190
+ {"id": "c2f2a1-en", "question": "red:blue:flower", "choices": {"label": ["A", "B", "C", "D"], "text": ["peace:war:revolution", "pass:up to the standard:achievement", "land:sunshine:plain", "physics:chemistry:knowledge"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
191
+ {"id": "c47622-en", "question": "software:programmer:writing", "choices": {"label": ["A", "B", "C", "D"], "text": ["wood:carpenter:craft", "fishing nets:fishermen:weave", "ticket:passenger:buy", "microphone:singer:sing"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
192
+ {"id": "1e4ae7-en", "question": "clay:ceramic cup:utensils", "choices": {"label": ["A", "B", "C", "D"], "text": ["doors and windows:house:property", "silk:cheongsam:clothing", "paper:title page:book", "beef:meat filling:dumplings"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
193
+ {"id": "447bec-en", "question": "milk powder:milk", "choices": {"label": ["A", "B", "C", "D"], "text": ["cereal:barley", "edamame:fluff", "flour:fine dried noodles", "country:kingdom"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
194
+ {"id": "67eabf-en", "question": "vault:cash:custody", "choices": {"label": ["A", "B", "C", "D"], "text": ["tennis court:fans:watch", "cable car:scenic area:sightseeing", "studio:album:play", "art museum:calligraphy and painting:exhibition"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
195
+ {"id": "8b896b-en", "question": "smog:pollution:treatment", "choices": {"label": ["A", "B", "C", "D"], "text": ["fan:electrical appliance:use", "japonica rice:grain:investigation", "information:newspapers:read", "report:document:procedure for examination and approval"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
196
+ {"id": "085714-en", "question": "wind:windmill:rotate", "choices": {"label": ["A", "B", "C", "D"], "text": ["water:goldfish:swimming", "thunder:lightning:rainstorm", "electric:tram:running", "fire:firewood:burning"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
197
+ {"id": "dadcc9-en", "question": "fable:philosophy", "choices": {"label": ["A", "B", "C", "D"], "text": ["diary:notes", "email:letter", "idiom:allusions", "newsletter:report"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
198
+ {"id": "4dd863-en", "question": "actor:park:show", "choices": {"label": ["A", "B", "C", "D"], "text": ["rumor:wechat:investigate", "shareholders:stock market:investment", "soldier:war:promotion", "information:satellite:positioning"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
199
+ {"id": "de8e68-en", "question": "countryside:revitalize", "choices": {"label": ["A", "B", "C", "D"], "text": ["west:development", "reform:innovation", "talent:strengthen the country", "international:cooperation"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
200
+ {"id": "8d6607-en", "question": "photography:wedding photos", "choices": {"label": ["A", "B", "C", "D"], "text": ["lens:flash", "tripod:weight bag", "advertising:outdoor display", "journalist:interview with the mayor"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
201
+ {"id": "35b4a9-en", "question": "rational numbers:irrational numbers:real numbers", "choices": {"label": ["A", "B", "C", "D"], "text": ["bungalow:building:house", "yin engraving:yang engraving:engraving", "western han:eastern han:han dynasty", "western europe:eastern europe:europe"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
202
+ {"id": "c03b7a-en", "question": "frog:mammal", "choices": {"label": ["A", "B", "C", "D"], "text": ["odd numbers:natural numbers", "software:computer", "mars:solar system", "piano:brass instrument"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
203
+ {"id": "28bfae-en", "question": "beijing:the forbidden city", "choices": {"label": ["A", "B", "C", "D"], "text": ["tangshan:caofeidian", "mount tai:welcome pine", "mount lu:xianren cave", "leshan:giant buddha"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
204
+ {"id": "f7239f-en", "question": "jugglery:trick:means", "choices": {"label": ["A", "B", "C", "D"], "text": ["frontier:border:boundary", "love:respect:cherish", "seek:defraud:gain", "ridicule:sneer:smile"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
205
+ {"id": "25f60a-en", "question": "kite:bamboo knife:bamboo stick", "choices": {"label": ["A", "B", "C", "D"], "text": ["clay sculpture:clay:pigment", "embroidery:embroidery needle:embroidery thread", "sugar man:cane sugar:bamboo stick", "lacquerware:gold tracing:paint"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
206
+ {"id": "3af69c-en", "question": "opposite:harmony", "choices": {"label": ["A", "B", "C", "D"], "text": ["innovation:revolution", "dependency:independence", "expert:liar", "accurate:failure"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
207
+ {"id": "f2e746-en", "question": "library:books:preservation", "choices": {"label": ["A", "B", "C", "D"], "text": ["infirmary:doctor:rest", "soccer field:football:referee", "fridge:luncheon meat:refrigerate", "teacher:classroom:teach classes"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
208
+ {"id": "816e5e-en", "question": "taekwondo:korea", "choices": {"label": ["A", "B", "C", "D"], "text": ["japan:sumo", "martial arts:china", "football:america", "uk:tennis"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
209
+ {"id": "75aad0-en", "question": "christianity:buddhism:zen", "choices": {"label": ["A", "B", "C", "D"], "text": ["biology:heredity:code", "organism:bionic:genetic", "wind musical instrument:string musical instrument:violin", "physics:atmospheric physics:astronomy"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
210
+ {"id": "205151-en", "question": "household appliances:washing machines", "choices": {"label": ["A", "B", "C", "D"], "text": ["arcade:game console", "desktop computer:laptop", "peking university:department of chinese", "transportation:bus"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
211
+ {"id": "2777e8-en", "question": "export:import:trade surplus", "choices": {"label": ["A", "B", "C", "D"], "text": ["taxation:tax payment:financial revenue", "buy:sell:profit", "expenditure:income:deficit", "paying debt:borrowing debt:debt"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
212
+ {"id": "d1b8f3-en", "question": "calligraphy:ou style", "choices": {"label": ["A", "B", "C", "D"], "text": ["greek mythology:chinese mythology", "pantao garden:xiantao", "works:monographs", "cnki:network"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
213
+ {"id": "f2b811-en", "question": "train attendant:train", "choices": {"label": ["A", "B", "C", "D"], "text": ["nurse:hospital", "passenger:ship", "programmer:programming", "salesperson:vending machine"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
214
+ {"id": "66588b-en", "question": "cheetah:feline family:animal", "choices": {"label": ["A", "B", "C", "D"], "text": ["pants:trousers:clothing", "bacteria:viruses:microorganisms", "agate:stone:gem", "teaching assistant:lecturer:associate professor"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
215
+ {"id": "72041e-en", "question": "poet:poems:lyrics", "choices": {"label": ["A", "B", "C", "D"], "text": ["painter:art:exhibition", "musician:conductor:playing the piano", "drummer:playing:composer", "accounting:audit:bookkeeping"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
216
+ {"id": "3ffe55-en", "question": "medication:surgery:treatment", "choices": {"label": ["A", "B", "C", "D"], "text": ["police:law:chase", "car:train:land", "reading:teaching:going to school", "running:swimming:exercise"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
217
+ {"id": "c2e909-en", "question": "skateboard:sports", "choices": {"label": ["A", "B", "C", "D"], "text": ["medicine:cure", "drink:juice", "movie:advertising", "news:newspapers"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
218
+ {"id": "99ffa5-en", "question": "unmarried:have no rights", "choices": {"label": ["A", "B", "C", "D"], "text": ["country:bhutan", "illegal:unreasonable", "wuxi:non-party member", "roly-poly:unhealthy"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
219
+ {"id": "9b2174-en", "question": "lan:computer:file sharing", "choices": {"label": ["A", "B", "C", "D"], "text": ["space station:astronaut:science experiment", "library:reading room:literature retrieval", "textile mill:textile equipment:raw material processing", "tv station:internet media:program production"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
220
+ {"id": "ffaf26-en", "question": "quit smoking:disease", "choices": {"label": ["A", "B", "C", "D"], "text": ["drunk driving:accidents", "check:error", "fault:reflect", "consideration:worry"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
221
+ {"id": "a86c84-en", "question": "movie:drama:actor", "choices": {"label": ["A", "B", "C", "D"], "text": ["highway:sidewalk:motor vehicle", "appliances:air conditioning:repairman", "mathematics:physical education class:teacher", "computation:storage:hard disk"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
222
+ {"id": "d79e88-en", "question": "wood:paper:easel", "choices": {"label": ["A", "B", "C", "D"], "text": ["flour:steamed bread:steamer", "silver:jewelry:wineware", "concrete:steel:bridge", "cotton:duck down:quilt"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
223
+ {"id": "c51292-en", "question": "world map:globe", "choices": {"label": ["A", "B", "C", "D"], "text": ["one-dollar note:one-dollar coin", "paper airplanes:airplane models", "painting of chopin:sculpture of chopin", "plane figure of the building:3d drawing of the building"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
224
+ {"id": "96c049-en", "question": "rhine:europe", "choices": {"label": ["A", "B", "C", "D"], "text": ["danube:north america", "africa:the nile", "the amazon:south america", "asia:the yellow river"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
225
+ {"id": "136862-en", "question": "white sheep:black sheep", "choices": {"label": ["A", "B", "C", "D"], "text": ["high price:price", "blue sky:spring", "weekly journal:monthly journal", "suzhou:xuzhou"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
226
+ {"id": "b3631e-en", "question": "alarm:rescue", "choices": {"label": ["A", "B", "C", "D"], "text": ["graduation:employment", "violation:fine", "surgery:hospitalization", "consume:produce"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
227
+ {"id": "69ee43-en", "question": "tea tree:jasmine tea", "choices": {"label": ["A", "B", "C", "D"], "text": ["plum tree:plum cake", "wheat:bread", "crab:crab roe bao", "winter melon:winter melon candy"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
228
+ {"id": "b215a1-en", "question": "the great wall:beijing forbidden city:places of interest", "choices": {"label": ["A", "B", "C", "D"], "text": ["paper cutting:shadow play:folk art", "whale:shark:fish", "sichuan cuisine:cantonese cuisine:shandong cuisine", "day:night:a day"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
229
+ {"id": "fe3c0b-en", "question": "mentality:bear", "choices": {"label": ["A", "B", "C", "D"], "text": ["interference:alarm clock", "information:stimulus", "sleep:quality", "digestion:absorption"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
230
+ {"id": "8fa238-en", "question": "light:refraction:water", "choices": {"label": ["A", "B", "C", "D"], "text": ["green leaf:photosynthesis:chlorophyll", "water vapor:condensation:glass", "computer:calculate:data", "ocean:ocean current:typhoon"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
231
+ {"id": "52cd13-en", "question": "airplane:car", "choices": {"label": ["A", "B", "C", "D"], "text": ["battery car:bicycle", "tricycle:motorcycle", "high speed ​​rail:tram", "ship:kayak"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
232
+ {"id": "c0a89e-en", "question": "air freight:sea freight:transportation", "choices": {"label": ["A", "B", "C", "D"], "text": ["paperback:hardcover:bound", "cargo ship:passenger ship:cruise ship", "evening:party:rally", "test flight:trail flight:aerospace"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
233
+ {"id": "348aac-en", "question": "laptop:mouse", "choices": {"label": ["A", "B", "C", "D"], "text": ["voice recorder:tape", "mobile phone:bluetooth headset", "books:bookmarks", "tv:remote control"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
234
+ {"id": "4fe754-en", "question": "cowhide jacket:upper outer garment", "choices": {"label": ["A", "B", "C", "D"], "text": ["shoe covers:shoes", "jian'an poets:poets", "plants:animals", "ceramic:tableware"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
235
+ {"id": "7dc6f9-en", "question": "little tabby cat:tiger cat genus:feline", "choices": {"label": ["A", "B", "C", "D"], "text": ["crops:grain:cereals", "tape measure:ruler:tool", "elementary school:middle school:high school", "second lieutenant:major:major general"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
236
+ {"id": "dd6396-en", "question": "linear vibration:nonlinear vibration:vibration", "choices": {"label": ["A", "B", "C", "D"], "text": ["petal:stamen:morning glory", "carnivore:herbivore:animal", "investors:operators:market entities", "main contradiction:secondary contradiction:contradiction"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
237
+ {"id": "5ef4e2-en", "question": "graduate:master:phd", "choices": {"label": ["A", "B", "C", "D"], "text": ["adolescent:juvenile:youth", "women and children:children:women", "building:bungalow:high-rise", "graphics:lines:triangles"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
238
+ {"id": "3f8f4b-en", "question": "vote:draw lots", "choices": {"label": ["A", "B", "C", "D"], "text": ["contact:communication", "management:services", "persuasion:argument", "recommendation:advocation"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
239
+ {"id": "aef533-en", "question": "buy ticket:ride:arrive", "choices": {"label": ["A", "B", "C", "D"], "text": ["registration:participation:receipt", "order:payment:delivery", "queue:meal:order", "graduation:employment:unemployed"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
240
+ {"id": "dae179-en", "question": "syringe:injector:medical device", "choices": {"label": ["A", "B", "C", "D"], "text": ["rack:jack:lifting equipment", "submarine:nuclear submarine:nuclear reactor", "aircraft:propeller:propulsion", "swimsuit:bikini:swimwear"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
241
+ {"id": "f58c57-en", "question": "snowflake:sea", "choices": {"label": ["A", "B", "C", "D"], "text": ["green leaf:land", "stars:universe", "white cloud:sky", "trees:forest"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
242
+ {"id": "2700d9-en", "question": "works:text works:photographic works", "choices": {"label": ["A", "B", "C", "D"], "text": ["personal rights:name rights:portrait rights", "candy:lollipop:fruit candy", "science:natural science:economics", "wheaten food:noodles:chongqing noodles"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
243
+ {"id": "0d3f7f-en", "question": "power on:dial:call", "choices": {"label": ["A", "B", "C", "D"], "text": ["raise the gun:aim:shoot", "eat:dress:sleep", "wind:rain:thunder", "run:play basketball:swim"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
244
+ {"id": "d20434-en", "question": "fish tank:swimming pool", "choices": {"label": ["A", "B", "C", "D"], "text": ["container:warehouse", "flowers:vase", "seasoning:hot pot", "birdcage:prison"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
245
+ {"id": "05825f-en", "question": "ml:measuring cup", "choices": {"label": ["A", "B", "C", "D"], "text": ["sulfuric acid:alcohol lamp", "geometry:square", "ampere:physics", "degree:electricity meter"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
246
+ {"id": "2226a2-en", "question": "cement:houses", "choices": {"label": ["A", "B", "C", "D"], "text": ["cloth:clothes", "sand:desert", "wood:rebar", "printer:computer"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
247
+ {"id": "0be657-en", "question": "change of mind:idea", "choices": {"label": ["A", "B", "C", "D"], "text": ["paraphrase:speak", "transfer:item", "turn:direction", "transcription:translation"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
248
+ {"id": "b1e866-en", "question": "friction:heat", "choices": {"label": ["A", "B", "C", "D"], "text": ["sowing:harvest", "recognizing mistakes:correcting shortcomings", "hard work:excellent grades", "overdoes:damage to health"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
249
+ {"id": "d16514-en", "question": "books:printing house:publishing house", "choices": {"label": ["A", "B", "C", "D"], "text": ["tables and chairs:furniture factory:timber factory", "fruit:dealer:grower", "movie:producer:playwright", "house:builder:developer"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
250
+ {"id": "3573c0-en", "question": "online shopping:go online", "choices": {"label": ["A", "B", "C", "D"], "text": ["reading:books", "drink water:boil water", "practice:writing", "sing:chant"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
251
+ {"id": "80f68b-en", "question": "astronauts:moon exploration", "choices": {"label": ["A", "B", "C", "D"], "text": ["airline:flight", "cleaner:cleaning", "volunteer:organization", "pharmacy:pharmaceutical"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
252
+ {"id": "2ea53f-en", "question": "energy saving:emission reduction:environmental protection", "choices": {"label": ["A", "B", "C", "D"], "text": ["gunpowder:papermaking:four great inventions", "get up:walk:go to work", "production:sales:management", "exercise:nutrition:health"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
253
+ {"id": "a055a1-en", "question": "train:track:running", "choices": {"label": ["A", "B", "C", "D"], "text": ["computer:keyboard:internet access", "camera:lens:take pictures", "aircraft:airport:flight", "oil tanker:river and sea:sail"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
254
+ {"id": "ce2c65-en", "question": "practice:knowledge", "choices": {"label": ["A", "B", "C", "D"], "text": ["contradiction:development", "internal cause:external cause", "whole:part", "matter:consciousness"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
255
+ {"id": "a97399-en", "question": "wheel:car:transportation", "choices": {"label": ["A", "B", "C", "D"], "text": ["clothes:hanger:drying clothes", "lens:glasses:reading", "mic:phone:call", "ink:brush:calligraphy"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
256
+ {"id": "d7bb0b-en", "question": "the forbidden city:the hall of supreme harmony", "choices": {"label": ["A", "B", "C", "D"], "text": ["mount huang:tiandu peak", "the olympic games:the olympic village", "taiwan island:sun moon lake", "the great wall:badaling"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
257
+ {"id": "afb037-en", "question": "fire:enthusiasm:attitude", "choices": {"label": ["A", "B", "C", "D"], "text": ["water:rapid:speed", "wood:gentle:female", "soil:fertile:barren", "pine:nobleness:quality"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
258
+ {"id": "e9efef-en", "question": "oil painting:turpentine", "choices": {"label": ["A", "B", "C", "D"], "text": ["portraits:film", "calligraphy:frame", "brush:ink", "ivory carving:ivory"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
259
+ {"id": "45e194-en", "question": "fermentation:fine wine", "choices": {"label": ["A", "B", "C", "D"], "text": ["rust:damp", "green mountains:clear water", "debt:poverty", "refinement:gasoline"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
260
+ {"id": "1af961-en", "question": "commemorate:forget", "choices": {"label": ["A", "B", "C", "D"], "text": ["entrepreneurship:employment", "propagation:guide", "dig:bury", "rescue:disaster"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
261
+ {"id": "81761b-en", "question": "gliding:airplane", "choices": {"label": ["A", "B", "C", "D"], "text": ["dive:petrel", "throwing:shot put", "back jump:high jump", "fly:sky"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
262
+ {"id": "c2b957-en", "question": "stage:props:actor", "choices": {"label": ["A", "B", "C", "D"], "text": ["car:driving:driver", "playground:football:students", "shopping mall:commodity:consumer", "factory:machine:worker"]}, "answerKey": "", "explanation": ["", "", "", "", ""], "relation": []}
test_easy_blind.json ADDED
The diff for this file is too large to render. See raw diff
train.json ADDED
The diff for this file is too large to render. See raw diff
validation.json ADDED
The diff for this file is too large to render. See raw diff