fix readme
Browse files
README.md
CHANGED
@@ -37,6 +37,7 @@ This dataset contains 5 different word analogy questions used in [Analogy Langua
|
|
37 |
| `semeval2012_relational_similarity` | 79/- | 3/- | 79/- | [relbert/semeval2012_relational_similarity](https://huggingface.co/datasets/relbert/semeval2012_relational_similarity) |
|
38 |
| `t_rex_relational_similarity` | 496/183 | 74/48 | 60/19 | [relbert/t_rex_relational_similarity](https://huggingface.co/datasets/relbert/t_rex_relational_similarity) |
|
39 |
| `conceptnet_relational_similarity` | 1112/1192 | 19/17 | 18/16 | [relbert/conceptnet_relational_similarity](https://huggingface.co/datasets/relbert/conceptnet_relational_similarity) |
|
|
|
40 |
|
41 |
## Dataset Structure
|
42 |
### Data Instances
|
|
|
37 |
| `semeval2012_relational_similarity` | 79/- | 3/- | 79/- | [relbert/semeval2012_relational_similarity](https://huggingface.co/datasets/relbert/semeval2012_relational_similarity) |
|
38 |
| `t_rex_relational_similarity` | 496/183 | 74/48 | 60/19 | [relbert/t_rex_relational_similarity](https://huggingface.co/datasets/relbert/t_rex_relational_similarity) |
|
39 |
| `conceptnet_relational_similarity` | 1112/1192 | 19/17 | 18/16 | [relbert/conceptnet_relational_similarity](https://huggingface.co/datasets/relbert/conceptnet_relational_similarity) |
|
40 |
+
| `nell_relational_similarity` | 400/600 | 5/7 | 4/6 | [relbert/nell_relational_similarity](https://huggingface.co/datasets/relbert/nell_relational_similarity) |
|
41 |
|
42 |
## Dataset Structure
|
43 |
### Data Instances
|
add_new_analogy.py
CHANGED
@@ -110,4 +110,21 @@ stat.append({
|
|
110 |
"Num of relation group (valid/test)": f"{v_relation_type}/{t_relation_type}",
|
111 |
"Original Reference": "[relbert/conceptnet_relational_similarity](https://huggingface.co/datasets/relbert/conceptnet_relational_similarity)"
|
112 |
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
print(pd.DataFrame(stat).to_markdown(index=False))
|
|
|
110 |
"Num of relation group (valid/test)": f"{v_relation_type}/{t_relation_type}",
|
111 |
"Original Reference": "[relbert/conceptnet_relational_similarity](https://huggingface.co/datasets/relbert/conceptnet_relational_similarity)"
|
112 |
})
|
113 |
+
|
114 |
+
##################################################################
|
115 |
+
# create analogy from `relbert/conceptnet_relational_similarity` #
|
116 |
+
##################################################################
|
117 |
+
data = load_dataset("relbert/nell_relational_similarity", split="test")
|
118 |
+
create_analogy(data, "dataset/nell_relational_similarity/test.jsonl", negative_per_relation=1)
|
119 |
+
data = load_dataset("relbert/nell_relational_similarity", split="validation")
|
120 |
+
create_analogy(data, "dataset/nell_relational_similarity/valid.jsonl", negative_per_relation=1)
|
121 |
+
t_size, t_num_choice, t_relation_type = get_stats("dataset/nell_relational_similarity/test.jsonl")
|
122 |
+
v_size, v_num_choice, v_relation_type = get_stats("dataset/nell_relational_similarity/valid.jsonl")
|
123 |
+
stat.append({
|
124 |
+
"name": "`nell_relational_similarity`",
|
125 |
+
"Size (valid/test)": f"{v_size}/{t_size}",
|
126 |
+
"Num of choice (valid/test)": f"{','.join([str(n) for n in v_num_choice])}/{','.join([str(n) for n in t_num_choice])}",
|
127 |
+
"Num of relation group (valid/test)": f"{v_relation_type}/{t_relation_type}",
|
128 |
+
"Original Reference": "[relbert/nell_relational_similarity](https://huggingface.co/datasets/relbert/nell_relational_similarity)"
|
129 |
+
})
|
130 |
print(pd.DataFrame(stat).to_markdown(index=False))
|
analogy_questions.py
CHANGED
@@ -5,7 +5,7 @@ import datasets
|
|
5 |
logger = datasets.logging.get_logger(__name__)
|
6 |
_DESCRIPTION = """[Analogy Question](https://aclanthology.org/2021.acl-long.280/)"""
|
7 |
_NAME = "analogy_questions"
|
8 |
-
_VERSION = "2.0.
|
9 |
_CITATION = """
|
10 |
@inproceedings{ushio-etal-2021-bert,
|
11 |
title = "{BERT} is to {NLP} what {A}lex{N}et is to {CV}: Can Pre-Trained Language Models Identify Analogies?",
|
@@ -35,7 +35,8 @@ _URLS = {
|
|
35 |
'u2': [f'{_URL}/u2/test.jsonl'],
|
36 |
'u4': [f'{_URL}/u4/test.jsonl'],
|
37 |
"t_rex_relational_similarity": [f'{_URL}/t_rex_relational_similarity/test.jsonl'],
|
38 |
-
"conceptnet_relational_similarity": [f'{_URL}/conceptnet_relational_similarity/test.jsonl']
|
|
|
39 |
},
|
40 |
str(datasets.Split.VALIDATION): {
|
41 |
'bats': [f'{_URL}/bats/valid.jsonl'],
|
@@ -45,7 +46,8 @@ _URLS = {
|
|
45 |
'u4': [f'{_URL}/u4/valid.jsonl'],
|
46 |
"semeval2012_relational_similarity": [f'{_URL}/semeval2012_relational_similarity/valid.jsonl'],
|
47 |
"t_rex_relational_similarity": [f'{_URL}/t_rex_relational_similarity/valid.jsonl'],
|
48 |
-
"conceptnet_relational_similarity": [f'{_URL}/conceptnet_relational_similarity/valid.jsonl']
|
|
|
49 |
}
|
50 |
}
|
51 |
|
|
|
5 |
logger = datasets.logging.get_logger(__name__)
|
6 |
_DESCRIPTION = """[Analogy Question](https://aclanthology.org/2021.acl-long.280/)"""
|
7 |
_NAME = "analogy_questions"
|
8 |
+
_VERSION = "2.0.1"
|
9 |
_CITATION = """
|
10 |
@inproceedings{ushio-etal-2021-bert,
|
11 |
title = "{BERT} is to {NLP} what {A}lex{N}et is to {CV}: Can Pre-Trained Language Models Identify Analogies?",
|
|
|
35 |
'u2': [f'{_URL}/u2/test.jsonl'],
|
36 |
'u4': [f'{_URL}/u4/test.jsonl'],
|
37 |
"t_rex_relational_similarity": [f'{_URL}/t_rex_relational_similarity/test.jsonl'],
|
38 |
+
"conceptnet_relational_similarity": [f'{_URL}/conceptnet_relational_similarity/test.jsonl'],
|
39 |
+
"nell_relational_similarity": [f'{_URL}/nell_relational_similarity/test.jsonl']
|
40 |
},
|
41 |
str(datasets.Split.VALIDATION): {
|
42 |
'bats': [f'{_URL}/bats/valid.jsonl'],
|
|
|
46 |
'u4': [f'{_URL}/u4/valid.jsonl'],
|
47 |
"semeval2012_relational_similarity": [f'{_URL}/semeval2012_relational_similarity/valid.jsonl'],
|
48 |
"t_rex_relational_similarity": [f'{_URL}/t_rex_relational_similarity/valid.jsonl'],
|
49 |
+
"conceptnet_relational_similarity": [f'{_URL}/conceptnet_relational_similarity/valid.jsonl'],
|
50 |
+
"nell_relational_similarity": [f'{_URL}/nell_relational_similarity/valid.jsonl']
|
51 |
}
|
52 |
}
|
53 |
|
dataset/nell_relational_similarity/test.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
dataset/nell_relational_similarity/valid.jsonl
ADDED
@@ -0,0 +1,400 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"stem": ["Federal Bank", "India"], "choice": [["Paypal", "America"], ["America", "Paypal"], ["Brooklyn", "Prospect"], ["Savior", "Yeshua"], ["Senate", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
2 |
+
{"stem": ["Citibank", "Indonesia"], "choice": [["National", "China"], ["China", "National"], ["Beijing", "Peking"], ["Savior", "Son Jesus"], ["House", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
3 |
+
{"stem": ["Td", "Canada"], "choice": [["National", "Gambia"], ["Gambia", "National"], ["Columbia", "D C"], ["Example", "Jesus"], ["House", "Santorum"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
4 |
+
{"stem": ["National", "Italy"], "choice": [["Barclays", "Britain"], ["Britain", "Barclays"], ["Quebec", "Columbia"], ["Life", "Jesus"], ["House", "President Elect Barack Obama"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
5 |
+
{"stem": ["Lloyds Tsb", "UK"], "choice": [["Federal Bank", "India"], ["India", "Federal Bank"], ["Salt Lake", "Dc"], ["Man", "Jesus Christ"], ["Senate", "Lyndon B Johnson"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
6 |
+
{"stem": ["Commonwealth", "Canada"], "choice": [["Citibank", "Greece"], ["Greece", "Citibank"], ["Mumbai", "Bombay"], ["Peter", "John"], ["House", "President Elect Barack Obama"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
7 |
+
{"stem": ["Standard Chartered", "Hong Kong"], "choice": [["National", "Macedonia"], ["Macedonia", "National"], ["Los Angeles Ca", "L A"], ["Jacob", "Laban"], ["House", "President Bush"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
8 |
+
{"stem": ["Royal", "Belgium"], "choice": [["Axis", "India"], ["India", "Axis"], ["Jackson", "Pearl"], ["Zeus", "Apollo"], ["Senate", "Harry Reid"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
9 |
+
{"stem": ["Citibank", "Japan"], "choice": [["National", "Romania"], ["Romania", "National"], ["Istanbul", "Constantinople"], ["Buddha", "Jesus"], ["House", "Rahm Emanuel"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
10 |
+
{"stem": ["Hsbc", "Oman"], "choice": [["Barclays", "Britain"], ["Britain", "Barclays"], ["D C", "Albany"], ["Dionysos", "Hermes"], ["House", "Jimmy Carter"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
11 |
+
{"stem": ["Citigroup Global Markets", "America"], "choice": [["Hsbc", "Uae"], ["Uae", "Hsbc"], ["Chilliwack", "Columbia"], ["Hero", "Jesus"], ["House", "John A Boehner"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
12 |
+
{"stem": ["Citibank", "Indonesia"], "choice": [["Citi", "America"], ["America", "Citi"], ["Mississippi", "Sharm El Sheikh"], ["Mother", "Son"], ["U S House Of Representatives", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
13 |
+
{"stem": ["Citibank", "Uae"], "choice": [["National", "Malawi"], ["Malawi", "National"], ["Oakland", "Redwood City"], ["Mary", "Lord Jesus"], ["House", "President George Bush"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
14 |
+
{"stem": ["Citibank", "Thailand"], "choice": [["Royal", "Belgium"], ["Belgium", "Royal"], ["Columbia", "Merritt"], ["Holy Ghost", "Lord Jesus"], ["Senate", "Lyndon B Johnson"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
15 |
+
{"stem": ["Fidelity", "India"], "choice": [["National", "Maldives"], ["Maldives", "National"], ["Columbia", "Enderby"], ["Savior", "Yeshua"], ["House", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
16 |
+
{"stem": ["National", "Austria"], "choice": [["Barclays", "Botswana"], ["Botswana", "Barclays"], ["Harare", "Salisbury"], ["Holy Mother", "Jesus"], ["Assembly", "Bills"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
17 |
+
{"stem": ["Jpmorgan", "America"], "choice": [["National", "Wales"], ["Wales", "National"], ["Edo", "Tokyo"], ["Abraham", "Jesus"], ["House", "Time Bill Clinton"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
18 |
+
{"stem": ["World Bank", "United States"], "choice": [["Jpmorgan", "America"], ["America", "Jpmorgan"], ["Tokyo", "Edo"], ["Jacob", "Lt Joseph R Hunt"], ["House", "Bill"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
19 |
+
{"stem": ["Hsbc", "South Korea"], "choice": [["Barclays", "Canada"], ["Canada", "Barclays"], ["New York", "Jackson"], ["Savior", "Lord Jesus"], ["House", "Calvin Coolidge"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
20 |
+
{"stem": ["Citibank", "Belgium"], "choice": [["Northern Rock", "Britain"], ["Britain", "Northern Rock"], ["Augusta", "Savannah"], ["Man", "Jesus Christ"], ["House", "Rahm Emanuel"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
21 |
+
{"stem": ["J P Morgan", "America"], "choice": [["National", "Uganda"], ["Uganda", "National"], ["Nyc", "Central"], ["Master", "Christ Jesus"], ["House", "John Boehner"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
22 |
+
{"stem": ["Jpmorgan", "America"], "choice": [["National", "New Zealand"], ["New Zealand", "National"], ["Columbia", "Santa Cruz"], ["Example", "Jesus"], ["House", "Barack Obama"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
23 |
+
{"stem": ["Bnp Paribas", "India"], "choice": [["Bank One", "America"], ["America", "Bank One"], ["Ireland", "Columbia"], ["Man", "Jesus"], ["Assembly", "Bill"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
24 |
+
{"stem": ["Standard Chartered", "China"], "choice": [["Rbs", "Scotland"], ["Scotland", "Rbs"], ["Peace River", "Columbia"], ["Father", "Saviour"], ["House", "Mitt Romney"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
25 |
+
{"stem": ["Standard Chartered", "India"], "choice": [["Hsbc", "Thailand"], ["Thailand", "Hsbc"], ["Tasmania", "Land"], ["Pattern", "Jesus"], ["House", "Santorum"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
26 |
+
{"stem": ["Royal", "Belgium"], "choice": [["National", "Luxembourg"], ["Luxembourg", "National"], ["Columbia", "Comox Valley"], ["Savior", "Accept Jesus Christ"], ["House", "John Kasich"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
27 |
+
{"stem": ["Visa", "America"], "choice": [["National", "Armenia"], ["Armenia", "National"], ["Portland", "Arlington"], ["Savior", "Biblical Jesus"], ["Senate", "Bob Dole"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
28 |
+
{"stem": ["Hsbc", "Oman"], "choice": [["National", "Germany"], ["Germany", "National"], ["Dc", "Gw"], ["Jesus", "Blessed Mother"], ["House", "Cynthia Mckinney"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
29 |
+
{"stem": ["Td", "Canada"], "choice": [["Hsbc", "USA"], ["USA", "Hsbc"], ["Arkansas", "Buena Vista"], ["Rachel", "Joseph"], ["House", "Michelle Obama"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
30 |
+
{"stem": ["National", "Argentina"], "choice": [["European Central Bank", "Japan"], ["Japan", "European Central Bank"], ["Comox Valley", "Columbia"], ["Tamar", "Perez"], ["House", "President Obama"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
31 |
+
{"stem": ["Standard Chartered", "China"], "choice": [["National", "Indonesia"], ["Indonesia", "National"], ["Harlem", "Central"], ["The Virgin", "Jesus"], ["House", "Santorum"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
32 |
+
{"stem": ["Barclays Capital", "UK"], "choice": [["Visa", "America"], ["America", "Visa"], ["Ho Chi Minh City", "Bangkok"], ["Savior", "Accept Jesus Christ"], ["House", "Bill Clinton"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
33 |
+
{"stem": ["Lloyds Tsb", "UK"], "choice": [["Commonwealth", "South Africa"], ["South Africa", "Commonwealth"], ["Manitoba", "Columbia"], ["Adam", "Eden"], ["House", "John Murtha"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
34 |
+
{"stem": ["Wells Fargo", "America"], "choice": [["Standard Chartered", "China"], ["China", "Standard Chartered"], ["Salisbury", "Harare"], ["Virgin", "Lord Jesus"], ["Senate", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
35 |
+
{"stem": ["Citi", "India"], "choice": [["National", "Algeria"], ["Algeria", "National"], ["Houston", "Harvard"], ["Author", "Jesus"], ["U S Senate", "John Mccain"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
36 |
+
{"stem": ["Hsbc", "China"], "choice": [["National", "Greece"], ["Greece", "National"], ["Pearl", "Jackson"], ["Mother Mary", "Lord Jesus"], ["House", "Billy Tauzin"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
37 |
+
{"stem": ["Wachovia", "America"], "choice": [["Anz", "New Zealand"], ["New Zealand", "Anz"], ["Leningrad", "Petersburg"], ["Cross", "Jesus Christ"], ["House", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
38 |
+
{"stem": ["Royal", "New Zealand"], "choice": [["Citi", "UK"], ["UK", "Citi"], ["Augusta", "Savannah"], ["Zechariah", "John The Baptist"], ["Senate", "Mitch Mcconnell"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
39 |
+
{"stem": ["National", "Slovakia"], "choice": [["Paypal", "America"], ["America", "Paypal"], ["New York", "D C"], ["Catholic", "Jesus"], ["House", "John Kerry"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
40 |
+
{"stem": ["Commonwealth", "South Africa"], "choice": [["Banamex", "Mexico"], ["Mexico", "Banamex"], ["Los Angeles Ca", "Santa Clara"], ["Savior", "Accept Jesus Christ"], ["U S House", "Tom Delay"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
41 |
+
{"stem": ["Hsbc", "Poland"], "choice": [["National", "New Zealand"], ["New Zealand", "National"], ["Columbia", "Windsor"], ["Eve", "Sin"], ["House", "Newt Gingrich"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
42 |
+
{"stem": ["Citibank", "Hungary"], "choice": [["National", "South Africa"], ["South Africa", "National"], ["Columbia", "Whitehorse"], ["Savior", "Begotten Son"], ["House", "John Conyers"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
43 |
+
{"stem": ["Hsbc", "Arabia Saudita"], "choice": [["National", "Ireland"], ["Ireland", "National"], ["Paris", "Bucharest"], ["Mother", "Cross"], ["U S House", "Tom Delay"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
44 |
+
{"stem": ["Halifax", "Scotland"], "choice": [["Hsbc", "USA"], ["USA", "Hsbc"], ["Sacramento", "Rio Vista"], ["Michael", "Jesus"], ["U S Senate", "Bill"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
45 |
+
{"stem": ["Hsbc", "Cayman Islands"], "choice": [["National", "China"], ["China", "National"], ["Howard", "Northwest Washington"], ["Blessed Virgin Mary", "Jesus"], ["House", "Ronald Reagan"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
46 |
+
{"stem": ["Commonwealth", "India"], "choice": [["National", "Laos People S Democratic Republic"], ["Laos People S Democratic Republic", "National"], ["Winnipeg", "Columbia"], ["Author", "Jesus"], ["House", "Michelle Obama"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
47 |
+
{"stem": ["Deutsche", "India"], "choice": [["National", "Indonesia"], ["Indonesia", "National"], ["Mumbai", "Bombay"], ["Begotten Son", "Lord Jesus"], ["House", "Barack Obama"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
48 |
+
{"stem": ["First Bank", "Nigeria"], "choice": [["Hsbc", "Japan"], ["Japan", "Hsbc"], ["Columbia", "Hong Kong"], ["Mother", "Mary"], ["House", "Sherrod Brown"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
49 |
+
{"stem": ["Royal", "New Zealand"], "choice": [["National", "Montenegro"], ["Montenegro", "National"], ["Auckland", "Columbia"], ["Mother", "Child"], ["House", "John Mccain"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
50 |
+
{"stem": ["National", "Maldives"], "choice": [["Barclays", "England"], ["England", "Barclays"], ["Plymouth", "Columbia"], ["God The Father", "Jesus"], ["House", "Andrew Jackson"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
51 |
+
{"stem": ["Hsbc", "Panama"], "choice": [["National", "Bulgaria"], ["Bulgaria", "National"], ["Ho Chi Minh City", "Saigon"], ["Christians", "Jesus"], ["House", "Dwight Eisenhower"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
52 |
+
{"stem": ["Citizens", "U S"], "choice": [["Pnc", "America"], ["America", "Pnc"], ["Columbia", "North Vancouver"], ["John The Baptist", "Lord Jesus"], ["House", "Bush"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
53 |
+
{"stem": ["Citibank", "UK"], "choice": [["J P Morgan", "America"], ["America", "J P Morgan"], ["Quebec", "Columbia"], ["Heavenly Father", "Jesus"], ["House", "Gore"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
54 |
+
{"stem": ["Citizens", "U S"], "choice": [["Royal", "Denmark"], ["Denmark", "Royal"], ["Columbia", "Benton"], ["Adam", "Garden Of Eden"], ["House", "John Edwards"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
55 |
+
{"stem": ["Citibank", "Greece"], "choice": [["Citi", "Canada"], ["Canada", "Citi"], ["Philadelphia", "Philly"], ["Second Person", "Jesus"], ["House", "Herbert Hoover"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
56 |
+
{"stem": ["Chase", "America"], "choice": [["National", "Spain"], ["Spain", "National"], ["Jackson", "Queens"], ["Image", "Jesus"], ["U S Senate", "Harry Reid"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
57 |
+
{"stem": ["Citibank", "Hungary"], "choice": [["Hsbc", "UK"], ["UK", "Hsbc"], ["Las Vegas", "Columbia"], ["Mother Mary", "Lord Jesus"], ["House", "Cynthia Mckinney"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
58 |
+
{"stem": ["J P Morgan Securities Inc", "America"], "choice": [["Hsbc", "Japan"], ["Japan", "Hsbc"], ["San Diego", "Darlington"], ["Father", "Lord Jesus"], ["House", "Senator Obama"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
59 |
+
{"stem": ["Hsbc", "Cayman Islands"], "choice": [["National", "Persia"], ["Persia", "National"], ["Petersburg", "Leningrad"], ["Man", "Jesus Christ"], ["House", "Democrat Barack Obama"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
60 |
+
{"stem": ["National", "Indonesia"], "choice": [["Barclays", "France France"], ["France France", "Barclays"], ["La", "Beverly Hills"], ["Savior", "Begotten Son"], ["Senate", "Arlen Specter"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
61 |
+
{"stem": ["Commonwealth", "South Africa"], "choice": [["Chase", "America"], ["America", "Chase"], ["Brooklyn", "Prospect"], ["Mary", "Jesus"], ["House", "John Boehner"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
62 |
+
{"stem": ["Citibank", "Hong Kong"], "choice": [["National", "Barbados"], ["Barbados", "National"], ["La Crosse", "Mississippi"], ["Saviour", "Father"], ["House", "John Boehner"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
63 |
+
{"stem": ["Standard Chartered", "China"], "choice": [["National", "Democratic Republic Of Congo"], ["Democratic Republic Of Congo", "National"], ["Columbia", "Prince Edward Island"], ["Christopher", "Jesus"], ["House", "Cynthia Mckinney"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
64 |
+
{"stem": ["Northern Rock", "Britain"], "choice": [["National", "Democratic Republic Of Congo"], ["Democratic Republic Of Congo", "National"], ["Columbia", "Tasmania"], ["Mother Mary", "Jesus Christ"], ["U S Senate", "Bill"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
65 |
+
{"stem": ["Citibank", "Uae"], "choice": [["National", "Libya"], ["Libya", "National"], ["Columbia", "Plymouth"], ["Savior", "Begotten Son"], ["U S Senate", "John Mccain"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
66 |
+
{"stem": ["Jpmorgan", "America"], "choice": [["National", "Palestine"], ["Palestine", "National"], ["Kelowna", "Columbia"], ["Michael", "Jesus"], ["House", "George H W Bush"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
67 |
+
{"stem": ["J P Morgan Securities", "America"], "choice": [["Citibank", "Belgium"], ["Belgium", "Citibank"], ["D C", "Washington D C"], ["Son", "Yeshua"], ["House", "George W Bush"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
68 |
+
{"stem": ["Citi", "Canada"], "choice": [["National", "Iraq"], ["Iraq", "National"], ["Darlington", "San Diego"], ["Virgin", "Lord Jesus"], ["House", "John Kasich"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
69 |
+
{"stem": ["Hsbc", "Arabia Saudita"], "choice": [["Paypal", "America"], ["America", "Paypal"], ["Columbia", "Prince George"], ["Mary", "James"], ["House", "Andrew Jackson"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
70 |
+
{"stem": ["Citibank", "China"], "choice": [["National", "India"], ["India", "National"], ["Columbia", "Cambridge"], ["Christians", "Jesus"], ["House", "Sen Barack Obama"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
71 |
+
{"stem": ["Abn Amro", "Netherlands"], "choice": [["National", "Cape Verde"], ["Cape Verde", "National"], ["Petersburg", "Leningrad"], ["Serug", "Nahor"], ["U S Senate", "Bill"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
72 |
+
{"stem": ["Hsbc", "Brazil"], "choice": [["National", "Wales"], ["Wales", "National"], ["Dc", "Columbia"], ["Shepherd", "Jesus"], ["House", "George Mcgovern"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
73 |
+
{"stem": ["Reliance Industries Limited", "India"], "choice": [["National", "Portugal"], ["Portugal", "National"], ["Howard", "Dc"], ["Shepherd", "Lord Jesus"], ["Senate", "Bob Dole"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
74 |
+
{"stem": ["Hsbc", "China"], "choice": [["National", "Cyprus"], ["Cyprus", "National"], ["Columbia", "Enderby"], ["Mary", "New Orleans Saints"], ["House", "George W Bush"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
75 |
+
{"stem": ["Hsbc", "South Korea"], "choice": [["National", "Japan"], ["Japan", "National"], ["Elizabeth", "Norfolk"], ["Mother", "Cross"], ["U S Senate", "Bill"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
76 |
+
{"stem": ["Principal", "India"], "choice": [["National", "Peru"], ["Peru", "National"], ["Columbia", "Las Vegas"], ["Yahweh", "Yahshua"], ["House", "George W"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
77 |
+
{"stem": ["Axis", "India"], "choice": [["National", "UK"], ["UK", "National"], ["Comox Valley", "Columbia"], ["Isaac", "Jacob"], ["House", "Gephardt"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
78 |
+
{"stem": ["Citi", "India"], "choice": [["Barclays", "France France"], ["France France", "Barclays"], ["Edo", "Tokyo"], ["Jared", "Enoch Eight Hundred Years"], ["House", "Dick Armey"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
79 |
+
{"stem": ["Royal", "New Zealand"], "choice": [["National", "Mongolia"], ["Mongolia", "National"], ["Plymouth", "Columbia"], ["Blessed Virgin Mary", "Jesus"], ["House", "President Bush"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
80 |
+
{"stem": ["Credit Suisse", "Switzerland Switzerland"], "choice": [["National", "Persia"], ["Persia", "National"], ["Sacramento", "Rio Vista"], ["Terah", "Abram"], ["House", "Gephardt"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
81 |
+
{"stem": ["Citibank", "Hong Kong"], "choice": [["National", "Vanuatu"], ["Vanuatu", "National"], ["Ohio", "Columbia"], ["Virgin Mary", "Son"], ["Senate", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
82 |
+
{"stem": ["Citibank", "Greece"], "choice": [["National", "Mauritania"], ["Mauritania", "National"], ["Beverly Hills", "La"], ["Sun", "Jesus"], ["House", "Karl Rove"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
83 |
+
{"stem": ["Royal", "New Zealand"], "choice": [["Citi", "Canada"], ["Canada", "Citi"], ["Hong Kong", "Columbia"], ["Man", "Eden"], ["House", "George W Bush"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
84 |
+
{"stem": ["Citigroup", "America"], "choice": [["National", "The Philippines"], ["The Philippines", "National"], ["Saint Louis", "Mississippi"], ["Mother", "Son"], ["U S House Of Representatives", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
85 |
+
{"stem": ["Citigroup Global Markets", "America"], "choice": [["National", "China"], ["China", "National"], ["Mississippi", "Helena"], ["Serug", "Nahor"], ["House", "Sen Barack Obama"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
86 |
+
{"stem": ["Hsbc", "Panama"], "choice": [["National", "Mauritius"], ["Mauritius", "National"], ["Elizabeth", "Norfolk"], ["Virgin Mary", "Son"], ["Senate", "Harry Reid"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
87 |
+
{"stem": ["Citi", "UK"], "choice": [["National", "Barbados"], ["Barbados", "National"], ["D C", "Georgetown"], ["May God", "Jesus Christ"], ["House", "George W Bush"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
88 |
+
{"stem": ["J P Morgan Securities Inc", "America"], "choice": [["Royal", "Belgium"], ["Belgium", "Royal"], ["Dc", "Howard"], ["Mother Mary", "Jesus Christ"], ["U S Senate", "John Mccain"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
89 |
+
{"stem": ["Lloyds", "England"], "choice": [["European Central Bank", "Japan"], ["Japan", "European Central Bank"], ["Dc", "Columbia"], ["Father", "Yeshua"], ["House", "Dick Gephardt"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
90 |
+
{"stem": ["Chase", "America"], "choice": [["Citibank", "Pakistan"], ["Pakistan", "Citibank"], ["Columbia", "Tasmania"], ["Son", "Mary"], ["House", "Senator Obama"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
91 |
+
{"stem": ["Hsbc", "Jordan"], "choice": [["National", "South Vietnam"], ["South Vietnam", "National"], ["Queens", "Jackson"], ["Mother Mary", "Lord Jesus"], ["House", "Dick Gephardt"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
92 |
+
{"stem": ["First Bank", "Nigeria"], "choice": [["J P Morgan Chase", "America"], ["America", "J P Morgan Chase"], ["Columbia", "Powell River"], ["God The Father", "Son"], ["House", "Rahm Emanuel"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
93 |
+
{"stem": ["First Bank", "Nigeria"], "choice": [["Bnp Paribas", "India"], ["India", "Bnp Paribas"], ["Istanbul", "Constantinople"], ["Holy Ghost", "Lord"], ["House", "Gingrich"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
94 |
+
{"stem": ["National", "Tunisia"], "choice": [["Barclays", "France France"], ["France France", "Barclays"], ["Oxford", "Columbia"], ["Sun", "Jesus"], ["House", "Barack Obama"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
95 |
+
{"stem": ["Hsbc", "Poland"], "choice": [["National", "Nepal"], ["Nepal", "National"], ["Kashi", "Varanasi"], ["Eve", "Garden"], ["House", "John Kasich"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
96 |
+
{"stem": ["Citi", "UK"], "choice": [["National", "South Korea"], ["South Korea", "National"], ["La", "London"], ["Holy Ghost", "Son"], ["House", "Richard Nixon"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
97 |
+
{"stem": ["Citibank", "Indonesia"], "choice": [["Wachovia", "America"], ["America", "Wachovia"], ["L A", "Los Angeles Ca"], ["Holy Ghost", "Son"], ["Senate", "Mitch Mcconnell"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
98 |
+
{"stem": ["Deutsche", "India"], "choice": [["Hsbc", "Brazil"], ["Brazil", "Hsbc"], ["Duncan", "Columbia"], ["Cain", "Enoch"], ["House", "Jimmy Carter"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
99 |
+
{"stem": ["Jpmorgan", "America"], "choice": [["National", "Rwanda"], ["Rwanda", "National"], ["Land", "Ireland"], ["Saturn", "Uranus"], ["House", "John A Boehner"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
100 |
+
{"stem": ["Deutsche Bank", "India"], "choice": [["Hsbc", "Japan"], ["Japan", "Hsbc"], ["D C", "Washington D C"], ["Savior", "Yeshua"], ["House", "John A Boehner"]], "answer": 0, "prefix": "concept:bankbankincountry"}
|
101 |
+
{"stem": ["Leningrad", "Petersburg"], "choice": [["Tenerife", "Santa Cruz"], ["Santa Cruz", "Tenerife"], ["National", "Uganda"], ["Mary", "Savior"], ["House", "Grover Cleveland"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
102 |
+
{"stem": ["Arlington", "Columbia"], "choice": [["Kashi", "Varanasi"], ["Varanasi", "Kashi"], ["J P Morgan Chase", "America"], ["Blessed Mother", "Jesus"], ["House", "Sen Barack Obama"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
103 |
+
{"stem": ["Howard", "D C"], "choice": [["Spokane", "Columbia"], ["Columbia", "Spokane"], ["Commonwealth", "Canada"], ["Lion", "Jesus"], ["House", "John Kasich"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
104 |
+
{"stem": ["Dc", "Columbia"], "choice": [["Tokyo", "Edo"], ["Edo", "Tokyo"], ["Citibank", "India"], ["Michael", "Jesus"], ["House", "Newt Gingrich"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
105 |
+
{"stem": ["Northwest Washington", "Georgetown"], "choice": [["Baja California Sur", "Columbia"], ["Columbia", "Baja California Sur"], ["National", "Netherlands"], ["St Joseph", "Jesus"], ["House", "Hillary"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
106 |
+
{"stem": ["Santa Cruz", "Tenerife"], "choice": [["Hudson", "Albany"], ["Albany", "Hudson"], ["National", "The Philippines"], ["Heavenly Father", "Jesus"], ["House", "John Conyers"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
107 |
+
{"stem": ["Santa Cruz", "Tenerife"], "choice": [["Ourense", "Orense"], ["Orense", "Ourense"], ["Citibank", "Japan"], ["Heavenly Father", "Jesus Christ"], ["House", "Grover Cleveland"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
108 |
+
{"stem": ["Columbia", "Kelowna"], "choice": [["Northwest Washington", "Georgetown"], ["Georgetown", "Northwest Washington"], ["Citibank", "Japan"], ["Hero", "Jesus"], ["U S House Of Representatives", "Barney Frank"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
109 |
+
{"stem": ["Columbia", "Manitoba"], "choice": [["Petersburg", "St Petersburg"], ["St Petersburg", "Petersburg"], ["Citibank", "UK"], ["Heavenly Father", "Son"], ["House", "John Boehner"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
110 |
+
{"stem": ["Orient", "Boston"], "choice": [["Beverly Hills", "La"], ["La", "Beverly Hills"], ["Hsbc", "Singapore"], ["Great", "Jesus"], ["House", "Tom Delay"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
111 |
+
{"stem": ["New York", "Jackson"], "choice": [["Cambridge", "Columbia"], ["Columbia", "Cambridge"], ["Commonwealth", "India"], ["Father", "Jesus"], ["Senate", "Harry Reid"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
112 |
+
{"stem": ["Nogales", "Santa Cruz"], "choice": [["Washington D C", "Howard"], ["Howard", "Washington D C"], ["European Central Bank", "Japan"], ["Man", "Eden"], ["House", "Harry Truman"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
113 |
+
{"stem": ["Mexico City", "Columbia"], "choice": [["Georgetown", "D C"], ["D C", "Georgetown"], ["National", "Bulgaria"], ["Shem", "Arphaxad"], ["House", "Time Bill Clinton"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
114 |
+
{"stem": ["Paris", "Bucharest"], "choice": [["Istanbul", "Constantinople"], ["Constantinople", "Istanbul"], ["Chase", "America"], ["Child", "Jesus"], ["Senate", "Tom Daschle"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
115 |
+
{"stem": ["Georgetown", "Dc"], "choice": [["Union", "North Charleston"], ["North Charleston", "Union"], ["Citibank", "Bahrain"], ["Miley Cyrus", "Billy Ray Cyrus"], ["House", "George W Bush"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
116 |
+
{"stem": ["Bucharest", "Paris"], "choice": [["Guangzhou", "Canton"], ["Canton", "Guangzhou"], ["National", "Greenland"], ["Christian", "Jesus"], ["House", "George W"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
117 |
+
{"stem": ["Kamloops", "Columbia"], "choice": [["Chicago South", "Mississippi"], ["Mississippi", "Chicago South"], ["Hsbc", "Pakistan"], ["Heavenly Father", "Jesus"], ["House", "Richard Nixon"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
118 |
+
{"stem": ["Kingstown", "Dun Laoghaire"], "choice": [["Houston", "Harvard"], ["Harvard", "Houston"], ["National", "England"], ["True God And True Man", "Jesus"], ["House", "Gingrich"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
119 |
+
{"stem": ["Columbia", "Portland"], "choice": [["Elizabeth", "Norfolk"], ["Norfolk", "Elizabeth"], ["Barclays", "Scotland"], ["Father", "Lord"], ["House", "President Bush"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
120 |
+
{"stem": ["Santa Cruz", "Tenerife"], "choice": [["Los Angeles Ca", "L A"], ["L A", "Los Angeles Ca"], ["Hsbc", "UK"], ["Saviour", "Father"], ["House", "Rahm Emanuel"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
121 |
+
{"stem": ["Orient", "Boston"], "choice": [["Ho Chi Minh City", "Saigon"], ["Saigon", "Ho Chi Minh City"], ["Hsbc", "Brunei"], ["Blessed Virgin Mary", "Jesus"], ["House", "Senator Obama"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
122 |
+
{"stem": ["Saigon", "Ho Chi Minh City"], "choice": [["San Diego", "Logan"], ["Logan", "San Diego"], ["Citizens", "US"], ["The Virgin", "Jesus"], ["House", "Pawlenty"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
123 |
+
{"stem": ["Whitehorse", "Columbia"], "choice": [["Land", "Tasmania"], ["Tasmania", "Land"], ["Citi", "UK"], ["Jesse", "David"], ["House", "George W"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
124 |
+
{"stem": ["Redwood City", "Oakland"], "choice": [["Prince Edward Island", "Columbia"], ["Columbia", "Prince Edward Island"], ["First Bank", "Nigeria"], ["Cain", "Enoch"], ["U S Senate", "Harry Reid"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
125 |
+
{"stem": ["Columbia", "Hawaii"], "choice": [["D C", "Washington D C"], ["Washington D C", "D C"], ["National", "Ecuador"], ["Shem", "Arphaxad"], ["U S House", "John Boehner"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
126 |
+
{"stem": ["D C", "New York"], "choice": [["Castlegar", "Columbia"], ["Columbia", "Castlegar"], ["Hsbc", "South Korea"], ["Savior", "Biblical Jesus"], ["House", "John Boehner"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
127 |
+
{"stem": ["Warsaw", "Warszawa"], "choice": [["Columbia", "Mexico City"], ["Mexico City", "Columbia"], ["Citibank", "Belgium"], ["True God And True Man", "Jesus"], ["House", "Laura Bush"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
128 |
+
{"stem": ["Hong Kong", "Canton"], "choice": [["Columbia", "Clearwater"], ["Clearwater", "Columbia"], ["National", "Peru"], ["Life", "Jesus Christ"], ["House", "Ronald Reagan"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
129 |
+
{"stem": ["Washington D C", "Columbia"], "choice": [["Saigon", "Ho Chi Minh City"], ["Ho Chi Minh City", "Saigon"], ["National", "Libya"], ["Mother", "Lt Joseph R Hunt"], ["House", "John Kerry"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
130 |
+
{"stem": ["UK", "Empire"], "choice": [["Columbia", "Hawaii"], ["Hawaii", "Columbia"], ["Citi", "UK"], ["Abraham", "Isaac"], ["House", "Laura Bush"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
131 |
+
{"stem": ["Queens", "Jackson"], "choice": [["Tenerife", "Santa Cruz"], ["Santa Cruz", "Tenerife"], ["National", "England"], ["Virgin", "Jesus"], ["House", "Billy Tauzin"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
132 |
+
{"stem": ["Hanoi", "Saigon"], "choice": [["Columbia", "Manitoba"], ["Manitoba", "Columbia"], ["Axis", "India"], ["Christian", "Jesus Christ"], ["House", "Al Gore"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
133 |
+
{"stem": ["Greenland", "Columbia"], "choice": [["St Augustine", "Saint Augustine"], ["Saint Augustine", "St Augustine"], ["Citibank", "Belgium"], ["Mother", "Lt Joseph R Hunt"], ["House", "Karl Rove"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
134 |
+
{"stem": ["Columbia", "Abbotsford"], "choice": [["Nyc", "Central"], ["Central", "Nyc"], ["National", "Iraq"], ["Son", "Jesus"], ["House", "Mitt Romney"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
135 |
+
{"stem": ["Ireland", "Land"], "choice": [["Columbia", "Spa"], ["Spa", "Columbia"], ["Citigroup", "America"], ["Julia Roberts", "Phinneaus Walter Moder"], ["Senate", "Lyndon B Johnson"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
136 |
+
{"stem": ["Gw", "Dc"], "choice": [["Columbia", "John"], ["John", "Columbia"], ["Fed", "Japan"], ["Grace", "Jesus Christ"], ["House", "Gerald Ford"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
137 |
+
{"stem": ["Land", "Ireland"], "choice": [["Columbia", "Whitehorse"], ["Whitehorse", "Columbia"], ["J P Morgan", "America"], ["St Joseph", "Jesus"], ["Senate", "Mitch Mcconnell"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
138 |
+
{"stem": ["Paris", "Detroit"], "choice": [["Columbia", "Victoria"], ["Victoria", "Columbia"], ["National", "Lithuania"], ["Enosh", "Cainan"], ["Senate", "Mitch Mcconnell"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
139 |
+
{"stem": ["Napoli", "Naples"], "choice": [["Edo", "Tokyo"], ["Tokyo", "Edo"], ["National", "Democratic Republic Of Congo"], ["Shem", "Arphaxad"], ["House", "Sen Barack Obama"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
140 |
+
{"stem": ["Duncan", "Columbia"], "choice": [["Amman", "Philadelphia"], ["Philadelphia", "Amman"], ["Fed", "Japan"], ["Savior", "Jesus"], ["House", "Hillary"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
141 |
+
{"stem": ["Patna", "Pataliputra"], "choice": [["Jackson", "Pearl"], ["Pearl", "Jackson"], ["National", "Barbados"], ["Abraham", "Isaac"], ["House", "Harry Truman"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
142 |
+
{"stem": ["La", "San Diego"], "choice": [["Baja California Sur", "Columbia"], ["Columbia", "Baja California Sur"], ["Hsbc", "Kuwait"], ["Life", "Jesus"], ["House", "Jimmy Carter"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
143 |
+
{"stem": ["Winnipeg", "Columbia"], "choice": [["Saint Augustine", "St Augustine"], ["St Augustine", "Saint Augustine"], ["Citigroup Global Markets", "America"], ["King", "Son Jesus"], ["House", "Democrat Bill Clinton"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
144 |
+
{"stem": ["Columbia", "Comox Valley"], "choice": [["D C", "Howard"], ["Howard", "D C"], ["Td", "Canada"], ["Blessed Virgin", "Jesus"], ["House", "Tom Delay"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
145 |
+
{"stem": ["Jakarta", "Batavia"], "choice": [["Salisbury", "Harare"], ["Harare", "Salisbury"], ["Standard Chartered", "India"], ["Holy Ghost", "Son"], ["House", "President George Bush"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
146 |
+
{"stem": ["Washington D C", "D C"], "choice": [["Rome", "Roma"], ["Roma", "Rome"], ["Citibank", "Bahrain"], ["Eve", "Eden"], ["House", "John Edwards"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
147 |
+
{"stem": ["Mississippi", "St Paul"], "choice": [["Portland", "Arlington"], ["Arlington", "Portland"], ["National", "Montenegro"], ["Terah", "Abraham"], ["House", "Gerald Ford"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
148 |
+
{"stem": ["Hanoi", "Ho Chi Minh City"], "choice": [["Forest", "Portland"], ["Portland", "Forest"], ["National", "Indonesia"], ["Rachel", "Joseph"], ["House", "Michelle Obama"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
149 |
+
{"stem": ["Washington D C", "Georgetown"], "choice": [["Howard", "Dc"], ["Dc", "Howard"], ["Hsbc", "Panama"], ["Image", "Jesus"], ["House", "Gore"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
150 |
+
{"stem": ["Hanoi", "Saigon"], "choice": [["Washington D C", "Columbia"], ["Columbia", "Washington D C"], ["Citibank", "Hungary"], ["Catholic", "Jesus"], ["House", "Tom Delay"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
151 |
+
{"stem": ["Detroit", "Paris"], "choice": [["Spokane", "Columbia"], ["Columbia", "Spokane"], ["Citigroup", "America"], ["Mother", "Blessed Sacrament"], ["House", "Gingrich"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
152 |
+
{"stem": ["Nyc", "D C"], "choice": [["Rho", "Milan"], ["Milan", "Rho"], ["Hsbc", "Singapore"], ["Savior", "Begotten Son"], ["House", "Rahm Emanuel"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
153 |
+
{"stem": ["Rome", "Roma"], "choice": [["Columbia", "Las Vegas"], ["Las Vegas", "Columbia"], ["National", "Cape Verde"], ["Mary", "Baby"], ["U S House Of Representatives", "Barney Frank"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
154 |
+
{"stem": ["Santa Clara", "Los Angeles Ca"], "choice": [["Beverly Hills", "La"], ["La", "Beverly Hills"], ["US Airways", "America"], ["Great", "Jesus"], ["House", "Hillary"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
155 |
+
{"stem": ["Bucharest", "Paris"], "choice": [["Prince George", "Columbia"], ["Columbia", "Prince George"], ["World Bank", "United States"], ["Isaac", "Jacob"], ["House", "Mark Green"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
156 |
+
{"stem": ["Ireland", "Columbia"], "choice": [["Central", "Harlem"], ["Harlem", "Central"], ["National", "Belize"], ["Lion", "Jesus"], ["House", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
157 |
+
{"stem": ["Newton", "Baltimore"], "choice": [["Tasmania", "Land"], ["Land", "Tasmania"], ["National", "India"], ["Savior", "God Jesus"], ["House", "Democrat Barack Obama"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
158 |
+
{"stem": ["New York", "D C"], "choice": [["Portland", "Arlington"], ["Arlington", "Portland"], ["J P Morgan Securities", "America"], ["Holy Mother", "Jesus"], ["Senate", "Harry Reid"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
159 |
+
{"stem": ["Hanoi", "Ho Chi Minh City"], "choice": [["Norfolk", "Elizabeth"], ["Elizabeth", "Norfolk"], ["National", "Vietnam"], ["Second Person", "Jesus"], ["House", "Gerald Ford"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
160 |
+
{"stem": ["Bucharest", "Paris"], "choice": [["Petersburg", "Leningrad"], ["Leningrad", "Petersburg"], ["National", "Ireland"], ["Father", "Saviour"], ["House", "John Mccain"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
161 |
+
{"stem": ["Columbia", "UK"], "choice": [["Beverly Hills", "La"], ["La", "Beverly Hills"], ["Wachovia", "America"], ["Creator", "Son"], ["House", "Billy Tauzin"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
162 |
+
{"stem": ["Logan", "San Diego"], "choice": [["Tasmania", "Land"], ["Land", "Tasmania"], ["Northern Rock", "UK"], ["God The Father", "Jesus"], ["House", "Grover Cleveland"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
163 |
+
{"stem": ["Orient", "Boston"], "choice": [["Columbia", "New Westminster"], ["New Westminster", "Columbia"], ["Jpmorgan", "America"], ["Life", "Christ Jesus"], ["House", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
164 |
+
{"stem": ["Santa Fe", "Rio"], "choice": [["Enderby", "Columbia"], ["Columbia", "Enderby"], ["Aig", "America"], ["Tamar", "Perez"], ["Assembly", "Bill"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
165 |
+
{"stem": ["Logan", "San Diego"], "choice": [["Castlegar", "Columbia"], ["Columbia", "Castlegar"], ["National", "Belize"], ["Lord", "Jesus"], ["House", "Herbert Hoover"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
166 |
+
{"stem": ["La Crosse", "Mississippi"], "choice": [["Ohio", "Columbia"], ["Columbia", "Ohio"], ["National", "Bosnia Herzegovina"], ["Lord", "Real Jesus"], ["House", "Jimmy Carter"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
167 |
+
{"stem": ["Dc", "Howard"], "choice": [["Columbia", "Durham"], ["Durham", "Columbia"], ["Hsbc", "USA"], ["Friend", "Jesus"], ["U S House", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
168 |
+
{"stem": ["Waterloo", "Austin"], "choice": [["Arlington", "Columbia"], ["Columbia", "Arlington"], ["Pnc", "America"], ["Begotten Son", "Jesus"], ["House", "Herbert Hoover"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
169 |
+
{"stem": ["Varanasi", "Kashi"], "choice": [["Columbia", "Surrey"], ["Surrey", "Columbia"], ["Hsbc", "Jordan"], ["Jew", "Jesus"], ["House", "Al Gore"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
170 |
+
{"stem": ["Boston", "Columbia"], "choice": [["Dc", "Mount Pleasant"], ["Mount Pleasant", "Dc"], ["National", "Italy"], ["Mother Mary", "Jesus Christ"], ["House", "Barack Obama"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
171 |
+
{"stem": ["Batavia", "Jakarta"], "choice": [["Dc", "Crystal"], ["Crystal", "Dc"], ["Citibank", "China"], ["Terah", "Abram"], ["House", "John Kerry"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
172 |
+
{"stem": ["Peace River", "Columbia"], "choice": [["Austin", "Waterloo"], ["Waterloo", "Austin"], ["Citibank", "The Philippines"], ["Mother Mary", "Lord Jesus"], ["House", "Gephardt"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
173 |
+
{"stem": ["Augusta", "Savannah"], "choice": [["New York", "D C"], ["D C", "New York"], ["National", "Panama"], ["True God", "Jesus"], ["House", "Laura Bush"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
174 |
+
{"stem": ["Ohio", "Pittsburgh"], "choice": [["Columbia", "Hong Kong"], ["Hong Kong", "Columbia"], ["National", "Italy"], ["Terah", "Abraham"], ["House", "George W Bush"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
175 |
+
{"stem": ["Benton", "Columbia"], "choice": [["Ho Chi Minh City", "Saigon"], ["Saigon", "Ho Chi Minh City"], ["National", "Nepal"], ["Adam", "Eden"], ["House", "George W Bush"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
176 |
+
{"stem": ["Waterloo", "Austin"], "choice": [["Cambridge", "Columbia"], ["Columbia", "Cambridge"], ["Hsbc", "Bahrain"], ["Uranus", "Saturn"], ["U S House", "John Boehner"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
177 |
+
{"stem": ["College", "Columbia"], "choice": [["Portland", "Forest"], ["Forest", "Portland"], ["Standard Chartered", "China"], ["Mother", "Cross"], ["House", "Bill Clinton"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
178 |
+
{"stem": ["Mississippi", "La Crosse"], "choice": [["Queensland", "Columbia"], ["Columbia", "Queensland"], ["Citibank", "Malaysia"], ["Savior", "Father"], ["House", "Sherrod Brown"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
179 |
+
{"stem": ["Dc", "New York"], "choice": [["Istanbul", "Constantinople"], ["Constantinople", "Istanbul"], ["J P Morgan Securities", "America"], ["Uranus", "Saturn"], ["House", "John Kasich"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
180 |
+
{"stem": ["Paris", "Bucharest"], "choice": [["Cache", "Arkansas"], ["Arkansas", "Cache"], ["National", "Greece"], ["Peter", "John"], ["Assembly", "Bill"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
181 |
+
{"stem": ["Coastal", "Columbia"], "choice": [["Saigon", "Ho Chi Minh City"], ["Ho Chi Minh City", "Saigon"], ["First Bank", "Nigeria"], ["Father", "Lord Jesus"], ["House", "George W"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
182 |
+
{"stem": ["Leningrad", "Petersburg"], "choice": [["Columbia", "Victoria"], ["Victoria", "Columbia"], ["National", "Sierra Leone"], ["Shepherd", "Lord Jesus"], ["House", "Tom Delay"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
183 |
+
{"stem": ["Enderby", "Columbia"], "choice": [["La", "Los Angeles Ca"], ["Los Angeles Ca", "La"], ["Cibc", "Canada"], ["Virgin Mary", "Lord"], ["House", "Karl Rove"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
184 |
+
{"stem": ["Kinshasa", "Leopoldville"], "choice": [["Manitoba", "Columbia"], ["Columbia", "Manitoba"], ["Barclays", "Britain"], ["Virgin Mary", "Lord"], ["House", "Andrew Jackson"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
185 |
+
{"stem": ["Summit", "Redwood City"], "choice": [["Columbia", "Peace River"], ["Peace River", "Columbia"], ["National", "East Timor"], ["Mother Mary", "Jesus Christ"], ["House", "Hillary"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
186 |
+
{"stem": ["Bombay", "Mumbai"], "choice": [["Columbia", "Nanaimo"], ["Nanaimo", "Columbia"], ["Citibank", "China"], ["Jacob", "Lord"], ["House", "John Edwards"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
187 |
+
{"stem": ["Harare", "Salisbury"], "choice": [["Istanbul", "Constantinople"], ["Constantinople", "Istanbul"], ["Citibank", "Pakistan"], ["One Person", "Jesus"], ["House", "Michelle Obama"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
188 |
+
{"stem": ["Nyc", "Central"], "choice": [["Chicago South", "Mississippi"], ["Mississippi", "Chicago South"], ["Hsbc", "Poland"], ["God The Father", "Son"], ["House", "Senator Obama"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
189 |
+
{"stem": ["Austin", "Waterloo"], "choice": [["Amman", "Philadelphia"], ["Philadelphia", "Amman"], ["Hsbc", "Sri Lanka"], ["Adam", "Garden Of Eden"], ["House", "President Obama"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
190 |
+
{"stem": ["Leopoldville", "Kinshasa"], "choice": [["Columbia", "Toronto"], ["Toronto", "Columbia"], ["Jpmorgan", "America"], ["Blessed Mother", "Jesus"], ["Senate", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
191 |
+
{"stem": ["Salt Lake", "Dc"], "choice": [["Columbia", "Prince Edward Island"], ["Prince Edward Island", "Columbia"], ["Chase", "America"], ["True God And True Man", "Jesus"], ["U S House", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
192 |
+
{"stem": ["New York", "Dc"], "choice": [["Queensland", "Columbia"], ["Columbia", "Queensland"], ["National", "Laos People S Democratic Republic"], ["Billy Ray Cyrus", "Miley Cyrus"], ["House", "Time Bill Clinton"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
193 |
+
{"stem": ["Santa Barbara", "La"], "choice": [["Columbia", "Burnaby"], ["Burnaby", "Columbia"], ["Chase", "America"], ["Father", "Mary"], ["House", "Tom Delay"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
194 |
+
{"stem": ["Cambridge", "Columbia"], "choice": [["Los Angeles Ca", "L A"], ["L A", "Los Angeles Ca"], ["J P Morgan", "America"], ["Mother", "Cross"], ["House", "President Bush"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
195 |
+
{"stem": ["Columbia", "Prince George"], "choice": [["Beijing", "Peking"], ["Peking", "Beijing"], ["National", "Soviet Union"], ["Center", "Jesus"], ["House", "President George Bush"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
196 |
+
{"stem": ["Georgetown", "Washington D C"], "choice": [["San Diego", "La"], ["La", "San Diego"], ["Hsbc", "Canada"], ["Creator", "Jesus Christ"], ["House", "Andrew Jackson"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
197 |
+
{"stem": ["Augusta", "Savannah"], "choice": [["St Petersburg", "Petersburg"], ["Petersburg", "St Petersburg"], ["Hsbc", "Cayman Islands"], ["Author", "Jesus"], ["House", "Andrew Jackson"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
198 |
+
{"stem": ["Ohio", "Columbia"], "choice": [["D C", "Saint Louis"], ["Saint Louis", "D C"], ["National", "Luxembourg"], ["Savior", "Jesus"], ["U S Senate", "Bill"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
199 |
+
{"stem": ["Saskatchewan", "Columbia"], "choice": [["Ho Chi Minh City", "Saigon"], ["Saigon", "Ho Chi Minh City"], ["Credit Suisse", "Switzerland Switzerland"], ["Virgin", "Angels"], ["House", "John Edwards"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
200 |
+
{"stem": ["D C", "Howard"], "choice": [["Dun Laoghaire", "Kingstown"], ["Kingstown", "Dun Laoghaire"], ["Hsbc", "Qatar"], ["Shepard", "Jesus"], ["Senate", "Lyndon B Johnson"]], "answer": 0, "prefix": "concept:cityalsoknownas"}
|
201 |
+
{"stem": ["Holy Ghost", "Son"], "choice": [["Man", "Eden"], ["Eden", "Man"], ["Royal", "Ireland"], ["D C", "Albany"], ["House", "Senator Obama"]], "answer": 0, "prefix": "concept:parentofperson"}
|
202 |
+
{"stem": ["Savior", "Lord Jesus"], "choice": [["Hermes", "Dionysos"], ["Dionysos", "Hermes"], ["Citi", "America"], ["Columbia", "Arlington"], ["Assembly", "Bills"]], "answer": 0, "prefix": "concept:parentofperson"}
|
203 |
+
{"stem": ["God The Father", "Jesus"], "choice": [["Zeus", "Apollo"], ["Apollo", "Zeus"], ["National", "Armenia"], ["Land", "Tasmania"], ["House", "John Mccain"]], "answer": 0, "prefix": "concept:parentofperson"}
|
204 |
+
{"stem": ["Creator", "Son"], "choice": [["Savior", "Lord Jesus"], ["Lord Jesus", "Savior"], ["Hsbc", "China"], ["Sidney", "Columbia"], ["U S House Of Representatives", "Barney Frank"]], "answer": 0, "prefix": "concept:parentofperson"}
|
205 |
+
{"stem": ["Virgin", "Christ Child"], "choice": [["Rachel", "Joseph"], ["Joseph", "Rachel"], ["National", "Macedonia"], ["D C", "Columbia"], ["House", "Mark Green"]], "answer": 0, "prefix": "concept:parentofperson"}
|
206 |
+
{"stem": ["Heavenly Father", "Son"], "choice": [["Eve", "Life"], ["Life", "Eve"], ["National", "Ireland"], ["Tucson", "La"], ["House", "Hillary"]], "answer": 0, "prefix": "concept:parentofperson"}
|
207 |
+
{"stem": ["Peter", "John"], "choice": [["Life", "Lord Jesus"], ["Lord Jesus", "Life"], ["Chase", "America"], ["Augusta", "Savannah"], ["House", "Barack Obama"]], "answer": 0, "prefix": "concept:parentofperson"}
|
208 |
+
{"stem": ["Author", "Jesus"], "choice": [["Terah", "Abram"], ["Abram", "Terah"], ["National", "Montenegro"], ["Washington D C", "Columbia"], ["House", "President Bush"]], "answer": 0, "prefix": "concept:parentofperson"}
|
209 |
+
{"stem": ["Peter", "John The Baptist"], "choice": [["Buddha", "Jesus"], ["Jesus", "Buddha"], ["National", "People Republic"], ["Hanoi", "Ho Chi Minh City"], ["House", "Richard Nixon"]], "answer": 0, "prefix": "concept:parentofperson"}
|
210 |
+
{"stem": ["Mother", "Lord"], "choice": [["Christopher", "Jesus"], ["Jesus", "Christopher"], ["J P Morgan Chase", "America"], ["Los Angeles Ca", "L A"], ["House", "President George Bush"]], "answer": 0, "prefix": "concept:parentofperson"}
|
211 |
+
{"stem": ["Father", "Jesus"], "choice": [["Virgin Mary", "Lord"], ["Lord", "Virgin Mary"], ["National", "Argentina"], ["Columbia", "John"], ["House", "John Kerry"]], "answer": 0, "prefix": "concept:parentofperson"}
|
212 |
+
{"stem": ["Father", "Mary"], "choice": [["Catholic", "Jesus"], ["Jesus", "Catholic"], ["Northern Rock", "England"], ["Paris", "Bucharest"], ["House", "Hillary"]], "answer": 0, "prefix": "concept:parentofperson"}
|
213 |
+
{"stem": ["Blessed Virgin", "New Orleans Saints"], "choice": [["Holy Mother", "Jesus"], ["Jesus", "Holy Mother"], ["European Central Bank", "England"], ["Arkansas", "Buena Vista"], ["House", "President Obama"]], "answer": 0, "prefix": "concept:parentofperson"}
|
214 |
+
{"stem": ["Peter", "John"], "choice": [["Salah", "Eber"], ["Eber", "Salah"], ["Hsbc", "Sri Lanka"], ["Petersburg", "Leningrad"], ["U S House Of Representatives", "Barney Frank"]], "answer": 0, "prefix": "concept:parentofperson"}
|
215 |
+
{"stem": ["Abraham", "Isaac"], "choice": [["Child", "Jesus"], ["Jesus", "Child"], ["National", "Greenland"], ["New Orleans", "Mississippi"], ["House", "Gingrich"]], "answer": 0, "prefix": "concept:parentofperson"}
|
216 |
+
{"stem": ["Lord", "Christ Jesus"], "choice": [["Abraham", "Noah"], ["Noah", "Abraham"], ["Rbc", "Canada"], ["Ohio", "Pittsburgh"], ["House", "John Kasich"]], "answer": 0, "prefix": "concept:parentofperson"}
|
217 |
+
{"stem": ["Heavenly Father", "Son"], "choice": [["Adam", "Noah"], ["Noah", "Adam"], ["National", "Italy"], ["Crystal", "Dc"], ["U S House", "Tom Delay"]], "answer": 0, "prefix": "concept:parentofperson"}
|
218 |
+
{"stem": ["Heavenly Father", "Son"], "choice": [["Lord", "Jesus"], ["Jesus", "Lord"], ["Hsbc", "Brazil"], ["London", "Springfield"], ["House", "Bill"]], "answer": 0, "prefix": "concept:parentofperson"}
|
219 |
+
{"stem": ["Life", "Jesus"], "choice": [["Wife Eve", "Eden"], ["Eden", "Wife Eve"], ["Citibank", "Belgium"], ["D C", "Howard"], ["House", "Billy Tauzin"]], "answer": 0, "prefix": "concept:parentofperson"}
|
220 |
+
{"stem": ["Mother Mary", "Jesus"], "choice": [["Eve", "Man"], ["Man", "Eve"], ["National", "Gambia"], ["St Augustine", "Saint Augustine"], ["House", "President George Bush"]], "answer": 0, "prefix": "concept:parentofperson"}
|
221 |
+
{"stem": ["Christian", "Jesus"], "choice": [["Father", "Lord"], ["Lord", "Father"], ["Standard Chartered", "China"], ["Mount Pleasant", "Dc"], ["Senate", "Lyndon B Johnson"]], "answer": 0, "prefix": "concept:parentofperson"}
|
222 |
+
{"stem": ["Holy Ghost", "Lord Jesus"], "choice": [["Mary", "Child"], ["Child", "Mary"], ["National", "Laos People S Democratic Republic"], ["Leningrad", "Petersburg"], ["House", "George Mcgovern"]], "answer": 0, "prefix": "concept:parentofperson"}
|
223 |
+
{"stem": ["Holy Ghost", "Jesus Christ"], "choice": [["Zeus", "Apollo"], ["Apollo", "Zeus"], ["Barclays", "UK"], ["Columbia", "Merritt"], ["House", "Calvin Coolidge"]], "answer": 0, "prefix": "concept:parentofperson"}
|
224 |
+
{"stem": ["Mother", "Lord"], "choice": [["Child", "Jesus"], ["Jesus", "Child"], ["Barclays", "Scotland"], ["Georgetown", "Washington D C"], ["House", "George H W Bush"]], "answer": 0, "prefix": "concept:parentofperson"}
|
225 |
+
{"stem": ["Adam", "Garden Of Eden"], "choice": [["Christopher", "Jesus"], ["Jesus", "Christopher"], ["Jpmorgan", "America"], ["New York", "Dc"], ["U S House", "Tom Delay"]], "answer": 0, "prefix": "concept:parentofperson"}
|
226 |
+
{"stem": ["Man", "Eden"], "choice": [["St Joseph", "Jesus"], ["Jesus", "St Joseph"], ["Northern Rock", "Britain"], ["Columbia", "Clearwater"], ["House", "Grover Cleveland"]], "answer": 0, "prefix": "concept:parentofperson"}
|
227 |
+
{"stem": ["Creator", "Jesus"], "choice": [["Billy Ray Cyrus", "Miley Cyrus"], ["Miley Cyrus", "Billy Ray Cyrus"], ["Standard Chartered", "Hong Kong"], ["Columbia", "Merritt"], ["House", "John A Boehner"]], "answer": 0, "prefix": "concept:parentofperson"}
|
228 |
+
{"stem": ["Eve", "Creation"], "choice": [["Savior", "Christ Jesus"], ["Christ Jesus", "Savior"], ["Visa", "America"], ["Austin", "Columbia"], ["House", "Bill"]], "answer": 0, "prefix": "concept:parentofperson"}
|
229 |
+
{"stem": ["Virgin", "Jesus Christ"], "choice": [["Zeus", "Apollo"], ["Apollo", "Zeus"], ["National", "Wales"], ["Columbia", "Northwest Territories"], ["U S Senate", "John Mccain"]], "answer": 0, "prefix": "concept:parentofperson"}
|
230 |
+
{"stem": ["Adam", "Cain"], "choice": [["Father", "Mary"], ["Mary", "Father"], ["Barclays", "UK"], ["District", "Columbia"], ["House", "Andrew Jackson"]], "answer": 0, "prefix": "concept:parentofperson"}
|
231 |
+
{"stem": ["Cross", "Jesus Christ"], "choice": [["Savior", "Yeshua"], ["Yeshua", "Savior"], ["Hsbc", "Pakistan"], ["Columbia", "Comox Valley"], ["U S Senate", "John Mccain"]], "answer": 0, "prefix": "concept:parentofperson"}
|
232 |
+
{"stem": ["Mary", "Jesus"], "choice": [["Saturn", "Uranus"], ["Uranus", "Saturn"], ["J P Morgan Securities Inc", "America"], ["Columbia", "Ireland"], ["House", "George H W Bush"]], "answer": 0, "prefix": "concept:parentofperson"}
|
233 |
+
{"stem": ["Heavenly Father", "Son"], "choice": [["Tamar", "Perez"], ["Perez", "Tamar"], ["National", "Germany"], ["Hue", "Hanoi"], ["House", "George H W Bush"]], "answer": 0, "prefix": "concept:parentofperson"}
|
234 |
+
{"stem": ["Hannah", "Samuel"], "choice": [["God The Father", "Jesus Christ"], ["Jesus Christ", "God The Father"], ["J P Morgan", "America"], ["Hudson", "New York"], ["House", "Harry Truman"]], "answer": 0, "prefix": "concept:parentofperson"}
|
235 |
+
{"stem": ["True God", "Jesus"], "choice": [["Mary", "Saviour"], ["Saviour", "Mary"], ["Barclays", "France France"], ["Columbia", "Calgary"], ["House", "Grover Cleveland"]], "answer": 0, "prefix": "concept:parentofperson"}
|
236 |
+
{"stem": ["Second Person", "Jesus"], "choice": [["Savior", "Yahshua"], ["Yahshua", "Savior"], ["Hsbc", "Arabia Saudita"], ["Dc", "Gw"], ["House", "Dick Gephardt"]], "answer": 0, "prefix": "concept:parentofperson"}
|
237 |
+
{"stem": ["Lord", "Yeshua"], "choice": [["Father", "Yahshua"], ["Yahshua", "Father"], ["Reliance Industries Limited", "India"], ["Columbia", "Manitoba"], ["House", "Dwight Eisenhower"]], "answer": 0, "prefix": "concept:parentofperson"}
|
238 |
+
{"stem": ["Serug", "Nahor"], "choice": [["Michael", "Jesus"], ["Jesus", "Michael"], ["Standard Chartered", "China"], ["Columbia", "Oxford"], ["U S Senate", "Harry Reid"]], "answer": 0, "prefix": "concept:parentofperson"}
|
239 |
+
{"stem": ["Uranus", "Saturn"], "choice": [["Son", "Yeshua"], ["Yeshua", "Son"], ["Rbc", "Canada"], ["New York", "Hamilton"], ["House", "George W Bush"]], "answer": 0, "prefix": "concept:parentofperson"}
|
240 |
+
{"stem": ["Creator", "Jesus"], "choice": [["Jacob", "Lt Joseph R Hunt"], ["Lt Joseph R Hunt", "Jacob"], ["Citibank", "Indonesia"], ["Columbia", "College"], ["House", "John Kerry"]], "answer": 0, "prefix": "concept:parentofperson"}
|
241 |
+
{"stem": ["Shepherd", "Jesus"], "choice": [["Hannah", "Samuel"], ["Samuel", "Hannah"], ["Morgan Stanley", "India"], ["Northwest Washington", "Georgetown"], ["House", "John Kasich"]], "answer": 0, "prefix": "concept:parentofperson"}
|
242 |
+
{"stem": ["Enosh", "Cainan"], "choice": [["Uranus", "Saturn"], ["Saturn", "Uranus"], ["National", "Ghana"], ["Pittsburgh", "Ohio"], ["Assembly", "Bills"]], "answer": 0, "prefix": "concept:parentofperson"}
|
243 |
+
{"stem": ["Laban", "Jacob"], "choice": [["Holy Ghost", "Jesus Christ"], ["Jesus Christ", "Holy Ghost"], ["National", "Germany"], ["Columbia", "New Westminster"], ["House", "George Mcgovern"]], "answer": 0, "prefix": "concept:parentofperson"}
|
244 |
+
{"stem": ["Mother", "Holy Trinity"], "choice": [["Jacob", "Lt Joseph R Hunt"], ["Lt Joseph R Hunt", "Jacob"], ["Deutsche", "India"], ["Barakaldo", "Bilbao"], ["House", "Mark Green"]], "answer": 0, "prefix": "concept:parentofperson"}
|
245 |
+
{"stem": ["Arphaxad", "Cainan"], "choice": [["Salah", "Eber"], ["Eber", "Salah"], ["Morgan Stanley", "India"], ["Mississippi", "La Crosse"], ["House", "Al Gore"]], "answer": 0, "prefix": "concept:parentofperson"}
|
246 |
+
{"stem": ["Center", "Jesus"], "choice": [["Peter", "John"], ["John", "Peter"], ["Citibank", "Malaysia"], ["New York", "Hudson"], ["House", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:parentofperson"}
|
247 |
+
{"stem": ["Jacob", "Laban"], "choice": [["Buddha", "Jesus"], ["Jesus", "Buddha"], ["National", "Portugal"], ["Peking", "Beijing"], ["House", "John Boehner"]], "answer": 0, "prefix": "concept:parentofperson"}
|
248 |
+
{"stem": ["Blessed Virgin Mary", "Jesus"], "choice": [["Adam", "Seth"], ["Seth", "Adam"], ["Northern Rock", "Britain"], ["Columbia", "Calgary"], ["House", "Billy Tauzin"]], "answer": 0, "prefix": "concept:parentofperson"}
|
249 |
+
{"stem": ["Father", "Yahshua"], "choice": [["Sacrifice", "Jesus"], ["Jesus", "Sacrifice"], ["Barclays", "India"], ["Hong Kong", "Columbia"], ["House", "Mitt Romney"]], "answer": 0, "prefix": "concept:parentofperson"}
|
250 |
+
{"stem": ["Mahalaleel", "Jared"], "choice": [["Grace", "Jesus Christ"], ["Jesus Christ", "Grace"], ["Hsbc", "Japan"], ["Central", "Nyc"], ["House", "President Bush"]], "answer": 0, "prefix": "concept:parentofperson"}
|
251 |
+
{"stem": ["Uranus", "Saturn"], "choice": [["Sacrifice", "Jesus"], ["Jesus", "Sacrifice"], ["Hsbc", "USA"], ["Constantinople", "Istanbul"], ["House", "Andrew Jackson"]], "answer": 0, "prefix": "concept:parentofperson"}
|
252 |
+
{"stem": ["Author", "Jesus"], "choice": [["God The Father", "Son"], ["Son", "God The Father"], ["National", "Uae"], ["D C", "Georgetown"], ["House", "Grover Cleveland"]], "answer": 0, "prefix": "concept:parentofperson"}
|
253 |
+
{"stem": ["Eve", "Cain"], "choice": [["Holy Ghost", "Jesus Christ"], ["Jesus Christ", "Holy Ghost"], ["Rbc", "Canada"], ["Tucson", "La"], ["House", "John Edwards"]], "answer": 0, "prefix": "concept:parentofperson"}
|
254 |
+
{"stem": ["Dionysos", "Hermes"], "choice": [["Man", "Eden"], ["Eden", "Man"], ["Hsbc", "Canada"], ["D C", "Georgetown"], ["House", "John Edwards"]], "answer": 0, "prefix": "concept:parentofperson"}
|
255 |
+
{"stem": ["Mary", "Baby"], "choice": [["Virgin", "New Orleans Saints"], ["New Orleans Saints", "Virgin"], ["Citibank", "Japan"], ["Columbia", "Northwest Territories"], ["U S House", "John Boehner"]], "answer": 0, "prefix": "concept:parentofperson"}
|
256 |
+
{"stem": ["Eve", "Life"], "choice": [["Terah", "Abram"], ["Abram", "Terah"], ["Commonwealth", "India"], ["Cache", "Arkansas"], ["House", "Cynthia Mckinney"]], "answer": 0, "prefix": "concept:parentofperson"}
|
257 |
+
{"stem": ["Mother Mary", "Jesus"], "choice": [["Abraham", "Isaac"], ["Isaac", "Abraham"], ["J P Morgan Chase", "America"], ["Columbia", "Coastal"], ["House", "Mark Green"]], "answer": 0, "prefix": "concept:parentofperson"}
|
258 |
+
{"stem": ["Life", "Jesus Christ"], "choice": [["Lamech", "Noah Five Hundred"], ["Noah Five Hundred", "Lamech"], ["Bank One", "America"], ["Columbia", "Revelstoke"], ["House", "Dick Armey"]], "answer": 0, "prefix": "concept:parentofperson"}
|
259 |
+
{"stem": ["Adam", "Seth"], "choice": [["Salah", "Eber"], ["Eber", "Salah"], ["National", "Panama"], ["Oxford", "Columbia"], ["House", "Time Bill Clinton"]], "answer": 0, "prefix": "concept:parentofperson"}
|
260 |
+
{"stem": ["Arjuna", "Kunti"], "choice": [["Son", "Jesus"], ["Jesus", "Son"], ["Citigroup Global Markets", "America"], ["Torino", "Turin"], ["House", "George Mcgovern"]], "answer": 0, "prefix": "concept:parentofperson"}
|
261 |
+
{"stem": ["Eve", "Eden"], "choice": [["Terah", "Abraham"], ["Abraham", "Terah"], ["Citibank", "Malaysia"], ["Union", "North Charleston"], ["U S House", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:parentofperson"}
|
262 |
+
{"stem": ["Jesse", "David"], "choice": [["Mother Mary", "Lord Jesus"], ["Lord Jesus", "Mother Mary"], ["Citi", "America"], ["Redwood City", "Oakland"], ["House", "Sherrod Brown"]], "answer": 0, "prefix": "concept:parentofperson"}
|
263 |
+
{"stem": ["Mother", "Son"], "choice": [["Billy Ray Cyrus", "Miley Cyrus"], ["Miley Cyrus", "Billy Ray Cyrus"], ["National", "Albania"], ["Hawaii", "Columbia"], ["House", "Billy Tauzin"]], "answer": 0, "prefix": "concept:parentofperson"}
|
264 |
+
{"stem": ["Eve", "Garden Of Eden"], "choice": [["Zeus", "Apollo"], ["Apollo", "Zeus"], ["Citibank", "Pakistan"], ["Pittsburgh", "Ohio"], ["House", "Gerald Ford"]], "answer": 0, "prefix": "concept:parentofperson"}
|
265 |
+
{"stem": ["Begotten Son", "Lord Jesus"], "choice": [["Julia Roberts", "Henry Daniel Moder"], ["Henry Daniel Moder", "Julia Roberts"], ["Northern Rock", "UK"], ["Pittsburgh", "Ohio"], ["House", "Gephardt"]], "answer": 0, "prefix": "concept:parentofperson"}
|
266 |
+
{"stem": ["Laban", "Jacob"], "choice": [["Grace", "Jesus Christ"], ["Jesus Christ", "Grace"], ["Citibank", "Greece"], ["Los Angeles Ca", "Santa Clara"], ["House", "John Conyers"]], "answer": 0, "prefix": "concept:parentofperson"}
|
267 |
+
{"stem": ["Virgin", "Lord Jesus"], "choice": [["Saviour", "Father"], ["Father", "Saviour"], ["National", "Tajikistan"], ["Hawaii", "Columbia"], ["House", "Bill Clinton"]], "answer": 0, "prefix": "concept:parentofperson"}
|
268 |
+
{"stem": ["Pandu", "Arjuna"], "choice": [["Second Person", "Jesus"], ["Jesus", "Second Person"], ["Wachovia", "America"], ["Victoria", "Columbia"], ["House", "George W"]], "answer": 0, "prefix": "concept:parentofperson"}
|
269 |
+
{"stem": ["Father", "Mary"], "choice": [["Arjuna", "Kunti"], ["Kunti", "Arjuna"], ["Barclays", "UK"], ["Columbia", "Powell River"], ["U S House Of Representatives", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:parentofperson"}
|
270 |
+
{"stem": ["Father", "Master"], "choice": [["Savior", "Lord Jesus"], ["Lord Jesus", "Savior"], ["Citigroup", "America"], ["Merritt", "Columbia"], ["House", "Gingrich"]], "answer": 0, "prefix": "concept:parentofperson"}
|
271 |
+
{"stem": ["Life", "Eden"], "choice": [["Cross", "Jesus Christ"], ["Jesus Christ", "Cross"], ["National", "Kenya"], ["Salt Lake", "Dc"], ["House", "George W Bush"]], "answer": 0, "prefix": "concept:parentofperson"}
|
272 |
+
{"stem": ["Catholic", "Jesus"], "choice": [["Zeus", "Apollo"], ["Apollo", "Zeus"], ["Jpmorgan", "America"], ["Nyc", "Central"], ["House", "Jimmy Carter"]], "answer": 0, "prefix": "concept:parentofperson"}
|
273 |
+
{"stem": ["Blessed Virgin", "New Orleans Saints"], "choice": [["Israel", "Jesus Christ"], ["Jesus Christ", "Israel"], ["National", "Germany"], ["D C", "Washington D C"], ["Senate", "Harry Reid"]], "answer": 0, "prefix": "concept:parentofperson"}
|
274 |
+
{"stem": ["Eve", "Sin"], "choice": [["Shem", "Arphaxad"], ["Arphaxad", "Shem"], ["National", "South Vietnam"], ["Darlington", "San Diego"], ["House", "Herbert Hoover"]], "answer": 0, "prefix": "concept:parentofperson"}
|
275 |
+
{"stem": ["Mahalaleel", "Jared"], "choice": [["Virgin Mary", "Lord"], ["Lord", "Virgin Mary"], ["Anz", "New Zealand"], ["Georgetown", "Northwest Washington"], ["House", "Michelle Obama"]], "answer": 0, "prefix": "concept:parentofperson"}
|
276 |
+
{"stem": ["Father", "Master"], "choice": [["Tamar", "Perez"], ["Perez", "Tamar"], ["Citigroup Global Markets", "America"], ["San Diego", "La"], ["House", "Bill"]], "answer": 0, "prefix": "concept:parentofperson"}
|
277 |
+
{"stem": ["Life", "Jesus"], "choice": [["Julia Roberts", "Phinneaus Walter Moder"], ["Phinneaus Walter Moder", "Julia Roberts"], ["National", "Swaziland"], ["Benton", "Columbia"], ["House", "Calvin Coolidge"]], "answer": 0, "prefix": "concept:parentofperson"}
|
278 |
+
{"stem": ["Peter", "John"], "choice": [["Abraham", "Jesus"], ["Jesus", "Abraham"], ["Fortis", "Belgium"], ["Columbia", "Saskatchewan"], ["House", "President Elect Barack Obama"]], "answer": 0, "prefix": "concept:parentofperson"}
|
279 |
+
{"stem": ["Father", "Jesus"], "choice": [["Saturn", "Uranus"], ["Uranus", "Saturn"], ["Commonwealth", "South Africa"], ["Santa Cruz", "Tenerife"], ["Assembly", "Bills"]], "answer": 0, "prefix": "concept:parentofperson"}
|
280 |
+
{"stem": ["Dionysos", "Hermes"], "choice": [["Mary", "Infant"], ["Infant", "Mary"], ["Hsbc", "Cayman Islands"], ["Benton", "Columbia"], ["House", "Andrew Jackson"]], "answer": 0, "prefix": "concept:parentofperson"}
|
281 |
+
{"stem": ["Holy Ghost", "Son"], "choice": [["Mary", "Saviour"], ["Saviour", "Mary"], ["National", "Canada"], ["Austin", "Columbia"], ["House", "President Bush"]], "answer": 0, "prefix": "concept:parentofperson"}
|
282 |
+
{"stem": ["Saturn", "Uranus"], "choice": [["Jesus", "Anthony"], ["Anthony", "Jesus"], ["National", "Macedonia"], ["Ho Chi Minh City", "Saigon"], ["House", "Herbert Hoover"]], "answer": 0, "prefix": "concept:parentofperson"}
|
283 |
+
{"stem": ["Life", "Eden"], "choice": [["Mary", "Baby"], ["Baby", "Mary"], ["Citigroup Global Markets", "America"], ["Columbia", "Oxford"], ["Senate", "Mitch Mcconnell"]], "answer": 0, "prefix": "concept:parentofperson"}
|
284 |
+
{"stem": ["Holy Ghost", "Jesus"], "choice": [["Mary", "Savior"], ["Savior", "Mary"], ["Commonwealth", "Canada"], ["Columbia", "Spa"], ["House", "Pawlenty"]], "answer": 0, "prefix": "concept:parentofperson"}
|
285 |
+
{"stem": ["Laban", "Jacob"], "choice": [["Miley Cyrus", "Billy Ray Cyrus"], ["Billy Ray Cyrus", "Miley Cyrus"], ["J P Morgan Chase", "America"], ["Orient", "Boston"], ["Senate", "Mitch Mcconnell"]], "answer": 0, "prefix": "concept:parentofperson"}
|
286 |
+
{"stem": ["Laban", "Leah"], "choice": [["True God", "Jesus Christ"], ["Jesus Christ", "True God"], ["Citigroup Global Markets", "UK"], ["Columbia", "UK"], ["House", "George Mcgovern"]], "answer": 0, "prefix": "concept:parentofperson"}
|
287 |
+
{"stem": ["Savior", "Yeshua"], "choice": [["Jesus", "Blessed Mother"], ["Blessed Mother", "Jesus"], ["National", "Palestine"], ["Dc", "Crystal"], ["House", "President Elect Barack Obama"]], "answer": 0, "prefix": "concept:parentofperson"}
|
288 |
+
{"stem": ["Lord", "Eden"], "choice": [["Son", "Yeshua"], ["Yeshua", "Son"], ["Citibank", "Thailand"], ["Chicago South", "Mississippi"], ["Senate", "Nancy Pelosi"]], "answer": 0, "prefix": "concept:parentofperson"}
|
289 |
+
{"stem": ["Savior", "Yahshua"], "choice": [["Sun", "Jesus"], ["Jesus", "Sun"], ["National", "Greenland"], ["Columbia", "Whitehorse"], ["House", "Bush"]], "answer": 0, "prefix": "concept:parentofperson"}
|
290 |
+
{"stem": ["Heavenly Father", "Jesus"], "choice": [["Eve", "Man"], ["Man", "Eve"], ["J P Morgan", "America"], ["San Diego", "Darlington"], ["House", "Sherrod Brown"]], "answer": 0, "prefix": "concept:parentofperson"}
|
291 |
+
{"stem": ["One Person", "Jesus"], "choice": [["Father", "Master"], ["Master", "Father"], ["Citibank", "Greece"], ["Tucson", "La"], ["House", "Time Bill Clinton"]], "answer": 0, "prefix": "concept:parentofperson"}
|
292 |
+
{"stem": ["Sacrifice", "Jesus"], "choice": [["Mary", "Lord"], ["Lord", "Mary"], ["European Central Bank", "England"], ["Helena", "Mississippi"], ["House", "John Mccain"]], "answer": 0, "prefix": "concept:parentofperson"}
|
293 |
+
{"stem": ["Laban", "Leah"], "choice": [["Example", "Jesus"], ["Jesus", "Example"], ["National", "Sierra Leone"], ["Central", "Nyc"], ["House", "Hillary"]], "answer": 0, "prefix": "concept:parentofperson"}
|
294 |
+
{"stem": ["Mother", "Lt Joseph R Hunt"], "choice": [["Lord", "Yeshua"], ["Yeshua", "Lord"], ["Halifax", "Scotland"], ["Waterloo", "Austin"], ["House", "Sherrod Brown"]], "answer": 0, "prefix": "concept:parentofperson"}
|
295 |
+
{"stem": ["Jacob", "Laban"], "choice": [["Mary", "Father"], ["Father", "Mary"], ["Northern Rock", "United Kingdom"], ["Columbia", "North Vancouver"], ["House", "Gore"]], "answer": 0, "prefix": "concept:parentofperson"}
|
296 |
+
{"stem": ["Eve", "Eden"], "choice": [["Vespasian", "Titus"], ["Titus", "Vespasian"], ["Hsbc", "India"], ["Georgetown", "Washington D C"], ["House", "Democrat Barack Obama"]], "answer": 0, "prefix": "concept:parentofperson"}
|
297 |
+
{"stem": ["Eve", "Garden Of Eden"], "choice": [["David", "Solomon"], ["Solomon", "David"], ["National", "Japan"], ["Austin", "Waterloo"], ["House", "Grover Cleveland"]], "answer": 0, "prefix": "concept:parentofperson"}
|
298 |
+
{"stem": ["Mahalaleel", "Jared"], "choice": [["Eve", "Man"], ["Man", "Eve"], ["Aig", "America"], ["Logan", "San Diego"], ["House", "Bill Clinton"]], "answer": 0, "prefix": "concept:parentofperson"}
|
299 |
+
{"stem": ["Mary", "Lord"], "choice": [["Child", "Jesus"], ["Jesus", "Child"], ["Hsbc", "Jordan"], ["Santa Barbara", "La"], ["Senate", "Harry Reid"]], "answer": 0, "prefix": "concept:parentofperson"}
|
300 |
+
{"stem": ["Friend", "Jesus"], "choice": [["Mary", "Saviour"], ["Saviour", "Mary"], ["Hsbc", "Uae"], ["Oakland", "Redwood City"], ["House", "Sherrod Brown"]], "answer": 0, "prefix": "concept:parentofperson"}
|
301 |
+
{"stem": ["Senate", "Arlen Specter"], "choice": [["House", "Ronald Reagan"], ["Ronald Reagan", "House"], ["Fed", "Japan"], ["La", "Santa Barbara"], ["Enosh", "Cainan"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
302 |
+
{"stem": ["Senate", "Harry Reid"], "choice": [["House", "Newt Gingrich"], ["Newt Gingrich", "House"], ["US Airways", "America"], ["Columbia", "Duncan"], ["Abraham", "Ishmael"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
303 |
+
{"stem": ["House", "Grover Cleveland"], "choice": [["U S Senate", "Bill"], ["Bill", "U S Senate"], ["Citibank", "Thailand"], ["Hamilton", "New York"], ["Adam", "Cain"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
304 |
+
{"stem": ["Senate", "Tom Daschle"], "choice": [["House", "George Mcgovern"], ["George Mcgovern", "House"], ["Wachovia", "America"], ["Howard", "Northwest Washington"], ["Father", "Savior"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
305 |
+
{"stem": ["Senate", "Bob Dole"], "choice": [["House", "George W Bush"], ["George W Bush", "House"], ["National", "Slovakia"], ["Beverly Hills", "La"], ["Jesus", "Anthony"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
306 |
+
{"stem": ["Senate", "Nancy Pelosi"], "choice": [["House", "Billy Tauzin"], ["Billy Tauzin", "House"], ["Citibank", "Bahrain"], ["Columbia", "Nanaimo"], ["Creator", "Jesus Christ"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
307 |
+
{"stem": ["Senate", "Tom Daschle"], "choice": [["House", "President Elect Barack Obama"], ["President Elect Barack Obama", "House"], ["National", "New Zealand"], ["Crofton", "Columbia"], ["Eve", "Creation"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
308 |
+
{"stem": ["House", "President Obama"], "choice": [["U S Senate", "John Mccain"], ["John Mccain", "U S Senate"], ["National", "Romania"], ["New Orleans", "Mississippi"], ["Virgin Mary", "Jesus Christ"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
309 |
+
{"stem": ["U S House", "Nancy Pelosi"], "choice": [["Senate", "Tom Daschle"], ["Tom Daschle", "Senate"], ["National", "Great Britain"], ["Mississippi", "Sharm El Sheikh"], ["Abraham", "Noah"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
310 |
+
{"stem": ["Assembly", "Bills"], "choice": [["House", "Palin"], ["Palin", "House"], ["National", "Bulgaria"], ["Columbia", "North Vancouver"], ["God The Father", "Jesus Christ"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
311 |
+
{"stem": ["Assembly", "Bills"], "choice": [["House", "Gingrich"], ["Gingrich", "House"], ["Barclays", "England"], ["Chicago South", "Mississippi"], ["Laban", "Leah"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
312 |
+
{"stem": ["Senate", "Bob Dole"], "choice": [["House", "John Murtha"], ["John Murtha", "House"], ["Northern Rock", "England"], ["New Westminster", "Columbia"], ["Shem", "Arphaxad"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
313 |
+
{"stem": ["Senate", "Tom Daschle"], "choice": [["House", "President Bush"], ["President Bush", "House"], ["Citibank", "Hungary"], ["Kansas", "Columbia"], ["Grace", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
314 |
+
{"stem": ["Assembly", "Bill"], "choice": [["House", "Herbert Hoover"], ["Herbert Hoover", "House"], ["National", "Austria"], ["Sidney", "Columbia"], ["Saviour", "Father"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
315 |
+
{"stem": ["Assembly", "Bills"], "choice": [["House", "President George Bush"], ["President George Bush", "House"], ["National", "Romania"], ["Turin", "Torino"], ["Christian", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
316 |
+
{"stem": ["Senate", "Arlen Specter"], "choice": [["House", "Nancy Pelosi"], ["Nancy Pelosi", "House"], ["Anz", "New Zealand"], ["Nyc", "Central"], ["God The Father", "Jesus Christ"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
317 |
+
{"stem": ["Senate", "Bob Dole"], "choice": [["House", "Dwight Eisenhower"], ["Dwight Eisenhower", "House"], ["National", "New South Wales"], ["Burnaby", "Columbia"], ["Mother", "Jesus Christ"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
318 |
+
{"stem": ["Senate", "Lyndon B Johnson"], "choice": [["House", "Barack Obama"], ["Barack Obama", "House"], ["National", "Netherlands"], ["Columbia", "Greenland"], ["Jew", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
319 |
+
{"stem": ["Senate", "Tom Daschle"], "choice": [["House", "Andrew Jackson"], ["Andrew Jackson", "House"], ["J P Morgan Securities", "America"], ["Greenland", "Columbia"], ["Creator", "Lord Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
320 |
+
{"stem": ["Senate", "Arlen Specter"], "choice": [["House", "President Obama"], ["President Obama", "House"], ["National", "Tunisia"], ["Augusta", "Savannah"], ["Jacob", "Isaac"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
321 |
+
{"stem": ["House", "John Murtha"], "choice": [["U S Senate", "Bill"], ["Bill", "U S Senate"], ["Visa", "America"], ["Land", "Tasmania"], ["Center", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
322 |
+
{"stem": ["Senate", "Harry Reid"], "choice": [["House", "Herbert Hoover"], ["Herbert Hoover", "House"], ["National", "Armenia"], ["Land", "Tasmania"], ["Pattern", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
323 |
+
{"stem": ["Senate", "Mitch Mcconnell"], "choice": [["House", "Gerald Ford"], ["Gerald Ford", "House"], ["National", "Senegal"], ["Mississippi", "Chicago South"], ["Lamech", "Noah Five Hundred"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
324 |
+
{"stem": ["Senate", "Nancy Pelosi"], "choice": [["House", "Grover Cleveland"], ["Grover Cleveland", "House"], ["Hsbc", "Jordan"], ["Chicago South", "Columbia"], ["Michael", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
325 |
+
{"stem": ["House", "Jimmy Carter"], "choice": [["U S Senate", "Harry Reid"], ["Harry Reid", "U S Senate"], ["National", "Swaziland"], ["Columbia", "Whitehorse"], ["Son", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
326 |
+
{"stem": ["Senate", "Arlen Specter"], "choice": [["House", "George W"], ["George W", "House"], ["Wachovia", "America"], ["Gonzaga", "Spokane"], ["Blessed Virgin", "New Orleans Saints"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
327 |
+
{"stem": ["Senate", "Harry Reid"], "choice": [["House", "Jimmy Carter"], ["Jimmy Carter", "House"], ["US Airways", "America"], ["Benton", "Columbia"], ["Holy Ghost", "Lord"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
328 |
+
{"stem": ["House", "Laura Bush"], "choice": [["U S Senate", "Harry Reid"], ["Harry Reid", "U S Senate"], ["National", "Albania"], ["Petersburg", "Leningrad"], ["Blessed Virgin", "New Orleans Saints"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
329 |
+
{"stem": ["Senate", "Nancy Pelosi"], "choice": [["House", "Michelle Obama"], ["Michelle Obama", "House"], ["National", "Sri Lanka"], ["Mississippi", "Saint Louis"], ["Eve", "Garden Of Eden"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
330 |
+
{"stem": ["House", "George H W Bush"], "choice": [["U S Senate", "John Mccain"], ["John Mccain", "U S Senate"], ["Hsbc", "Uae"], ["Columbia", "Powell River"], ["Mother", "Son"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
331 |
+
{"stem": ["Senate", "Nancy Pelosi"], "choice": [["House", "Pawlenty"], ["Pawlenty", "House"], ["Commonwealth", "Nigeria"], ["Crystal", "Dc"], ["Holy Ghost", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
332 |
+
{"stem": ["Senate", "Mitch Mcconnell"], "choice": [["House", "George W Bush"], ["George W Bush", "House"], ["Hsbc", "Pakistan"], ["Mississippi", "St Paul"], ["Eve", "Cain"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
333 |
+
{"stem": ["House", "Billy Tauzin"], "choice": [["U S Senate", "John Mccain"], ["John Mccain", "U S Senate"], ["Hsbc", "America"], ["Bucharest", "Paris"], ["Lion", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
334 |
+
{"stem": ["House", "Gephardt"], "choice": [["U S Senate", "Bill"], ["Bill", "U S Senate"], ["National", "Estonia"], ["New Orleans", "Xavier"], ["Eve", "Eden"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
335 |
+
{"stem": ["Senate", "Lyndon B Johnson"], "choice": [["House", "President Elect Barack Obama"], ["President Elect Barack Obama", "House"], ["Citigroup Global Markets", "UK"], ["D C", "Howard"], ["Adam", "Garden"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
336 |
+
{"stem": ["U S House", "Nancy Pelosi"], "choice": [["Assembly", "Bills"], ["Bills", "Assembly"], ["Barclays Capital", "UK"], ["La", "Tucson"], ["Peter", "John The Baptist"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
337 |
+
{"stem": ["Assembly", "Bills"], "choice": [["House", "Mark Green"], ["Mark Green", "House"], ["National", "Armenia"], ["Ireland", "Land"], ["Mother", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
338 |
+
{"stem": ["Senate", "Harry Reid"], "choice": [["House", "George Mcgovern"], ["George Mcgovern", "House"], ["National", "Libya"], ["Columbia", "Oxford"], ["Virgin", "Lord Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
339 |
+
{"stem": ["U S House", "Nancy Pelosi"], "choice": [["Senate", "Harry Reid"], ["Harry Reid", "Senate"], ["Reliance", "India"], ["Ohio", "Pittsburgh"], ["Son", "Yeshua"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
340 |
+
{"stem": ["Senate", "Harry Reid"], "choice": [["House", "Tom Delay"], ["Tom Delay", "House"], ["Barclays", "UK"], ["Abbotsford", "Columbia"], ["Zechariah", "John The Baptist"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
341 |
+
{"stem": ["House", "Bill Clinton"], "choice": [["U S Senate", "John Mccain"], ["John Mccain", "U S Senate"], ["National", "England"], ["Land", "Tasmania"], ["Adam", "Eden"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
342 |
+
{"stem": ["Senate", "Tom Daschle"], "choice": [["House", "Cynthia Mckinney"], ["Cynthia Mckinney", "House"], ["National", "Estonia"], ["Orense", "Ourense"], ["Zechariah", "John The Baptist"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
343 |
+
{"stem": ["Senate", "Harry Reid"], "choice": [["House", "Richard Nixon"], ["Richard Nixon", "House"], ["Paypal", "America"], ["Las Vegas", "Columbia"], ["Holy Mother", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
344 |
+
{"stem": ["Assembly", "Bills"], "choice": [["House", "George W"], ["George W", "House"], ["Paypal", "America"], ["Columbia", "Mexico City"], ["Man", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
345 |
+
{"stem": ["Senate", "Nancy Pelosi"], "choice": [["House", "Al Gore"], ["Al Gore", "House"], ["Citibank", "Japan"], ["Orense", "Ourense"], ["Mother Mary", "Jesus Christ"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
346 |
+
{"stem": ["House", "Dick Armey"], "choice": [["U S Senate", "Harry Reid"], ["Harry Reid", "U S Senate"], ["J P Morgan Securities", "America"], ["Columbia", "New Westminster"], ["Sacrifice", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
347 |
+
{"stem": ["Assembly", "Bill"], "choice": [["Senate", "Harry Reid"], ["Harry Reid", "Senate"], ["National", "Sierra Leone"], ["Columbia", "Merritt"], ["Cain", "Enoch"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
348 |
+
{"stem": ["House", "George Mcgovern"], "choice": [["U S Senate", "John Mccain"], ["John Mccain", "U S Senate"], ["National", "Thailand"], ["Mumbai", "Bombay"], ["Jesse", "David"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
349 |
+
{"stem": ["House", "Mark Green"], "choice": [["U S Senate", "Bill"], ["Bill", "U S Senate"], ["Royal", "Denmark"], ["Harare", "Salisbury"], ["Terah", "Abram"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
350 |
+
{"stem": ["House", "George W"], "choice": [["U S Senate", "Bill"], ["Bill", "U S Senate"], ["Hsbc", "Brazil"], ["Istanbul", "Constantinople"], ["Eve", "Garden"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
351 |
+
{"stem": ["Senate", "Harry Reid"], "choice": [["House", "Dwight Eisenhower"], ["Dwight Eisenhower", "House"], ["Commonwealth", "Canada"], ["Cache", "Arkansas"], ["Author", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
352 |
+
{"stem": ["U S House", "John Boehner"], "choice": [["Senate", "Nancy Pelosi"], ["Nancy Pelosi", "Senate"], ["Citibank", "Japan"], ["La", "Los Angeles Ca"], ["Guide", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
353 |
+
{"stem": ["Assembly", "Bills"], "choice": [["House", "Gore"], ["Gore", "House"], ["Citibank", "Thailand"], ["Columbia", "Castlegar"], ["Savior", "Begotten Son"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
354 |
+
{"stem": ["Senate", "Tom Daschle"], "choice": [["House", "Gerald Ford"], ["Gerald Ford", "House"], ["Hsbc", "South Korea"], ["Tucson", "La"], ["Arjuna", "Kunti"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
355 |
+
{"stem": ["House", "Sen Barack Obama"], "choice": [["U S Senate", "Bill"], ["Bill", "U S Senate"], ["Barclays", "India"], ["Philadelphia", "Philly"], ["Shepherd", "Lord Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
356 |
+
{"stem": ["Assembly", "Bills"], "choice": [["U S Senate", "John Mccain"], ["John Mccain", "U S Senate"], ["Deutsche", "India"], ["Columbia", "Chicago South"], ["King David", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
357 |
+
{"stem": ["Assembly", "Bill"], "choice": [["House", "Pawlenty"], ["Pawlenty", "House"], ["Aig", "America"], ["Batavia", "Jakarta"], ["Saviour", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
358 |
+
{"stem": ["U S House", "Tom Delay"], "choice": [["Senate", "Lyndon B Johnson"], ["Lyndon B Johnson", "Senate"], ["Hsbc", "Cayman Islands"], ["Columbia", "Surrey"], ["Blessed Virgin", "New Orleans Saints"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
359 |
+
{"stem": ["House", "Dwight Eisenhower"], "choice": [["U S Senate", "Harry Reid"], ["Harry Reid", "U S Senate"], ["Wachovia", "America"], ["Land", "Ireland"], ["Virgin", "Lord"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
360 |
+
{"stem": ["House", "John Boehner"], "choice": [["U S Senate", "Harry Reid"], ["Harry Reid", "U S Senate"], ["National", "East Timor"], ["Columbia", "Hawaii"], ["Christian", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
361 |
+
{"stem": ["Senate", "Arlen Specter"], "choice": [["House", "Bill Clinton"], ["Bill Clinton", "House"], ["National", "Mauritius"], ["Rio Vista", "Sacramento"], ["Adam", "Eden"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
362 |
+
{"stem": ["Senate", "Tom Daschle"], "choice": [["House", "Democrat Barack Obama"], ["Democrat Barack Obama", "House"], ["Banamex", "Mexico"], ["Durham", "Columbia"], ["Blessed Virgin Mary", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
363 |
+
{"stem": ["Assembly", "Bill"], "choice": [["House", "Michelle Obama"], ["Michelle Obama", "House"], ["Cibc", "Canada"], ["Columbia", "Hawaii"], ["Mother Mary", "Jesus Christ"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
364 |
+
{"stem": ["Senate", "Bob Dole"], "choice": [["House", "Newt Gingrich"], ["Newt Gingrich", "House"], ["National", "Qatar"], ["Beijing", "Peking"], ["Sacrifice", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
365 |
+
{"stem": ["House", "Mitt Romney"], "choice": [["U S Senate", "Harry Reid"], ["Harry Reid", "U S Senate"], ["National", "Rwanda"], ["Torino", "Turin"], ["Husband", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
366 |
+
{"stem": ["Senate", "Arlen Specter"], "choice": [["House", "Dick Armey"], ["Dick Armey", "House"], ["National", "Laos People S Democratic Republic"], ["Ohio", "Columbia"], ["Holy Ghost", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
367 |
+
{"stem": ["Assembly", "Bills"], "choice": [["House", "Barack Obama"], ["Barack Obama", "House"], ["Fidelity", "India"], ["New York", "D C"], ["Shepherd", "Lord Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
368 |
+
{"stem": ["Senate", "Mitch Mcconnell"], "choice": [["House", "George Mcgovern"], ["George Mcgovern", "House"], ["Standard Chartered", "India"], ["Columbia", "Enderby"], ["Great", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
369 |
+
{"stem": ["Senate", "Bob Dole"], "choice": [["House", "Hillary"], ["Hillary", "House"], ["National", "Indonesia"], ["Columbia", "Santa Cruz"], ["Holy Mother", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
370 |
+
{"stem": ["Senate", "Bob Dole"], "choice": [["House", "Santorum"], ["Santorum", "House"], ["Paypal", "America"], ["Tasmania", "Land"], ["Heavenly Father", "Son"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
371 |
+
{"stem": ["Senate", "Bob Dole"], "choice": [["House", "Bush"], ["Bush", "House"], ["National", "Laos People S Democratic Republic"], ["Forest", "Portland"], ["God The Father", "Son"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
372 |
+
{"stem": ["House", "Michelle Obama"], "choice": [["U S Senate", "John Mccain"], ["John Mccain", "U S Senate"], ["Citigroup Global Markets", "UK"], ["Sidney", "Columbia"], ["King", "Son Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
373 |
+
{"stem": ["U S House", "Nancy Pelosi"], "choice": [["Assembly", "Bill"], ["Bill", "Assembly"], ["Standard Chartered", "India"], ["Winnipeg", "Columbia"], ["Adam", "Noah"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
374 |
+
{"stem": ["Senate", "Arlen Specter"], "choice": [["House", "George Mcgovern"], ["George Mcgovern", "House"], ["Cibc", "Canada"], ["Mississippi", "New Orleans"], ["Mary", "Baby"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
375 |
+
{"stem": ["House", "Gephardt"], "choice": [["U S Senate", "Harry Reid"], ["Harry Reid", "U S Senate"], ["National", "Tajikistan"], ["Hawaii", "Columbia"], ["Savior", "Jesuschrist"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
376 |
+
{"stem": ["Senate", "Bob Dole"], "choice": [["House", "John Conyers"], ["John Conyers", "House"], ["J P Morgan Securities", "America"], ["Columbia", "Surrey"], ["Holy Ghost", "Lord Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
377 |
+
{"stem": ["Senate", "Mitch Mcconnell"], "choice": [["House", "John Mccain"], ["John Mccain", "House"], ["Wachovia", "America"], ["Castlegar", "Columbia"], ["Saviour", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
378 |
+
{"stem": ["Senate", "Harry Reid"], "choice": [["House", "Sherrod Brown"], ["Sherrod Brown", "House"], ["Barclays", "Britain"], ["Washington D C", "D C"], ["Pattern", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
379 |
+
{"stem": ["U S House", "Nancy Pelosi"], "choice": [["Senate", "Lyndon B Johnson"], ["Lyndon B Johnson", "Senate"], ["Hsbc", "China"], ["Prospect", "Brooklyn"], ["Shepherd", "Lord Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
380 |
+
{"stem": ["Assembly", "Bill"], "choice": [["House", "President Obama"], ["President Obama", "House"], ["Barclays", "UK"], ["La", "Los Angeles Ca"], ["Begotten Son", "Lord Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
381 |
+
{"stem": ["Senate", "Arlen Specter"], "choice": [["House", "John Kasich"], ["John Kasich", "House"], ["National", "Portugal"], ["Columbia", "Benton"], ["Jacob", "Laban"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
382 |
+
{"stem": ["Senate", "Nancy Pelosi"], "choice": [["House", "Time Bill Clinton"], ["Time Bill Clinton", "House"], ["National", "Ecuador"], ["Columbia", "District"], ["Father", "Lord"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
383 |
+
{"stem": ["Senate", "Harry Reid"], "choice": [["House", "Mark Green"], ["Mark Green", "House"], ["Credit Suisse", "Switzerland Switzerland"], ["Columbia", "Whitehorse"], ["Savior", "Lord Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
384 |
+
{"stem": ["Senate", "Harry Reid"], "choice": [["House", "President Bush"], ["President Bush", "House"], ["National", "New Zealand"], ["Winnipeg", "Columbia"], ["Son", "Mary"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
385 |
+
{"stem": ["House", "Palin"], "choice": [["U S Senate", "Harry Reid"], ["Harry Reid", "U S Senate"], ["Hsbc", "Bahrain"], ["Portland", "Arlington"], ["Mary", "Father"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
386 |
+
{"stem": ["Senate", "Arlen Specter"], "choice": [["House", "Mitt Romney"], ["Mitt Romney", "House"], ["National", "Ecuador"], ["Columbia", "Boston"], ["Mary", "Child"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
387 |
+
{"stem": ["House", "John A Boehner"], "choice": [["U S Senate", "Bill"], ["Bill", "U S Senate"], ["National", "Soviet Union"], ["Victoria", "Columbia"], ["Friend", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
388 |
+
{"stem": ["Senate", "Nancy Pelosi"], "choice": [["House", "Dick Gephardt"], ["Dick Gephardt", "House"], ["Visa", "America"], ["College", "Columbia"], ["Jesus", "Blessed Mother"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
389 |
+
{"stem": ["House", "President Obama"], "choice": [["U S Senate", "Bill"], ["Bill", "U S Senate"], ["J P Morgan Securities", "America"], ["Pearl", "Jackson"], ["Savior", "God Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
390 |
+
{"stem": ["House", "Cynthia Mckinney"], "choice": [["U S Senate", "Harry Reid"], ["Harry Reid", "U S Senate"], ["Pnc", "America"], ["Columbia", "Enderby"], ["Son", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
391 |
+
{"stem": ["Assembly", "Bills"], "choice": [["Senate", "Nancy Pelosi"], ["Nancy Pelosi", "Senate"], ["National", "Iraq"], ["Central", "Nyc"], ["Faith", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
392 |
+
{"stem": ["House", "Mark Green"], "choice": [["U S Senate", "Harry Reid"], ["Harry Reid", "U S Senate"], ["National", "South Vietnam"], ["Gonzaga", "Spokane"], ["Heavenly Father", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
393 |
+
{"stem": ["Senate", "Arlen Specter"], "choice": [["House", "Newt Gingrich"], ["Newt Gingrich", "House"], ["Royal", "Ireland"], ["Merritt", "Columbia"], ["Lion", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
394 |
+
{"stem": ["House", "Al Gore"], "choice": [["U S Senate", "John Mccain"], ["John Mccain", "U S Senate"], ["Hsbc", "Singapore"], ["Columbia", "Duncan"], ["Savior", "Jesuschrist"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
395 |
+
{"stem": ["Senate", "Bob Dole"], "choice": [["House", "Herbert Hoover"], ["Herbert Hoover", "House"], ["National", "Italy"], ["Columbia", "Durham"], ["Father", "Lord Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
396 |
+
{"stem": ["Senate", "Harry Reid"], "choice": [["House", "Gore"], ["Gore", "House"], ["Hsbc", "America"], ["Queensland", "Columbia"], ["Author", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
397 |
+
{"stem": ["Senate", "Lyndon B Johnson"], "choice": [["U S House Of Representatives", "Barney Frank"], ["Barney Frank", "U S House Of Representatives"], ["World Bank", "United States"], ["Columbia", "Comox Valley"], ["Pandu", "Arjuna"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
398 |
+
{"stem": ["Senate", "Bob Dole"], "choice": [["House", "Karl Rove"], ["Karl Rove", "House"], ["Anz", "New Zealand"], ["Columbia", "North Vancouver"], ["Christian", "Jesus Christ"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
399 |
+
{"stem": ["Senate", "Lyndon B Johnson"], "choice": [["House", "President George Bush"], ["President George Bush", "House"], ["Northern Rock", "United Kingdom"], ["Mount Pleasant", "Dc"], ["Shepherd", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
400 |
+
{"stem": ["House", "Al Gore"], "choice": [["U S Senate", "Bill"], ["Bill", "U S Senate"], ["Hsbc", "South Korea"], ["Leopoldville", "Kinshasa"], ["Sun", "Jesus"]], "answer": 0, "prefix": "concept:politicalgroupofpoliticianus"}
|
dataset/t_rex_relational_similarity/test.jsonl
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
dataset/t_rex_relational_similarity/valid.jsonl
CHANGED
The diff for this file is too large to render.
See raw diff
|
|