fix readme
Browse files- .gitattributes +0 -1
- .gitignore +1 -0
- README.md +80 -0
- conceptnet.py +86 -0
- dataset/test.jsonl +1200 -0
- dataset/train.jsonl +600 -0
- dataset/valid.jsonl +600 -0
- get_stats.py +35 -0
- process.py +51 -0
.gitattributes
CHANGED
@@ -2,7 +2,6 @@
|
|
2 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
3 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
4 |
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
5 |
-
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
6 |
*.ftz filter=lfs diff=lfs merge=lfs -text
|
7 |
*.gz filter=lfs diff=lfs merge=lfs -text
|
8 |
*.h5 filter=lfs diff=lfs merge=lfs -text
|
|
|
2 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
3 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
4 |
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
|
|
5 |
*.ftz filter=lfs diff=lfs merge=lfs -text
|
6 |
*.gz filter=lfs diff=lfs merge=lfs -text
|
7 |
*.h5 filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
cache
|
README.md
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
license:
|
5 |
+
- other
|
6 |
+
multilinguality:
|
7 |
+
- monolingual
|
8 |
+
size_categories:
|
9 |
+
- 1K<n<10K
|
10 |
+
pretty_name: ConceptNet with High Confidence
|
11 |
+
---
|
12 |
+
# Dataset Card for "relbert/conceptnet"
|
13 |
+
## Dataset Description
|
14 |
+
- **Repository:** [RelBERT](https://github.com/asahi417/relbert)
|
15 |
+
- **Paper:** [https://home.ttic.edu/~kgimpel/commonsense.html](https://home.ttic.edu/~kgimpel/commonsense.html)
|
16 |
+
- **Dataset:** High Confidence Subset of ConceptNet
|
17 |
+
|
18 |
+
### Dataset Summary
|
19 |
+
The selected subset of ConceptNet used in [this work](https://home.ttic.edu/~kgimpel/commonsense.html).
|
20 |
+
We removed `NotCapableOf` and `NotDesires` to keep the positive relation only.
|
21 |
+
|
22 |
+
## Dataset Structure
|
23 |
+
### Data Instances
|
24 |
+
An example of `train` looks as follows.
|
25 |
+
```
|
26 |
+
{
|
27 |
+
"relation_type": "AtLocation",
|
28 |
+
"positives": [["fish", "water"], ["cloud", "sky"], ["child", "school"], ... ],
|
29 |
+
"negatives": [["pen", "write"], ["sex", "fun"], ["soccer", "sport"], ["fish", "school"], ... ]
|
30 |
+
}
|
31 |
+
```
|
32 |
+
|
33 |
+
### Data Splits
|
34 |
+
| name |train|validation|
|
35 |
+
|---------|----:|---------:|
|
36 |
+
|conceptnet| 25 | 24|
|
37 |
+
|
38 |
+
### Number of Positive/Negative Word-pairs in each Split
|
39 |
+
|
40 |
+
| relation_type | positive (train) | negative (train) | positive (validation) | negative (validation) |
|
41 |
+
|:-----------------|-------------------:|-------------------:|------------------------:|------------------------:|
|
42 |
+
| AtLocation | 383 | 1749 | 97 | 574 |
|
43 |
+
| CapableOf | 195 | 1771 | 73 | 596 |
|
44 |
+
| Causes | 71 | 1778 | 26 | 591 |
|
45 |
+
| CausesDesire | 9 | 1774 | 11 | 591 |
|
46 |
+
| CreatedBy | 2 | 1777 | 0 | 0 |
|
47 |
+
| DefinedAs | 0 | 0 | 2 | 591 |
|
48 |
+
| Desires | 16 | 1775 | 12 | 591 |
|
49 |
+
| HasA | 67 | 1795 | 17 | 591 |
|
50 |
+
| HasFirstSubevent | 2 | 1777 | 0 | 0 |
|
51 |
+
| HasLastSubevent | 2 | 1777 | 3 | 589 |
|
52 |
+
| HasPrerequisite | 168 | 1784 | 57 | 588 |
|
53 |
+
| HasProperty | 94 | 1782 | 39 | 601 |
|
54 |
+
| HasSubevent | 125 | 1779 | 40 | 605 |
|
55 |
+
| IsA | 310 | 1745 | 98 | 599 |
|
56 |
+
| MadeOf | 17 | 1774 | 7 | 589 |
|
57 |
+
| MotivatedByGoal | 14 | 1777 | 11 | 591 |
|
58 |
+
| PartOf | 34 | 1782 | 7 | 589 |
|
59 |
+
| ReceivesAction | 18 | 1774 | 8 | 589 |
|
60 |
+
| SymbolOf | 0 | 0 | 2 | 592 |
|
61 |
+
| UsedFor | 249 | 1796 | 81 | 584 |
|
62 |
+
| SUM | 1776 | 31966 | 591 | 10641 |
|
63 |
+
|
64 |
+
### Citation Information
|
65 |
+
```
|
66 |
+
@InProceedings{P16-1137,
|
67 |
+
author = "Li, Xiang
|
68 |
+
and Taheri, Aynaz
|
69 |
+
and Tu, Lifu
|
70 |
+
and Gimpel, Kevin",
|
71 |
+
title = "Commonsense Knowledge Base Completion",
|
72 |
+
booktitle = "Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) ",
|
73 |
+
year = "2016",
|
74 |
+
publisher = "Association for Computational Linguistics",
|
75 |
+
pages = "1445--1455",
|
76 |
+
location = "Berlin, Germany",
|
77 |
+
doi = "10.18653/v1/P16-1137",
|
78 |
+
url = "http://aclweb.org/anthology/P16-1137"
|
79 |
+
}
|
80 |
+
```
|
conceptnet.py
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
import datasets
|
3 |
+
|
4 |
+
logger = datasets.logging.get_logger(__name__)
|
5 |
+
_DESCRIPTION = """[ConceptNet with high confidence](https://home.ttic.edu/~kgimpel/commonsense.html)"""
|
6 |
+
_NAME = "conceptnet"
|
7 |
+
_VERSION = "0.0.0"
|
8 |
+
_CITATION = """
|
9 |
+
@inproceedings{li-16,
|
10 |
+
title = {Commonsense Knowledge Base Completion},
|
11 |
+
author = {Xiang Li and Aynaz Taheri and Lifu Tu and Kevin Gimpel},
|
12 |
+
booktitle = {Proc. of ACL},
|
13 |
+
year = {2016}
|
14 |
+
}
|
15 |
+
@InProceedings{P16-1137,
|
16 |
+
author = "Li, Xiang
|
17 |
+
and Taheri, Aynaz
|
18 |
+
and Tu, Lifu
|
19 |
+
and Gimpel, Kevin",
|
20 |
+
title = "Commonsense Knowledge Base Completion",
|
21 |
+
booktitle = "Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) ",
|
22 |
+
year = "2016",
|
23 |
+
publisher = "Association for Computational Linguistics",
|
24 |
+
pages = "1445--1455",
|
25 |
+
location = "Berlin, Germany",
|
26 |
+
doi = "10.18653/v1/P16-1137",
|
27 |
+
url = "http://aclweb.org/anthology/P16-1137"
|
28 |
+
}
|
29 |
+
"""
|
30 |
+
|
31 |
+
_HOME_PAGE = "https://github.com/asahi417/relbert"
|
32 |
+
_URL = f'https://huggingface.co/datasets/relbert/{_NAME}/raw/main/dataset'
|
33 |
+
_URLS = {
|
34 |
+
str(datasets.Split.TRAIN): [f'{_URL}/train.jsonl'],
|
35 |
+
str(datasets.Split.VALIDATION): [f'{_URL}/valid.jsonl'],
|
36 |
+
str(datasets.Split.VALIDATION): [f'{_URL}/test.jsonl']
|
37 |
+
}
|
38 |
+
|
39 |
+
|
40 |
+
class ConceptNetConfig(datasets.BuilderConfig):
|
41 |
+
"""BuilderConfig"""
|
42 |
+
|
43 |
+
def __init__(self, **kwargs):
|
44 |
+
"""BuilderConfig.
|
45 |
+
Args:
|
46 |
+
**kwargs: keyword arguments forwarded to super.
|
47 |
+
"""
|
48 |
+
super(ConceptNetConfig, self).__init__(**kwargs)
|
49 |
+
|
50 |
+
|
51 |
+
class ConceptNet(datasets.GeneratorBasedBuilder):
|
52 |
+
"""Dataset."""
|
53 |
+
|
54 |
+
BUILDER_CONFIGS = [
|
55 |
+
ConceptNetConfig(name=_NAME, version=datasets.Version(_VERSION), description=_DESCRIPTION),
|
56 |
+
]
|
57 |
+
|
58 |
+
def _split_generators(self, dl_manager):
|
59 |
+
downloaded_file = dl_manager.download_and_extract(_URLS)
|
60 |
+
return [datasets.SplitGenerator(name=i, gen_kwargs={"filepaths": downloaded_file[i]}) for i in _URLS.keys()]
|
61 |
+
|
62 |
+
def _generate_examples(self, filepaths):
|
63 |
+
_key = 0
|
64 |
+
for filepath in filepaths:
|
65 |
+
logger.info(f"generating examples from = {filepath}")
|
66 |
+
with open(filepath, encoding="utf-8") as f:
|
67 |
+
_list = [i for i in f.read().split('\n') if len(i) > 0]
|
68 |
+
for i in _list:
|
69 |
+
data = json.loads(i)
|
70 |
+
yield _key, data
|
71 |
+
_key += 1
|
72 |
+
|
73 |
+
def _info(self):
|
74 |
+
return datasets.DatasetInfo(
|
75 |
+
description=_DESCRIPTION,
|
76 |
+
features=datasets.Features(
|
77 |
+
{
|
78 |
+
"relation": datasets.Value("string"),
|
79 |
+
"head": datasets.Value("string"),
|
80 |
+
"tail": datasets.Value("string"),
|
81 |
+
}
|
82 |
+
),
|
83 |
+
supervised_keys=None,
|
84 |
+
homepage=_HOME_PAGE,
|
85 |
+
citation=_CITATION,
|
86 |
+
)
|
dataset/test.jsonl
ADDED
@@ -0,0 +1,1200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"relation": "IsA", "head": "baseball", "tail": "sport"}
|
2 |
+
{"relation": "IsA", "head": "yo-yo", "tail": "toy"}
|
3 |
+
{"relation": "CapableOf", "head": "dog", "tail": "bark"}
|
4 |
+
{"relation": "UsedFor", "head": "pen", "tail": "write"}
|
5 |
+
{"relation": "HasProperty", "head": "something that be very good", "tail": "good"}
|
6 |
+
{"relation": "IsA", "head": "dog", "tail": "mammal"}
|
7 |
+
{"relation": "IsA", "head": "polo", "tail": "game"}
|
8 |
+
{"relation": "MadeOf", "head": "bottle", "tail": "plastic"}
|
9 |
+
{"relation": "MadeOf", "head": "book", "tail": "paper"}
|
10 |
+
{"relation": "HasProperty", "head": "sex", "tail": "fun"}
|
11 |
+
{"relation": "IsA", "head": "gold", "tail": "metal"}
|
12 |
+
{"relation": "IsA", "head": "sushi", "tail": "food"}
|
13 |
+
{"relation": "UsedFor", "head": "telephone", "tail": "communicate"}
|
14 |
+
{"relation": "HasSubevent", "head": "sleep", "tail": "dream"}
|
15 |
+
{"relation": "IsA", "head": "soccer", "tail": "sport"}
|
16 |
+
{"relation": "AtLocation", "head": "fish", "tail": "water"}
|
17 |
+
{"relation": "IsA", "head": "rose", "tail": "flower"}
|
18 |
+
{"relation": "AtLocation", "head": "cloud", "tail": "sky"}
|
19 |
+
{"relation": "IsA", "head": "linux", "tail": "operate system"}
|
20 |
+
{"relation": "AtLocation", "head": "child", "tail": "school"}
|
21 |
+
{"relation": "IsA", "head": "fly", "tail": "insect"}
|
22 |
+
{"relation": "AtLocation", "head": "computer", "tail": "office"}
|
23 |
+
{"relation": "HasProperty", "head": "apple", "tail": "red"}
|
24 |
+
{"relation": "AtLocation", "head": "clothe", "tail": "closet"}
|
25 |
+
{"relation": "AtLocation", "head": "book", "tail": "shelf"}
|
26 |
+
{"relation": "IsA", "head": "violin", "tail": "string instrument"}
|
27 |
+
{"relation": "MadeOf", "head": "bottle", "tail": "glass"}
|
28 |
+
{"relation": "AtLocation", "head": "coat", "tail": "closet"}
|
29 |
+
{"relation": "AtLocation", "head": "computer", "tail": "library"}
|
30 |
+
{"relation": "UsedFor", "head": "key", "tail": "open lock"}
|
31 |
+
{"relation": "CapableOf", "head": "cat", "tail": "hunt mouse"}
|
32 |
+
{"relation": "UsedFor", "head": "camera", "tail": "take picture"}
|
33 |
+
{"relation": "HasProperty", "head": "basketball player", "tail": "tall"}
|
34 |
+
{"relation": "IsA", "head": "bass", "tail": "fish"}
|
35 |
+
{"relation": "UsedFor", "head": "spoon", "tail": "eat"}
|
36 |
+
{"relation": "AtLocation", "head": "paper clip", "tail": "desk"}
|
37 |
+
{"relation": "PartOf", "head": "keyboard", "tail": "computer"}
|
38 |
+
{"relation": "MadeOf", "head": "paper", "tail": "wood"}
|
39 |
+
{"relation": "UsedFor", "head": "computer", "tail": "work"}
|
40 |
+
{"relation": "AtLocation", "head": "shark", "tail": "any ocean"}
|
41 |
+
{"relation": "CapableOf", "head": "chicken", "tail": "cross road"}
|
42 |
+
{"relation": "UsedFor", "head": "hammer", "tail": "drive nail"}
|
43 |
+
{"relation": "AtLocation", "head": "word", "tail": "book"}
|
44 |
+
{"relation": "UsedFor", "head": "keyboard", "tail": "type"}
|
45 |
+
{"relation": "AtLocation", "head": "animal", "tail": "zoo"}
|
46 |
+
{"relation": "UsedFor", "head": "water", "tail": "drink"}
|
47 |
+
{"relation": "MadeOf", "head": "window", "tail": "glass"}
|
48 |
+
{"relation": "UsedFor", "head": "net", "tail": "catch fish"}
|
49 |
+
{"relation": "AtLocation", "head": "dog", "tail": "kennel"}
|
50 |
+
{"relation": "IsA", "head": "dog", "tail": "animal"}
|
51 |
+
{"relation": "HasSubevent", "head": "attend school", "tail": "learn"}
|
52 |
+
{"relation": "AtLocation", "head": "librarian", "tail": "library"}
|
53 |
+
{"relation": "IsA", "head": "football", "tail": "game"}
|
54 |
+
{"relation": "AtLocation", "head": "water", "tail": "lake"}
|
55 |
+
{"relation": "CapableOf", "head": "car", "tail": "go fast"}
|
56 |
+
{"relation": "HasProperty", "head": "sky", "tail": "blue"}
|
57 |
+
{"relation": "IsA", "head": "football", "tail": "sport"}
|
58 |
+
{"relation": "IsA", "head": "love", "tail": "emotion"}
|
59 |
+
{"relation": "CapableOf", "head": "knife", "tail": "spread butter"}
|
60 |
+
{"relation": "HasProperty", "head": "music", "tail": "soothe"}
|
61 |
+
{"relation": "HasProperty", "head": "ball", "tail": "round"}
|
62 |
+
{"relation": "IsA", "head": "see", "tail": "tool"}
|
63 |
+
{"relation": "Causes", "head": "do housework", "tail": "clean house"}
|
64 |
+
{"relation": "IsA", "head": "dog", "tail": "pet"}
|
65 |
+
{"relation": "IsA", "head": "tennis", "tail": "sport"}
|
66 |
+
{"relation": "IsA", "head": "lion", "tail": "animal"}
|
67 |
+
{"relation": "IsA", "head": "statue of liberty", "tail": "gift from france"}
|
68 |
+
{"relation": "HasA", "head": "bird", "tail": "feather"}
|
69 |
+
{"relation": "CapableOf", "head": "teacher", "tail": "school student"}
|
70 |
+
{"relation": "UsedFor", "head": "pool", "tail": "swim"}
|
71 |
+
{"relation": "UsedFor", "head": "wing", "tail": "fly"}
|
72 |
+
{"relation": "AtLocation", "head": "shoe", "tail": "closet"}
|
73 |
+
{"relation": "HasSubevent", "head": "sleep", "tail": "snore"}
|
74 |
+
{"relation": "CapableOf", "head": "human", "tail": "die only once"}
|
75 |
+
{"relation": "HasPrerequisite", "head": "have checkup", "tail": "go to doctor"}
|
76 |
+
{"relation": "HasPrerequisite", "head": "have haircut", "tail": "go to barber"}
|
77 |
+
{"relation": "UsedFor", "head": "bus stop", "tail": "wait for bus"}
|
78 |
+
{"relation": "UsedFor", "head": "book", "tail": "learn"}
|
79 |
+
{"relation": "AtLocation", "head": "chair", "tail": "office"}
|
80 |
+
{"relation": "UsedFor", "head": "see", "tail": "cut wood"}
|
81 |
+
{"relation": "HasA", "head": "plant", "tail": "leave"}
|
82 |
+
{"relation": "ReceivesAction", "head": "book", "tail": "read"}
|
83 |
+
{"relation": "CapableOf", "head": "pilot", "tail": "land plane"}
|
84 |
+
{"relation": "NotCapableOf", "head": "person", "tail": "fly"}
|
85 |
+
{"relation": "HasProperty", "head": "doctor", "tail": "smart"}
|
86 |
+
{"relation": "HasPrerequisite", "head": "see exhibit", "tail": "go to museum"}
|
87 |
+
{"relation": "CapableOf", "head": "cup", "tail": "hold liquid"}
|
88 |
+
{"relation": "AtLocation", "head": "food", "tail": "refrigerator"}
|
89 |
+
{"relation": "MadeOf", "head": "car", "tail": "metal"}
|
90 |
+
{"relation": "IsA", "head": "trout", "tail": "fish"}
|
91 |
+
{"relation": "MadeOf", "head": "cheese", "tail": "milk"}
|
92 |
+
{"relation": "HasProperty", "head": "sunset", "tail": "pretty"}
|
93 |
+
{"relation": "HasPrerequisite", "head": "see band", "tail": "buy ticket"}
|
94 |
+
{"relation": "HasA", "head": "car", "tail": "seat"}
|
95 |
+
{"relation": "CapableOf", "head": "boy", "tail": "date girl"}
|
96 |
+
{"relation": "NotCapableOf", "head": "penguin", "tail": "fly"}
|
97 |
+
{"relation": "Causes", "head": "read", "tail": "learn"}
|
98 |
+
{"relation": "Causes", "head": "do housework", "tail": "have clean house"}
|
99 |
+
{"relation": "UsedFor", "head": "bed", "tail": "have sex"}
|
100 |
+
{"relation": "IsA", "head": "turtle", "tail": "reptile"}
|
101 |
+
{"relation": "UsedFor", "head": "match", "tail": "start fire"}
|
102 |
+
{"relation": "UsedFor", "head": "carpet", "tail": "cover floor"}
|
103 |
+
{"relation": "AtLocation", "head": "knife", "tail": "kitchen"}
|
104 |
+
{"relation": "HasSubevent", "head": "eat", "tail": "chew"}
|
105 |
+
{"relation": "IsA", "head": "sex", "tail": "activity"}
|
106 |
+
{"relation": "IsA", "head": "vegetable", "tail": "food"}
|
107 |
+
{"relation": "PartOf", "head": "toe", "tail": "foot"}
|
108 |
+
{"relation": "UsedFor", "head": "book", "tail": "read"}
|
109 |
+
{"relation": "CapableOf", "head": "pilot", "tail": "fly airplane"}
|
110 |
+
{"relation": "IsA", "head": "statue of liberty", "tail": "in new york"}
|
111 |
+
{"relation": "HasPrerequisite", "head": "maintain muscle strength", "tail": "exercise"}
|
112 |
+
{"relation": "HasA", "head": "guitar", "tail": "six string"}
|
113 |
+
{"relation": "CapableOf", "head": "magician", "tail": "fool audience"}
|
114 |
+
{"relation": "HasPrerequisite", "head": "listen to music", "tail": "turn on radio"}
|
115 |
+
{"relation": "IsA", "head": "doll", "tail": "toy"}
|
116 |
+
{"relation": "HasA", "head": "ocean", "tail": "salt water"}
|
117 |
+
{"relation": "HasPrerequisite", "head": "commit perjury", "tail": "lie"}
|
118 |
+
{"relation": "UsedFor", "head": "cloth", "tail": "clean"}
|
119 |
+
{"relation": "CapableOf", "head": "key", "tail": "open door"}
|
120 |
+
{"relation": "UsedFor", "head": "cloth", "tail": "make clothe"}
|
121 |
+
{"relation": "Causes", "head": "smoke", "tail": "lung cancer"}
|
122 |
+
{"relation": "HasPrerequisite", "head": "buy something", "tail": "have money"}
|
123 |
+
{"relation": "HasPrerequisite", "head": "sleep", "tail": "close your eye"}
|
124 |
+
{"relation": "AtLocation", "head": "pen", "tail": "office"}
|
125 |
+
{"relation": "IsA", "head": "rock", "tail": "music"}
|
126 |
+
{"relation": "UsedFor", "head": "pan", "tail": "cook"}
|
127 |
+
{"relation": "Causes", "head": "exercise", "tail": "sweat"}
|
128 |
+
{"relation": "CapableOf", "head": "student", "tail": "study"}
|
129 |
+
{"relation": "AtLocation", "head": "car", "tail": "park lot"}
|
130 |
+
{"relation": "AtLocation", "head": "bird", "tail": "sky"}
|
131 |
+
{"relation": "AtLocation", "head": "book", "tail": "library"}
|
132 |
+
{"relation": "IsA", "head": "venus", "tail": "planet"}
|
133 |
+
{"relation": "HasA", "head": "swiss cheese", "tail": "hole"}
|
134 |
+
{"relation": "HasProperty", "head": "fruit", "tail": "good for you"}
|
135 |
+
{"relation": "UsedFor", "head": "boat", "tail": "travel on water"}
|
136 |
+
{"relation": "AtLocation", "head": "seven day", "tail": "week"}
|
137 |
+
{"relation": "HasPrerequisite", "head": "have physical exam", "tail": "go to doctor"}
|
138 |
+
{"relation": "IsA", "head": "rain", "tail": "water"}
|
139 |
+
{"relation": "CapableOf", "head": "host", "tail": "welcome guest"}
|
140 |
+
{"relation": "CapableOf", "head": "key", "tail": "open lock"}
|
141 |
+
{"relation": "UsedFor", "head": "saddle", "tail": "ride horse"}
|
142 |
+
{"relation": "CausesDesire", "head": "love", "tail": "kiss someone"}
|
143 |
+
{"relation": "HasSubevent", "head": "tickle", "tail": "laugh"}
|
144 |
+
{"relation": "AtLocation", "head": "bookshelf", "tail": "library"}
|
145 |
+
{"relation": "AtLocation", "head": "carpet", "tail": "house"}
|
146 |
+
{"relation": "AtLocation", "head": "glass", "tail": "cupboard"}
|
147 |
+
{"relation": "AtLocation", "head": "shirt", "tail": "closet"}
|
148 |
+
{"relation": "HasProperty", "head": "apple", "tail": "green"}
|
149 |
+
{"relation": "IsA", "head": "peach", "tail": "fruit"}
|
150 |
+
{"relation": "UsedFor", "head": "book", "tail": "study"}
|
151 |
+
{"relation": "IsA", "head": "silver", "tail": "metal"}
|
152 |
+
{"relation": "IsA", "head": "finch", "tail": "bird"}
|
153 |
+
{"relation": "CapableOf", "head": "cat", "tail": "drink water"}
|
154 |
+
{"relation": "HasA", "head": "tree", "tail": "leave"}
|
155 |
+
{"relation": "HasA", "head": "horse", "tail": "four leg"}
|
156 |
+
{"relation": "AtLocation", "head": "seven continent", "tail": "earth"}
|
157 |
+
{"relation": "IsA", "head": "corn", "tail": "vegetable"}
|
158 |
+
{"relation": "IsA", "head": "murder", "tail": "crime"}
|
159 |
+
{"relation": "AtLocation", "head": "shingle", "tail": "roof"}
|
160 |
+
{"relation": "HasPrerequisite", "head": "diminish your own hunger", "tail": "eat"}
|
161 |
+
{"relation": "AtLocation", "head": "someone", "tail": "hospital"}
|
162 |
+
{"relation": "HasSubevent", "head": "start family", "tail": "have sex"}
|
163 |
+
{"relation": "UsedFor", "head": "fruit", "tail": "eat"}
|
164 |
+
{"relation": "HasPrerequisite", "head": "have checkup", "tail": "make doctor appointment"}
|
165 |
+
{"relation": "AtLocation", "head": "bicycle", "tail": "garage"}
|
166 |
+
{"relation": "AtLocation", "head": "money", "tail": "bank"}
|
167 |
+
{"relation": "AtLocation", "head": "cat", "tail": "bed"}
|
168 |
+
{"relation": "AtLocation", "head": "water", "tail": "river"}
|
169 |
+
{"relation": "IsA", "head": "golden retriever", "tail": "dog"}
|
170 |
+
{"relation": "IsA", "head": "blue", "tail": "color"}
|
171 |
+
{"relation": "CapableOf", "head": "chicken", "tail": "lie egg"}
|
172 |
+
{"relation": "AtLocation", "head": "bed", "tail": "bedroom"}
|
173 |
+
{"relation": "IsA", "head": "iron", "tail": "metal"}
|
174 |
+
{"relation": "IsA", "head": "java", "tail": "program language"}
|
175 |
+
{"relation": "IsA", "head": "ostrich", "tail": "bird"}
|
176 |
+
{"relation": "IsA", "head": "ant", "tail": "insect"}
|
177 |
+
{"relation": "HasA", "head": "house", "tail": "window"}
|
178 |
+
{"relation": "HasA", "head": "car", "tail": "four wheel"}
|
179 |
+
{"relation": "AtLocation", "head": "jellyfish", "tail": "most ocean"}
|
180 |
+
{"relation": "CapableOf", "head": "dog", "tail": "guide blind person"}
|
181 |
+
{"relation": "AtLocation", "head": "boat", "tail": "water"}
|
182 |
+
{"relation": "HasA", "head": "earth", "tail": "one moon"}
|
183 |
+
{"relation": "HasA", "head": "bicycle", "tail": "two wheel"}
|
184 |
+
{"relation": "HasPrerequisite", "head": "go to sport event", "tail": "buy ticket"}
|
185 |
+
{"relation": "HasPrerequisite", "head": "dream", "tail": "sleep"}
|
186 |
+
{"relation": "IsA", "head": "music", "tail": "sound"}
|
187 |
+
{"relation": "IsA", "head": "saxophone", "tail": "musical instrument"}
|
188 |
+
{"relation": "Causes", "head": "light match", "tail": "fire"}
|
189 |
+
{"relation": "CapableOf", "head": "dealer", "tail": "deal card"}
|
190 |
+
{"relation": "HasPrerequisite", "head": "go to bed", "tail": "turn off light"}
|
191 |
+
{"relation": "IsA", "head": "chicken", "tail": "food"}
|
192 |
+
{"relation": "UsedFor", "head": "voice", "tail": "sing"}
|
193 |
+
{"relation": "UsedFor", "head": "computer", "tail": "play game"}
|
194 |
+
{"relation": "HasProperty", "head": "earth", "tail": "spherical"}
|
195 |
+
{"relation": "AtLocation", "head": "elephant", "tail": "zoo"}
|
196 |
+
{"relation": "AtLocation", "head": "prisoner", "tail": "jail"}
|
197 |
+
{"relation": "UsedFor", "head": "key", "tail": "open door"}
|
198 |
+
{"relation": "IsA", "head": "apple", "tail": "fruit"}
|
199 |
+
{"relation": "AtLocation", "head": "airplane", "tail": "sky"}
|
200 |
+
{"relation": "Desires", "head": "child", "tail": "play with toy"}
|
201 |
+
{"relation": "Causes", "head": "go to get haircut", "tail": "your hair will be short"}
|
202 |
+
{"relation": "MotivatedByGoal", "head": "play", "tail": "have some fun"}
|
203 |
+
{"relation": "CapableOf", "head": "man", "tail": "father child"}
|
204 |
+
{"relation": "IsA", "head": "biology", "tail": "science"}
|
205 |
+
{"relation": "HasPrerequisite", "head": "exercise", "tail": "energy"}
|
206 |
+
{"relation": "CapableOf", "head": "dog", "tail": "guard house"}
|
207 |
+
{"relation": "AtLocation", "head": "tile", "tail": "roof"}
|
208 |
+
{"relation": "IsA", "head": "telephone", "tail": "communication device"}
|
209 |
+
{"relation": "AtLocation", "head": "plate", "tail": "cupboard"}
|
210 |
+
{"relation": "HasA", "head": "fruit", "tail": "seed"}
|
211 |
+
{"relation": "IsA", "head": "mastercard", "tail": "credit card"}
|
212 |
+
{"relation": "Causes", "head": "fall", "tail": "injury"}
|
213 |
+
{"relation": "HasSubevent", "head": "stop your bicycle", "tail": "apply brake"}
|
214 |
+
{"relation": "IsA", "head": "mushroom", "tail": "fungus"}
|
215 |
+
{"relation": "MotivatedByGoal", "head": "read newspaper", "tail": "be inform"}
|
216 |
+
{"relation": "CapableOf", "head": "clock", "tail": "tell time"}
|
217 |
+
{"relation": "HasSubevent", "head": "run", "tail": "sweat"}
|
218 |
+
{"relation": "CapableOf", "head": "cat", "tail": "eat mouse"}
|
219 |
+
{"relation": "IsA", "head": "pistol", "tail": "gun"}
|
220 |
+
{"relation": "UsedFor", "head": "glass", "tail": "drink"}
|
221 |
+
{"relation": "UsedFor", "head": "play sport", "tail": "fun"}
|
222 |
+
{"relation": "AtLocation", "head": "human", "tail": "school"}
|
223 |
+
{"relation": "AtLocation", "head": "literature", "tail": "library"}
|
224 |
+
{"relation": "AtLocation", "head": "glass", "tail": "cabinet"}
|
225 |
+
{"relation": "AtLocation", "head": "cat", "tail": "lap"}
|
226 |
+
{"relation": "UsedFor", "head": "jump rope", "tail": "exercise"}
|
227 |
+
{"relation": "Causes", "head": "play", "tail": "fun"}
|
228 |
+
{"relation": "IsA", "head": "poodle", "tail": "dog"}
|
229 |
+
{"relation": "IsA", "head": "dolphin", "tail": "mammal"}
|
230 |
+
{"relation": "AtLocation", "head": "nurse", "tail": "hospital"}
|
231 |
+
{"relation": "IsA", "head": "pineapple", "tail": "fruit"}
|
232 |
+
{"relation": "Causes", "head": "kill", "tail": "death"}
|
233 |
+
{"relation": "PartOf", "head": "finger", "tail": "hand"}
|
234 |
+
{"relation": "PartOf", "head": "page", "tail": "book"}
|
235 |
+
{"relation": "AtLocation", "head": "star", "tail": "space"}
|
236 |
+
{"relation": "HasSubevent", "head": "bury cat", "tail": "dig hole"}
|
237 |
+
{"relation": "IsA", "head": "goldfish", "tail": "carp"}
|
238 |
+
{"relation": "HasA", "head": "dice", "tail": "six side"}
|
239 |
+
{"relation": "HasSubevent", "head": "light fire", "tail": "strike match"}
|
240 |
+
{"relation": "HasSubevent", "head": "wash your car", "tail": "get wet"}
|
241 |
+
{"relation": "AtLocation", "head": "chimney", "tail": "roof"}
|
242 |
+
{"relation": "AtLocation", "head": "bicycle", "tail": "street"}
|
243 |
+
{"relation": "AtLocation", "head": "lawn mower", "tail": "garage"}
|
244 |
+
{"relation": "Causes", "head": "go on vacation", "tail": "relaxation"}
|
245 |
+
{"relation": "HasProperty", "head": "circle", "tail": "round"}
|
246 |
+
{"relation": "AtLocation", "head": "tablecloth", "tail": "table"}
|
247 |
+
{"relation": "HasPrerequisite", "head": "pray", "tail": "believe in god"}
|
248 |
+
{"relation": "HasProperty", "head": "sex", "tail": "enjoyable"}
|
249 |
+
{"relation": "CapableOf", "head": "pilot", "tail": "land airplane"}
|
250 |
+
{"relation": "AtLocation", "head": "galaxy", "tail": "universe"}
|
251 |
+
{"relation": "CapableOf", "head": "person", "tail": "voice opinion"}
|
252 |
+
{"relation": "HasA", "head": "cat", "tail": "whisker"}
|
253 |
+
{"relation": "HasPrerequisite", "head": "find lose item", "tail": "search"}
|
254 |
+
{"relation": "HasSubevent", "head": "use computer", "tail": "type on keyboard"}
|
255 |
+
{"relation": "AtLocation", "head": "cat", "tail": "windowsill"}
|
256 |
+
{"relation": "AtLocation", "head": "bride", "tail": "wed"}
|
257 |
+
{"relation": "HasProperty", "head": "water", "tail": "essential to all life"}
|
258 |
+
{"relation": "HasPrerequisite", "head": "watch movie", "tail": "buy ticket"}
|
259 |
+
{"relation": "UsedFor", "head": "needle", "tail": "sew"}
|
260 |
+
{"relation": "CapableOf", "head": "pilot", "tail": "fly plane"}
|
261 |
+
{"relation": "HasPrerequisite", "head": "go to opera", "tail": "buy ticket"}
|
262 |
+
{"relation": "CapableOf", "head": "doctor", "tail": "help sick person"}
|
263 |
+
{"relation": "UsedFor", "head": "bicycle storage area", "tail": "store bicycle"}
|
264 |
+
{"relation": "IsA", "head": "computer", "tail": "electronic device"}
|
265 |
+
{"relation": "AtLocation", "head": "star", "tail": "sky"}
|
266 |
+
{"relation": "AtLocation", "head": "bread", "tail": "breadbox"}
|
267 |
+
{"relation": "AtLocation", "head": "dresser", "tail": "bedroom"}
|
268 |
+
{"relation": "AtLocation", "head": "toilet", "tail": "bathroom"}
|
269 |
+
{"relation": "AtLocation", "head": "window", "tail": "house"}
|
270 |
+
{"relation": "IsA", "head": "tuba", "tail": "musical instrument"}
|
271 |
+
{"relation": "IsA", "head": "orchid", "tail": "flower"}
|
272 |
+
{"relation": "UsedFor", "head": "kettle", "tail": "boil water"}
|
273 |
+
{"relation": "HasProperty", "head": "water", "tail": "liquid"}
|
274 |
+
{"relation": "CapableOf", "head": "person", "tail": "eat"}
|
275 |
+
{"relation": "IsA", "head": "badminton", "tail": "sport"}
|
276 |
+
{"relation": "IsA", "head": "golf", "tail": "sport"}
|
277 |
+
{"relation": "IsA", "head": "canada", "tail": "country"}
|
278 |
+
{"relation": "RelatedTo", "head": "home", "tail": "family"}
|
279 |
+
{"relation": "Causes", "head": "sex", "tail": "child"}
|
280 |
+
{"relation": "Causes", "head": "read", "tail": "learn something"}
|
281 |
+
{"relation": "CapableOf", "head": "gardener", "tail": "water plant"}
|
282 |
+
{"relation": "AtLocation", "head": "neighbour", "tail": "door"}
|
283 |
+
{"relation": "IsA", "head": "parakeet", "tail": "bird"}
|
284 |
+
{"relation": "Causes", "head": "have haircut", "tail": "have short hair"}
|
285 |
+
{"relation": "HasPrerequisite", "head": "go for drive", "tail": "get into car"}
|
286 |
+
{"relation": "NotCapableOf", "head": "fish", "tail": "live out of water"}
|
287 |
+
{"relation": "CapableOf", "head": "dog", "tail": "be pet"}
|
288 |
+
{"relation": "AtLocation", "head": "pickle", "tail": "jar"}
|
289 |
+
{"relation": "AtLocation", "head": "opera singer", "tail": "opera"}
|
290 |
+
{"relation": "AtLocation", "head": "something", "tail": "something else"}
|
291 |
+
{"relation": "HasA", "head": "bottle", "tail": "liquid"}
|
292 |
+
{"relation": "Causes", "head": "tickle", "tail": "laughter"}
|
293 |
+
{"relation": "HasPrerequisite", "head": "go to bed", "tail": "turn out light"}
|
294 |
+
{"relation": "HasPrerequisite", "head": "stop your car", "tail": "apply brake"}
|
295 |
+
{"relation": "AtLocation", "head": "bird", "tail": "roof"}
|
296 |
+
{"relation": "AtLocation", "head": "plate", "tail": "table"}
|
297 |
+
{"relation": "UsedFor", "head": "saw", "tail": "cut wood"}
|
298 |
+
{"relation": "CapableOf", "head": "girl", "tail": "wear dress"}
|
299 |
+
{"relation": "HasPrerequisite", "head": "pretend", "tail": "imagine"}
|
300 |
+
{"relation": "UsedFor", "head": "table", "tail": "put thing on"}
|
301 |
+
{"relation": "CapableOf", "head": "bomb", "tail": "destroy city"}
|
302 |
+
{"relation": "IsA", "head": "yoyo", "tail": "toy"}
|
303 |
+
{"relation": "CapableOf", "head": "chicken", "tail": "produce egg"}
|
304 |
+
{"relation": "HasSubevent", "head": "commit perjury", "tail": "lie"}
|
305 |
+
{"relation": "AtLocation", "head": "key", "tail": "pocket"}
|
306 |
+
{"relation": "AtLocation", "head": "jellyfish", "tail": "aquarium"}
|
307 |
+
{"relation": "AtLocation", "head": "potato", "tail": "kitchen"}
|
308 |
+
{"relation": "AtLocation", "head": "sink", "tail": "kitchen"}
|
309 |
+
{"relation": "AtLocation", "head": "wallet", "tail": "pocket"}
|
310 |
+
{"relation": "AtLocation", "head": "money", "tail": "wallet"}
|
311 |
+
{"relation": "IsA", "head": "horn", "tail": "musical instrument"}
|
312 |
+
{"relation": "AtLocation", "head": "build", "tail": "city"}
|
313 |
+
{"relation": "MadeOf", "head": "snowman", "tail": "snow"}
|
314 |
+
{"relation": "IsA", "head": "tree", "tail": "plant"}
|
315 |
+
{"relation": "AtLocation", "head": "book", "tail": "bookshelf"}
|
316 |
+
{"relation": "Causes", "head": "smoke", "tail": "cancer"}
|
317 |
+
{"relation": "CapableOf", "head": "person", "tail": "love"}
|
318 |
+
{"relation": "UsedFor", "head": "weapon", "tail": "kill"}
|
319 |
+
{"relation": "PartOf", "head": "tire", "tail": "car"}
|
320 |
+
{"relation": "IsA", "head": "baseball", "tail": "game"}
|
321 |
+
{"relation": "HasProperty", "head": "horse", "tail": "brown"}
|
322 |
+
{"relation": "HasA", "head": "cat", "tail": "four leg"}
|
323 |
+
{"relation": "HasProperty", "head": "glue", "tail": "sticky"}
|
324 |
+
{"relation": "HasProperty", "head": "world", "tail": "round"}
|
325 |
+
{"relation": "HasPrerequisite", "head": "make person laugh", "tail": "tell joke"}
|
326 |
+
{"relation": "AtLocation", "head": "human", "tail": "love"}
|
327 |
+
{"relation": "HasSubevent", "head": "gather energy for tomorrow", "tail": "sleep"}
|
328 |
+
{"relation": "AtLocation", "head": "car", "tail": "freeway"}
|
329 |
+
{"relation": "HasSubevent", "head": "read", "tail": "turn page"}
|
330 |
+
{"relation": "UsedFor", "head": "guitar", "tail": "make music"}
|
331 |
+
{"relation": "AtLocation", "head": "frisbee", "tail": "park"}
|
332 |
+
{"relation": "HasPrerequisite", "head": "read newspaper", "tail": "get newspaper"}
|
333 |
+
{"relation": "HasProperty", "head": "wheel", "tail": "round"}
|
334 |
+
{"relation": "HasPrerequisite", "head": "go for haircut", "tail": "go to barber"}
|
335 |
+
{"relation": "HasSubevent", "head": "breathe", "tail": "inhale"}
|
336 |
+
{"relation": "CapableOf", "head": "comb", "tail": "part hair"}
|
337 |
+
{"relation": "IsA", "head": "eiffel tower", "tail": "in paris"}
|
338 |
+
{"relation": "CapableOf", "head": "person", "tail": "catch cold"}
|
339 |
+
{"relation": "AtLocation", "head": "stapler", "tail": "your desk"}
|
340 |
+
{"relation": "HasProperty", "head": "sex", "tail": "pleasurable"}
|
341 |
+
{"relation": "IsA", "head": "sushi", "tail": "japanese food"}
|
342 |
+
{"relation": "HasProperty", "head": "paper", "tail": "crumple"}
|
343 |
+
{"relation": "IsA", "head": "ping pong", "tail": "game"}
|
344 |
+
{"relation": "UsedFor", "head": "double edge razor", "tail": "shave"}
|
345 |
+
{"relation": "HasPrerequisite", "head": "rest", "tail": "lie down"}
|
346 |
+
{"relation": "CapableOf", "head": "person", "tail": "cross street"}
|
347 |
+
{"relation": "UsedFor", "head": "go to sleep", "tail": "rest"}
|
348 |
+
{"relation": "UsedFor", "head": "chess board", "tail": "play chess"}
|
349 |
+
{"relation": "UsedFor", "head": "park area", "tail": "park car"}
|
350 |
+
{"relation": "AtLocation", "head": "student", "tail": "classroom"}
|
351 |
+
{"relation": "AtLocation", "head": "human", "tail": "country"}
|
352 |
+
{"relation": "AtLocation", "head": "human", "tail": "home"}
|
353 |
+
{"relation": "AtLocation", "head": "potato", "tail": "restaurant"}
|
354 |
+
{"relation": "AtLocation", "head": "state", "tail": "country"}
|
355 |
+
{"relation": "AtLocation", "head": "stapler", "tail": "desk"}
|
356 |
+
{"relation": "PartOf", "head": "book", "tail": "library"}
|
357 |
+
{"relation": "IsA", "head": "gravity", "tail": "force"}
|
358 |
+
{"relation": "IsA", "head": "woodwind", "tail": "instrument"}
|
359 |
+
{"relation": "IsA", "head": "piano", "tail": "instrument"}
|
360 |
+
{"relation": "IsA", "head": "guitar", "tail": "string instrument"}
|
361 |
+
{"relation": "IsA", "head": "anger", "tail": "emotion"}
|
362 |
+
{"relation": "ReceivesAction", "head": "food", "tail": "eat"}
|
363 |
+
{"relation": "CapableOf", "head": "cat", "tail": "catch mouse"}
|
364 |
+
{"relation": "AtLocation", "head": "toilet paper", "tail": "bathroom"}
|
365 |
+
{"relation": "AtLocation", "head": "giraffe", "tail": "zoo"}
|
366 |
+
{"relation": "IsA", "head": "china", "tail": "country"}
|
367 |
+
{"relation": "HasProperty", "head": "day", "tail": "bright"}
|
368 |
+
{"relation": "IsA", "head": "banana", "tail": "fruit"}
|
369 |
+
{"relation": "AtLocation", "head": "pillow", "tail": "bedroom"}
|
370 |
+
{"relation": "UsedFor", "head": "horse", "tail": "ride"}
|
371 |
+
{"relation": "IsA", "head": "christianity", "tail": "religion"}
|
372 |
+
{"relation": "AtLocation", "head": "food", "tail": "supermarket"}
|
373 |
+
{"relation": "AtLocation", "head": "eiffel tower", "tail": "paris"}
|
374 |
+
{"relation": "AtLocation", "head": "food", "tail": "table"}
|
375 |
+
{"relation": "AtLocation", "head": "grass", "tail": "park"}
|
376 |
+
{"relation": "NotIsA", "head": "earth", "tail": "perfect sphere"}
|
377 |
+
{"relation": "AtLocation", "head": "milk", "tail": "fridge"}
|
378 |
+
{"relation": "IsA", "head": "plastic", "tail": "material"}
|
379 |
+
{"relation": "AtLocation", "head": "black hole", "tail": "space"}
|
380 |
+
{"relation": "AtLocation", "head": "criminal", "tail": "jail"}
|
381 |
+
{"relation": "AtLocation", "head": "car", "tail": "car show"}
|
382 |
+
{"relation": "Causes", "head": "play game with your friend", "tail": "fun"}
|
383 |
+
{"relation": "AtLocation", "head": "creek", "tail": "forest"}
|
384 |
+
{"relation": "AtLocation", "head": "bowl", "tail": "cupboard"}
|
385 |
+
{"relation": "HasPrerequisite", "head": "contemplate", "tail": "think"}
|
386 |
+
{"relation": "AtLocation", "head": "coffee cup", "tail": "desk"}
|
387 |
+
{"relation": "NotCapableOf", "head": "dog", "tail": "fly"}
|
388 |
+
{"relation": "CapableOf", "head": "paint", "tail": "coat wall"}
|
389 |
+
{"relation": "NotCapableOf", "head": "vegetarian", "tail": "eat meat"}
|
390 |
+
{"relation": "UsedFor", "head": "school", "tail": "learn"}
|
391 |
+
{"relation": "UsedFor", "head": "wine", "tail": "drink"}
|
392 |
+
{"relation": "AtLocation", "head": "peanut butter", "tail": "jar"}
|
393 |
+
{"relation": "AtLocation", "head": "seat", "tail": "theatre"}
|
394 |
+
{"relation": "HasPrerequisite", "head": "pass your university exam", "tail": "study"}
|
395 |
+
{"relation": "UsedFor", "head": "canvas", "tail": "paint on"}
|
396 |
+
{"relation": "HasA", "head": "book", "tail": "knowledge"}
|
397 |
+
{"relation": "HasSubevent", "head": "climb", "tail": "fall"}
|
398 |
+
{"relation": "HasSubevent", "head": "listen to music", "tail": "dance"}
|
399 |
+
{"relation": "CausesDesire", "head": "be tire", "tail": "have rest"}
|
400 |
+
{"relation": "Causes", "head": "apply for job", "tail": "get job"}
|
401 |
+
{"relation": "AtLocation", "head": "someone", "tail": "museum"}
|
402 |
+
{"relation": "AtLocation", "head": "letter", "tail": "post office"}
|
403 |
+
{"relation": "HasPrerequisite", "head": "get up early", "tail": "set alarm clock"}
|
404 |
+
{"relation": "Causes", "head": "maintain good health", "tail": "long life"}
|
405 |
+
{"relation": "HasPrerequisite", "head": "go see play", "tail": "buy ticket"}
|
406 |
+
{"relation": "CapableOf", "head": "horse", "tail": "jump fence"}
|
407 |
+
{"relation": "HasSubevent", "head": "have rest", "tail": "close your eye"}
|
408 |
+
{"relation": "UsedFor", "head": "chest of drawer", "tail": "store clothe"}
|
409 |
+
{"relation": "AtLocation", "head": "motherboard", "tail": "computer"}
|
410 |
+
{"relation": "AtLocation", "head": "7 continent", "tail": "earth"}
|
411 |
+
{"relation": "AtLocation", "head": "capital", "tail": "country"}
|
412 |
+
{"relation": "IsA", "head": "college", "tail": "place"}
|
413 |
+
{"relation": "CapableOf", "head": "child", "tail": "share toy"}
|
414 |
+
{"relation": "IsA", "head": "kiss", "tail": "sign of affection"}
|
415 |
+
{"relation": "HasProperty", "head": "fruit", "tail": "healthy"}
|
416 |
+
{"relation": "HasProperty", "head": "puppy", "tail": "cute"}
|
417 |
+
{"relation": "UsedFor", "head": "wrench", "tail": "tighten bolt"}
|
418 |
+
{"relation": "CapableOf", "head": "ball", "tail": "bounce"}
|
419 |
+
{"relation": "IsA", "head": "necklace", "tail": "jewelry"}
|
420 |
+
{"relation": "HasProperty", "head": "sex", "tail": "good"}
|
421 |
+
{"relation": "IsA", "head": "lion", "tail": "carnivore"}
|
422 |
+
{"relation": "IsA", "head": "dog", "tail": "man best friend"}
|
423 |
+
{"relation": "HasPrerequisite", "head": "jump out of window", "tail": "open window"}
|
424 |
+
{"relation": "UsedFor", "head": "tissue holder", "tail": "hold tissue"}
|
425 |
+
{"relation": "Desires", "head": "person", "tail": "clothe"}
|
426 |
+
{"relation": "HasPrerequisite", "head": "pass course", "tail": "study"}
|
427 |
+
{"relation": "AtLocation", "head": "water", "tail": "pool"}
|
428 |
+
{"relation": "AtLocation", "head": "snow", "tail": "mountain"}
|
429 |
+
{"relation": "AtLocation", "head": "lizard", "tail": "dessert"}
|
430 |
+
{"relation": "PartOf", "head": "cpu", "tail": "computer"}
|
431 |
+
{"relation": "AtLocation", "head": "whale", "tail": "ocean"}
|
432 |
+
{"relation": "IsA", "head": "elementary school", "tail": "school"}
|
433 |
+
{"relation": "IsA", "head": "soup", "tail": "food"}
|
434 |
+
{"relation": "AtLocation", "head": "student", "tail": "school"}
|
435 |
+
{"relation": "UsedFor", "head": "pencil", "tail": "write"}
|
436 |
+
{"relation": "CapableOf", "head": "dog", "tail": "run"}
|
437 |
+
{"relation": "CapableOf", "head": "plane", "tail": "fly"}
|
438 |
+
{"relation": "PartOf", "head": "nose", "tail": "face"}
|
439 |
+
{"relation": "IsA", "head": "chess", "tail": "game"}
|
440 |
+
{"relation": "IsA", "head": "rabbit", "tail": "mammal"}
|
441 |
+
{"relation": "IsA", "head": "cat", "tail": "animal"}
|
442 |
+
{"relation": "IsA", "head": "butterfly", "tail": "insect"}
|
443 |
+
{"relation": "HasPrerequisite", "head": "go for drive", "tail": "get car"}
|
444 |
+
{"relation": "ReceivesAction", "head": "hat", "tail": "wear on head"}
|
445 |
+
{"relation": "IsA", "head": "rifle", "tail": "gun"}
|
446 |
+
{"relation": "IsA", "head": "robin", "tail": "bird"}
|
447 |
+
{"relation": "HasA", "head": "woman", "tail": "baby"}
|
448 |
+
{"relation": "ReceivesAction", "head": "car", "tail": "drive"}
|
449 |
+
{"relation": "HasProperty", "head": "planet earth", "tail": "round"}
|
450 |
+
{"relation": "HasSubevent", "head": "walk in rain", "tail": "get wet"}
|
451 |
+
{"relation": "HasProperty", "head": "coffee", "tail": "serve hot"}
|
452 |
+
{"relation": "IsA", "head": "highway", "tail": "road"}
|
453 |
+
{"relation": "IsA", "head": "ball", "tail": "toy"}
|
454 |
+
{"relation": "UsedFor", "head": "hammer", "tail": "pound nail"}
|
455 |
+
{"relation": "AtLocation", "head": "telephone", "tail": "your desk"}
|
456 |
+
{"relation": "CapableOf", "head": "teacher", "tail": "teach student"}
|
457 |
+
{"relation": "HasSubevent", "head": "awake", "tail": "yawn"}
|
458 |
+
{"relation": "AtLocation", "head": "door", "tail": "build"}
|
459 |
+
{"relation": "CapableOf", "head": "cat", "tail": "corner mouse"}
|
460 |
+
{"relation": "AtLocation", "head": "dust bunny", "tail": "bed"}
|
461 |
+
{"relation": "IsA", "head": "butter", "tail": "food"}
|
462 |
+
{"relation": "AtLocation", "head": "student", "tail": "university"}
|
463 |
+
{"relation": "Causes", "head": "procreate", "tail": "have child"}
|
464 |
+
{"relation": "AtLocation", "head": "chair", "tail": "desk"}
|
465 |
+
{"relation": "IsA", "head": "bottle", "tail": "container"}
|
466 |
+
{"relation": "AtLocation", "head": "slide", "tail": "park"}
|
467 |
+
{"relation": "HasSubevent", "head": "play game", "tail": "fun"}
|
468 |
+
{"relation": "NotCapableOf", "head": "water and oil", "tail": "mix"}
|
469 |
+
{"relation": "HasA", "head": "guitar", "tail": "6 string"}
|
470 |
+
{"relation": "HasPrerequisite", "head": "sleep", "tail": "close eye"}
|
471 |
+
{"relation": "HasProperty", "head": "basketball", "tail": "round"}
|
472 |
+
{"relation": "AtLocation", "head": "rock", "tail": "mountain"}
|
473 |
+
{"relation": "Causes", "head": "go to zoo", "tail": "see animal"}
|
474 |
+
{"relation": "CapableOf", "head": "brake", "tail": "slow car"}
|
475 |
+
{"relation": "HasPrerequisite", "head": "pass class", "tail": "study"}
|
476 |
+
{"relation": "HasPrerequisite", "head": "see old thing", "tail": "go to museum"}
|
477 |
+
{"relation": "HasSubevent", "head": "meet person", "tail": "shake their hand"}
|
478 |
+
{"relation": "HasProperty", "head": "needle", "tail": "sharp"}
|
479 |
+
{"relation": "HasSubevent", "head": "play game", "tail": "win"}
|
480 |
+
{"relation": "UsedFor", "head": "ocean", "tail": "sail"}
|
481 |
+
{"relation": "CapableOf", "head": "passenger", "tail": "board airplane"}
|
482 |
+
{"relation": "HasSubevent", "head": "get job", "tail": "interview"}
|
483 |
+
{"relation": "CapableOf", "head": "car", "tail": "crash"}
|
484 |
+
{"relation": "UsedFor", "head": "bank", "tail": "store money"}
|
485 |
+
{"relation": "HasSubevent", "head": "commit suicide", "tail": "die"}
|
486 |
+
{"relation": "HasA", "head": "triangle", "tail": "three side"}
|
487 |
+
{"relation": "ReceivesAction", "head": "book", "tail": "write"}
|
488 |
+
{"relation": "CapableOf", "head": "miner", "tail": "mine coal"}
|
489 |
+
{"relation": "AtLocation", "head": "tool", "tail": "garage"}
|
490 |
+
{"relation": "HasSubevent", "head": "enjoy film", "tail": "laugh"}
|
491 |
+
{"relation": "HasSubevent", "head": "dream", "tail": "sleep"}
|
492 |
+
{"relation": "CapableOf", "head": "shovel", "tail": "dig hole"}
|
493 |
+
{"relation": "HasProperty", "head": "cookie", "tail": "sweet"}
|
494 |
+
{"relation": "MotivatedByGoal", "head": "urinate", "tail": "your bladder be full"}
|
495 |
+
{"relation": "Causes", "head": "go to laundromat", "tail": "clean clothe"}
|
496 |
+
{"relation": "Causes", "head": "play violin", "tail": "music"}
|
497 |
+
{"relation": "UsedFor", "head": "write instrument", "tail": "write"}
|
498 |
+
{"relation": "HasProperty", "head": "tack", "tail": "sharp"}
|
499 |
+
{"relation": "UsedFor", "head": "pub", "tail": "have drink"}
|
500 |
+
{"relation": "HasSubevent", "head": "agree with someone", "tail": "nod"}
|
501 |
+
{"relation": "AtLocation", "head": "sand", "tail": "desert"}
|
502 |
+
{"relation": "IsA", "head": "restaurant", "tail": "place"}
|
503 |
+
{"relation": "UsedFor", "head": "meat", "tail": "eat"}
|
504 |
+
{"relation": "HasPrerequisite", "head": "go to movie", "tail": "buy ticket"}
|
505 |
+
{"relation": "CapableOf", "head": "screwdriver", "tail": "turn screw"}
|
506 |
+
{"relation": "Causes", "head": "stay healthy", "tail": "long life"}
|
507 |
+
{"relation": "CapableOf", "head": "tongue", "tail": "taste food"}
|
508 |
+
{"relation": "CapableOf", "head": "pianist", "tail": "play piano"}
|
509 |
+
{"relation": "IsA", "head": "salad", "tail": "food"}
|
510 |
+
{"relation": "HasSubevent", "head": "die", "tail": "stop breathe"}
|
511 |
+
{"relation": "HasProperty", "head": "school bus", "tail": "yellow"}
|
512 |
+
{"relation": "CapableOf", "head": "gun", "tail": "kill person"}
|
513 |
+
{"relation": "AtLocation", "head": "mouse", "tail": "garage"}
|
514 |
+
{"relation": "AtLocation", "head": "lock", "tail": "door"}
|
515 |
+
{"relation": "AtLocation", "head": "crab", "tail": "sand"}
|
516 |
+
{"relation": "AtLocation", "head": "corner cupboard", "tail": "kitchen"}
|
517 |
+
{"relation": "AtLocation", "head": "water", "tail": "waterfall"}
|
518 |
+
{"relation": "CapableOf", "head": "bomb", "tail": "explode"}
|
519 |
+
{"relation": "PartOf", "head": "cornea", "tail": "eye"}
|
520 |
+
{"relation": "IsA", "head": "tomato", "tail": "vegetable"}
|
521 |
+
{"relation": "HasFirstSubevent", "head": "wake up", "tail": "open your eye"}
|
522 |
+
{"relation": "MotivatedByGoal", "head": "sleep", "tail": "rest"}
|
523 |
+
{"relation": "IsA", "head": "egg", "tail": "food"}
|
524 |
+
{"relation": "UsedFor", "head": "chair", "tail": "sit"}
|
525 |
+
{"relation": "AtLocation", "head": "leaf", "tail": "tree"}
|
526 |
+
{"relation": "MadeOf", "head": "bread", "tail": "flour"}
|
527 |
+
{"relation": "UsedFor", "head": "fry pan", "tail": "cook"}
|
528 |
+
{"relation": "PartOf", "head": "arm", "tail": "body"}
|
529 |
+
{"relation": "CapableOf", "head": "tree", "tail": "grow"}
|
530 |
+
{"relation": "CapableOf", "head": "carpenter", "tail": "build house"}
|
531 |
+
{"relation": "IsA", "head": "green", "tail": "color"}
|
532 |
+
{"relation": "UsedFor", "head": "bed", "tail": "sleep"}
|
533 |
+
{"relation": "UsedFor", "head": "blanket", "tail": "sleep"}
|
534 |
+
{"relation": "CapableOf", "head": "baby", "tail": "cry"}
|
535 |
+
{"relation": "AtLocation", "head": "lion", "tail": "zoo"}
|
536 |
+
{"relation": "PartOf", "head": "monitor", "tail": "computer"}
|
537 |
+
{"relation": "IsA", "head": "islam", "tail": "religion"}
|
538 |
+
{"relation": "CapableOf", "head": "human", "tail": "eat"}
|
539 |
+
{"relation": "PartOf", "head": "usenet newsgroup", "tail": "usenet"}
|
540 |
+
{"relation": "IsA", "head": "san francisco", "tail": "city"}
|
541 |
+
{"relation": "HasSubevent", "head": "have sex", "tail": "have orgasm"}
|
542 |
+
{"relation": "IsA", "head": "boat", "tail": "on water"}
|
543 |
+
{"relation": "CapableOf", "head": "man", "tail": "date woman"}
|
544 |
+
{"relation": "HasProperty", "head": "sport", "tail": "fun"}
|
545 |
+
{"relation": "UsedFor", "head": "computer", "tail": "communication"}
|
546 |
+
{"relation": "HasA", "head": "dog", "tail": "four leg"}
|
547 |
+
{"relation": "CapableOf", "head": "farmer", "tail": "farm land"}
|
548 |
+
{"relation": "CapableOf", "head": "match", "tail": "light candle"}
|
549 |
+
{"relation": "IsA", "head": "air", "tail": "gas"}
|
550 |
+
{"relation": "HasPrerequisite", "head": "snore", "tail": "sleep"}
|
551 |
+
{"relation": "HasPrerequisite", "head": "drive", "tail": "get in car"}
|
552 |
+
{"relation": "AtLocation", "head": "brain", "tail": "head"}
|
553 |
+
{"relation": "HasA", "head": "pen", "tail": "ink"}
|
554 |
+
{"relation": "HasPrerequisite", "head": "visit other country", "tail": "travel"}
|
555 |
+
{"relation": "IsA", "head": "dentist", "tail": "doctor"}
|
556 |
+
{"relation": "IsA", "head": "hockey", "tail": "sport"}
|
557 |
+
{"relation": "HasPrerequisite", "head": "empty your bladder", "tail": "go to bathroom"}
|
558 |
+
{"relation": "CapableOf", "head": "thief", "tail": "case house"}
|
559 |
+
{"relation": "ReceivesAction", "head": "apple", "tail": "eat"}
|
560 |
+
{"relation": "AtLocation", "head": "neighbor", "tail": "door"}
|
561 |
+
{"relation": "CapableOf", "head": "passenger", "tail": "board plane"}
|
562 |
+
{"relation": "AtLocation", "head": "hanger", "tail": "closet"}
|
563 |
+
{"relation": "HasSubevent", "head": "read magazine", "tail": "turn page"}
|
564 |
+
{"relation": "CapableOf", "head": "babysitter", "tail": "mind baby"}
|
565 |
+
{"relation": "CapableOf", "head": "boy", "tail": "kiss girl"}
|
566 |
+
{"relation": "HasSubevent", "head": "skate", "tail": "fall down"}
|
567 |
+
{"relation": "IsA", "head": "french", "tail": "language"}
|
568 |
+
{"relation": "UsedFor", "head": "bar stool", "tail": "sit on"}
|
569 |
+
{"relation": "HasSubevent", "head": "play tennis", "tail": "hit ball"}
|
570 |
+
{"relation": "Causes", "head": "see your favorite show", "tail": "laugh"}
|
571 |
+
{"relation": "Causes", "head": "go to play", "tail": "be entertain"}
|
572 |
+
{"relation": "AtLocation", "head": "program", "tail": "television"}
|
573 |
+
{"relation": "Causes", "head": "sing", "tail": "sore throat"}
|
574 |
+
{"relation": "AtLocation", "head": "teacher", "tail": "classroom"}
|
575 |
+
{"relation": "CapableOf", "head": "person", "tail": "wind clock"}
|
576 |
+
{"relation": "CapableOf", "head": "thief", "tail": "case joint"}
|
577 |
+
{"relation": "HasSubevent", "head": "have fun", "tail": "smile"}
|
578 |
+
{"relation": "AtLocation", "head": "book", "tail": "your desk"}
|
579 |
+
{"relation": "CausesDesire", "head": "love", "tail": "propose to woman"}
|
580 |
+
{"relation": "HasSubevent", "head": "rest", "tail": "sleep"}
|
581 |
+
{"relation": "AtLocation", "head": "commercial", "tail": "television"}
|
582 |
+
{"relation": "HasSubevent", "head": "reproduce", "tail": "have sex"}
|
583 |
+
{"relation": "CapableOf", "head": "horse", "tail": "carry person"}
|
584 |
+
{"relation": "HasPrerequisite", "head": "get up early", "tail": "set your alarm clock"}
|
585 |
+
{"relation": "CapableOf", "head": "cook", "tail": "prepare meal"}
|
586 |
+
{"relation": "CapableOf", "head": "person", "tail": "taste food"}
|
587 |
+
{"relation": "UsedFor", "head": "internet", "tail": "research"}
|
588 |
+
{"relation": "CausesDesire", "head": "cold", "tail": "light fire"}
|
589 |
+
{"relation": "UsedFor", "head": "fan", "tail": "move air"}
|
590 |
+
{"relation": "HasProperty", "head": "chair", "tail": "comfortable"}
|
591 |
+
{"relation": "CapableOf", "head": "author", "tail": "write book"}
|
592 |
+
{"relation": "CapableOf", "head": "artist", "tail": "paint portrait"}
|
593 |
+
{"relation": "UsedFor", "head": "highway", "tail": "travel"}
|
594 |
+
{"relation": "CapableOf", "head": "person", "tail": "thank another person"}
|
595 |
+
{"relation": "UsedFor", "head": "play game", "tail": "have fun"}
|
596 |
+
{"relation": "HasSubevent", "head": "bathe", "tail": "use soap"}
|
597 |
+
{"relation": "UsedFor", "head": "bathtub", "tail": "bathe"}
|
598 |
+
{"relation": "UsedFor", "head": "chalk", "tail": "write on blackboard"}
|
599 |
+
{"relation": "AtLocation", "head": "someone", "tail": "post office"}
|
600 |
+
{"relation": "UsedFor", "head": "floor", "tail": "walk on"}
|
601 |
+
{"relation": "AtLocation", "head": "weasel", "tail": "zoo"}
|
602 |
+
{"relation": "AtLocation", "head": "lizard", "tail": "bush"}
|
603 |
+
{"relation": "AtLocation", "head": "mouse", "tail": "laboratory"}
|
604 |
+
{"relation": "Desires", "head": "man", "tail": "woman"}
|
605 |
+
{"relation": "HasSubevent", "head": "take shower", "tail": "wash your hair"}
|
606 |
+
{"relation": "PartOf", "head": "death", "tail": "life"}
|
607 |
+
{"relation": "IsA", "head": "drum", "tail": "percussion instrument"}
|
608 |
+
{"relation": "UsedFor", "head": "scissor", "tail": "cut"}
|
609 |
+
{"relation": "AtLocation", "head": "grass", "tail": "lawn"}
|
610 |
+
{"relation": "UsedFor", "head": "soap", "tail": "clean"}
|
611 |
+
{"relation": "UsedFor", "head": "food", "tail": "eat"}
|
612 |
+
{"relation": "HasProperty", "head": "cake", "tail": "sweet"}
|
613 |
+
{"relation": "IsA", "head": "viola", "tail": "instrument"}
|
614 |
+
{"relation": "PartOf", "head": "wheel", "tail": "car"}
|
615 |
+
{"relation": "CapableOf", "head": "person", "tail": "sleep"}
|
616 |
+
{"relation": "IsA", "head": "human", "tail": "mammal"}
|
617 |
+
{"relation": "IsA", "head": "rice", "tail": "food"}
|
618 |
+
{"relation": "MadeOf", "head": "eraser", "tail": "rubber"}
|
619 |
+
{"relation": "UsedFor", "head": "chopstick", "tail": "eat"}
|
620 |
+
{"relation": "UsedFor", "head": "knife", "tail": "cut"}
|
621 |
+
{"relation": "IsA", "head": "saturn", "tail": "planet"}
|
622 |
+
{"relation": "IsA", "head": "mar", "tail": "planet"}
|
623 |
+
{"relation": "IsA", "head": "mouse", "tail": "mammal"}
|
624 |
+
{"relation": "PartOf", "head": "galaxy", "tail": "universe"}
|
625 |
+
{"relation": "HasProperty", "head": "exercise", "tail": "good for you"}
|
626 |
+
{"relation": "IsA", "head": "jack", "tail": "child game"}
|
627 |
+
{"relation": "IsA", "head": "jack", "tail": "game"}
|
628 |
+
{"relation": "HasProperty", "head": "build", "tail": "big"}
|
629 |
+
{"relation": "AtLocation", "head": "your tooth", "tail": "your mouth"}
|
630 |
+
{"relation": "HasSubevent", "head": "ride horse", "tail": "fall off"}
|
631 |
+
{"relation": "HasProperty", "head": "gamble", "tail": "addictive"}
|
632 |
+
{"relation": "AtLocation", "head": "food", "tail": "oven"}
|
633 |
+
{"relation": "HasPrerequisite", "head": "cut your hair", "tail": "go to barber"}
|
634 |
+
{"relation": "CapableOf", "head": "person", "tail": "captain ship"}
|
635 |
+
{"relation": "AtLocation", "head": "computer", "tail": "your house"}
|
636 |
+
{"relation": "UsedFor", "head": "refrigerator", "tail": "keep food cold"}
|
637 |
+
{"relation": "HasProperty", "head": "lizard", "tail": "cold blood"}
|
638 |
+
{"relation": "UsedFor", "head": "disco", "tail": "dance"}
|
639 |
+
{"relation": "HasPrerequisite", "head": "bathe", "tail": "take your clothe off"}
|
640 |
+
{"relation": "HasPrerequisite", "head": "reproduce", "tail": "have sex"}
|
641 |
+
{"relation": "AtLocation", "head": "seat", "tail": "theater"}
|
642 |
+
{"relation": "AtLocation", "head": "car", "tail": "city"}
|
643 |
+
{"relation": "HasPrerequisite", "head": "fly in airplane", "tail": "buy ticket"}
|
644 |
+
{"relation": "HasPrerequisite", "head": "swim", "tail": "get into water"}
|
645 |
+
{"relation": "Causes", "head": "cross street", "tail": "get to other side"}
|
646 |
+
{"relation": "IsA", "head": "colorado", "tail": "state"}
|
647 |
+
{"relation": "IsA", "head": "california", "tail": "state"}
|
648 |
+
{"relation": "HasA", "head": "dog", "tail": "fur"}
|
649 |
+
{"relation": "HasPrerequisite", "head": "get something", "tail": "ask for it"}
|
650 |
+
{"relation": "UsedFor", "head": "flask", "tail": "hold liquid"}
|
651 |
+
{"relation": "HasPrerequisite", "head": "get pay", "tail": "work"}
|
652 |
+
{"relation": "UsedFor", "head": "quill", "tail": "write"}
|
653 |
+
{"relation": "AtLocation", "head": "food", "tail": "fridge"}
|
654 |
+
{"relation": "IsA", "head": "marijuana", "tail": "drug"}
|
655 |
+
{"relation": "AtLocation", "head": "computer", "tail": "school"}
|
656 |
+
{"relation": "AtLocation", "head": "fish", "tail": "ocean"}
|
657 |
+
{"relation": "UsedFor", "head": "wristwatch", "tail": "tell time"}
|
658 |
+
{"relation": "AtLocation", "head": "book", "tail": "classroom"}
|
659 |
+
{"relation": "HasSubevent", "head": "write", "tail": "think"}
|
660 |
+
{"relation": "HasSubevent", "head": "go for swim", "tail": "get wet"}
|
661 |
+
{"relation": "UsedFor", "head": "pepper and salt", "tail": "season food"}
|
662 |
+
{"relation": "CapableOf", "head": "person", "tail": "water plant"}
|
663 |
+
{"relation": "HasPrerequisite", "head": "pretend", "tail": "use your imagination"}
|
664 |
+
{"relation": "UsedFor", "head": "cereal bowl", "tail": "eat cereal"}
|
665 |
+
{"relation": "HasA", "head": "human", "tail": "five finger on each hand"}
|
666 |
+
{"relation": "HasSubevent", "head": "compete", "tail": "win"}
|
667 |
+
{"relation": "IsA", "head": "box", "tail": "container"}
|
668 |
+
{"relation": "IsA", "head": "coke", "tail": "soda"}
|
669 |
+
{"relation": "Causes", "head": "chew your food", "tail": "good digestion"}
|
670 |
+
{"relation": "IsA", "head": "brain", "tail": "head"}
|
671 |
+
{"relation": "AtLocation", "head": "floor", "tail": "table"}
|
672 |
+
{"relation": "HasA", "head": "library", "tail": "book"}
|
673 |
+
{"relation": "HasA", "head": "book", "tail": "story"}
|
674 |
+
{"relation": "AtLocation", "head": "can food", "tail": "pantry"}
|
675 |
+
{"relation": "HasSubevent", "head": "play guitar", "tail": "sing"}
|
676 |
+
{"relation": "HasA", "head": "cat", "tail": "fur"}
|
677 |
+
{"relation": "CapableOf", "head": "lawyer", "tail": "object in court"}
|
678 |
+
{"relation": "AtLocation", "head": "something", "tail": "school"}
|
679 |
+
{"relation": "AtLocation", "head": "telephone", "tail": "office"}
|
680 |
+
{"relation": "CapableOf", "head": "hummingbird", "tail": "hover"}
|
681 |
+
{"relation": "IsA", "head": "cat", "tail": "curious animal"}
|
682 |
+
{"relation": "HasPrerequisite", "head": "drink", "tail": "open your mouth"}
|
683 |
+
{"relation": "IsA", "head": "star trek", "tail": "popular television show"}
|
684 |
+
{"relation": "MotivatedByGoal", "head": "read", "tail": "learn"}
|
685 |
+
{"relation": "CapableOf", "head": "radio", "tail": "play music"}
|
686 |
+
{"relation": "UsedFor", "head": "literature", "tail": "read"}
|
687 |
+
{"relation": "HasSubevent", "head": "attend lecture", "tail": "take note"}
|
688 |
+
{"relation": "HasPrerequisite", "head": "read news", "tail": "buy newspaper"}
|
689 |
+
{"relation": "UsedFor", "head": "stage", "tail": "play"}
|
690 |
+
{"relation": "UsedFor", "head": "fur", "tail": "keep animal warm"}
|
691 |
+
{"relation": "HasPrerequisite", "head": "answer question", "tail": "think"}
|
692 |
+
{"relation": "AtLocation", "head": "fork", "tail": "table"}
|
693 |
+
{"relation": "UsedFor", "head": "baseball field", "tail": "play baseball"}
|
694 |
+
{"relation": "HasProperty", "head": "winter", "tail": "cold"}
|
695 |
+
{"relation": "HasSubevent", "head": "drink alcohol", "tail": "get drunk"}
|
696 |
+
{"relation": "HasPrerequisite", "head": "dream", "tail": "fall asleep"}
|
697 |
+
{"relation": "CapableOf", "head": "finger", "tail": "push button"}
|
698 |
+
{"relation": "PartOf", "head": "person", "tail": "society"}
|
699 |
+
{"relation": "MotivatedByGoal", "head": "compete", "tail": "win"}
|
700 |
+
{"relation": "CausesDesire", "head": "full bladder", "tail": "urinate"}
|
701 |
+
{"relation": "CapableOf", "head": "human", "tail": "die"}
|
702 |
+
{"relation": "HasSubevent", "head": "play poker", "tail": "bluff"}
|
703 |
+
{"relation": "UsedFor", "head": "pillow case", "tail": "cover pillow"}
|
704 |
+
{"relation": "CapableOf", "head": "person", "tail": "believe in god"}
|
705 |
+
{"relation": "AtLocation", "head": "star", "tail": "night sky"}
|
706 |
+
{"relation": "AtLocation", "head": "bird", "tail": "air"}
|
707 |
+
{"relation": "AtLocation", "head": "pantry", "tail": "kitchen"}
|
708 |
+
{"relation": "AtLocation", "head": "towel rack", "tail": "bathroom"}
|
709 |
+
{"relation": "Causes", "head": "open gift", "tail": "surprise"}
|
710 |
+
{"relation": "UsedFor", "head": "telephone", "tail": "communication"}
|
711 |
+
{"relation": "Desires", "head": "monkey", "tail": "eat banana"}
|
712 |
+
{"relation": "UsedFor", "head": "violin", "tail": "play music"}
|
713 |
+
{"relation": "CapableOf", "head": "computer", "tail": "compute"}
|
714 |
+
{"relation": "UsedFor", "head": "salt", "tail": "melt ice"}
|
715 |
+
{"relation": "AtLocation", "head": "drawer", "tail": "desk"}
|
716 |
+
{"relation": "HasProperty", "head": "banana", "tail": "yellow"}
|
717 |
+
{"relation": "IsA", "head": "physic", "tail": "science"}
|
718 |
+
{"relation": "IsA", "head": "wine", "tail": "beverage"}
|
719 |
+
{"relation": "AtLocation", "head": "tiger", "tail": "zoo"}
|
720 |
+
{"relation": "IsA", "head": "cucumber", "tail": "vegetable"}
|
721 |
+
{"relation": "CapableOf", "head": "person", "tail": "think"}
|
722 |
+
{"relation": "UsedFor", "head": "eye", "tail": "see"}
|
723 |
+
{"relation": "IsA", "head": "red", "tail": "color"}
|
724 |
+
{"relation": "HasSubevent", "head": "study", "tail": "read"}
|
725 |
+
{"relation": "IsA", "head": "denim", "tail": "fabric"}
|
726 |
+
{"relation": "IsA", "head": "metal", "tail": "music"}
|
727 |
+
{"relation": "IsA", "head": "france", "tail": "country"}
|
728 |
+
{"relation": "IsA", "head": "frog", "tail": "amphibian"}
|
729 |
+
{"relation": "IsA", "head": "novel", "tail": "book"}
|
730 |
+
{"relation": "IsA", "head": "brazil", "tail": "country"}
|
731 |
+
{"relation": "AtLocation", "head": "information", "tail": "internet"}
|
732 |
+
{"relation": "Causes", "head": "have sex", "tail": "baby"}
|
733 |
+
{"relation": "NotHasProperty", "head": "work", "tail": "fun"}
|
734 |
+
{"relation": "UsedFor", "head": "bicycle", "tail": "transportation"}
|
735 |
+
{"relation": "UsedFor", "head": "shoe", "tail": "protect foot"}
|
736 |
+
{"relation": "NotCapableOf", "head": "dog", "tail": "talk"}
|
737 |
+
{"relation": "MotivatedByGoal", "head": "have rest", "tail": "you be very tire"}
|
738 |
+
{"relation": "HasA", "head": "most pizza", "tail": "cheese on it"}
|
739 |
+
{"relation": "UsedFor", "head": "paper", "tail": "make paper airplane"}
|
740 |
+
{"relation": "HasPrerequisite", "head": "sit down", "tail": "bend your knee"}
|
741 |
+
{"relation": "CapableOf", "head": "atheist", "tail": "doubt existence of god"}
|
742 |
+
{"relation": "Desires", "head": "person", "tail": "dance"}
|
743 |
+
{"relation": "AtLocation", "head": "something", "tail": "library"}
|
744 |
+
{"relation": "CapableOf", "head": "detective", "tail": "piece together clue"}
|
745 |
+
{"relation": "HasSubevent", "head": "play sport", "tail": "run"}
|
746 |
+
{"relation": "ReceivesAction", "head": "horse", "tail": "ride"}
|
747 |
+
{"relation": "CapableOf", "head": "alcohol", "tail": "cloud judgement"}
|
748 |
+
{"relation": "AtLocation", "head": "something", "tail": "store"}
|
749 |
+
{"relation": "HasProperty", "head": "some car", "tail": "expensive"}
|
750 |
+
{"relation": "IsA", "head": "pony", "tail": "horse"}
|
751 |
+
{"relation": "HasA", "head": "house", "tail": "door"}
|
752 |
+
{"relation": "CapableOf", "head": "teacher", "tail": "help student"}
|
753 |
+
{"relation": "AtLocation", "head": "your neighbor", "tail": "door"}
|
754 |
+
{"relation": "UsedFor", "head": "gun", "tail": "kill someone"}
|
755 |
+
{"relation": "HasA", "head": "wine", "tail": "alcohol"}
|
756 |
+
{"relation": "IsA", "head": "poker", "tail": "card game"}
|
757 |
+
{"relation": "HasPrerequisite", "head": "remember phone number", "tail": "repeat it to yourself"}
|
758 |
+
{"relation": "AtLocation", "head": "food", "tail": "kitchen"}
|
759 |
+
{"relation": "HasPrerequisite", "head": "visit other country", "tail": "get passport"}
|
760 |
+
{"relation": "AtLocation", "head": "moon", "tail": "space"}
|
761 |
+
{"relation": "AtLocation", "head": "flower", "tail": "park"}
|
762 |
+
{"relation": "HasPrerequisite", "head": "take bus", "tail": "go to bus stop"}
|
763 |
+
{"relation": "HasProperty", "head": "frisbee", "tail": "round"}
|
764 |
+
{"relation": "CapableOf", "head": "alcohol", "tail": "cloud your judgement"}
|
765 |
+
{"relation": "HasA", "head": "rose", "tail": "thorn"}
|
766 |
+
{"relation": "AtLocation", "head": "human", "tail": "park"}
|
767 |
+
{"relation": "AtLocation", "head": "jewish person", "tail": "synagogue"}
|
768 |
+
{"relation": "UsedFor", "head": "kitchen", "tail": "cook food"}
|
769 |
+
{"relation": "AtLocation", "head": "human", "tail": "workplace"}
|
770 |
+
{"relation": "AtLocation", "head": "mirror", "tail": "bedroom"}
|
771 |
+
{"relation": "IsA", "head": "oxygen", "tail": "gas"}
|
772 |
+
{"relation": "CapableOf", "head": "train", "tail": "arrive late"}
|
773 |
+
{"relation": "CapableOf", "head": "woman", "tail": "chair committee"}
|
774 |
+
{"relation": "AtLocation", "head": "girl", "tail": "school"}
|
775 |
+
{"relation": "IsA", "head": "cheese", "tail": "food"}
|
776 |
+
{"relation": "AtLocation", "head": "someone", "tail": "zoo"}
|
777 |
+
{"relation": "AtLocation", "head": "submarine", "tail": "water"}
|
778 |
+
{"relation": "Causes", "head": "move car", "tail": "accident"}
|
779 |
+
{"relation": "CapableOf", "head": "blacksmith", "tail": "shoe horse"}
|
780 |
+
{"relation": "HasA", "head": "duck", "tail": "bill"}
|
781 |
+
{"relation": "AtLocation", "head": "hamburger", "tail": "fast-food restaurant"}
|
782 |
+
{"relation": "HasPrerequisite", "head": "get drunk", "tail": "drink alcohol"}
|
783 |
+
{"relation": "CapableOf", "head": "person", "tail": "laugh at joke"}
|
784 |
+
{"relation": "AtLocation", "head": "carpet pad", "tail": "carpet"}
|
785 |
+
{"relation": "UsedFor", "head": "condominium", "tail": "live in"}
|
786 |
+
{"relation": "HasPrerequisite", "head": "sate your hunger", "tail": "eat"}
|
787 |
+
{"relation": "ReceivesAction", "head": "shoe", "tail": "wear on foot"}
|
788 |
+
{"relation": "HasPrerequisite", "head": "cross street", "tail": "look both way"}
|
789 |
+
{"relation": "AtLocation", "head": "someone", "tail": "lake"}
|
790 |
+
{"relation": "IsA", "head": "bicycle", "tail": "two wheel vehicle"}
|
791 |
+
{"relation": "IsA", "head": "shirt", "tail": "clothe"}
|
792 |
+
{"relation": "AtLocation", "head": "something", "tail": "beach"}
|
793 |
+
{"relation": "HasPrerequisite", "head": "play piano", "tail": "take lesson"}
|
794 |
+
{"relation": "CapableOf", "head": "fire", "tail": "burn thing"}
|
795 |
+
{"relation": "CapableOf", "head": "stopwatch", "tail": "time race"}
|
796 |
+
{"relation": "HasPrerequisite", "head": "attend classical concert", "tail": "buy ticket"}
|
797 |
+
{"relation": "CapableOf", "head": "usher", "tail": "seat guest"}
|
798 |
+
{"relation": "UsedFor", "head": "cup", "tail": "drink from"}
|
799 |
+
{"relation": "CapableOf", "head": "person", "tail": "talk to each other"}
|
800 |
+
{"relation": "Causes", "head": "walk in rain", "tail": "you get wet"}
|
801 |
+
{"relation": "CapableOf", "head": "bomb", "tail": "destroy build"}
|
802 |
+
{"relation": "UsedFor", "head": "fan", "tail": "circulate air"}
|
803 |
+
{"relation": "CapableOf", "head": "parent", "tail": "name child"}
|
804 |
+
{"relation": "IsA", "head": "raisin", "tail": "dry grape"}
|
805 |
+
{"relation": "AtLocation", "head": "bird", "tail": "forest"}
|
806 |
+
{"relation": "AtLocation", "head": "traveller", "tail": "airport"}
|
807 |
+
{"relation": "AtLocation", "head": "something", "tail": "tree"}
|
808 |
+
{"relation": "AtLocation", "head": "something", "tail": "mall"}
|
809 |
+
{"relation": "HasSubevent", "head": "go to school", "tail": "learn"}
|
810 |
+
{"relation": "HasA", "head": "man", "tail": "penis"}
|
811 |
+
{"relation": "UsedFor", "head": "bomb", "tail": "blow thing up"}
|
812 |
+
{"relation": "CapableOf", "head": "mechanic", "tail": "service car"}
|
813 |
+
{"relation": "AtLocation", "head": "someone", "tail": "theater"}
|
814 |
+
{"relation": "HasSubevent", "head": "jump out of window", "tail": "die"}
|
815 |
+
{"relation": "AtLocation", "head": "cake", "tail": "oven"}
|
816 |
+
{"relation": "HasPrerequisite", "head": "read magazine", "tail": "buy magazine"}
|
817 |
+
{"relation": "CapableOf", "head": "mother", "tail": "care for her child"}
|
818 |
+
{"relation": "HasSubevent", "head": "play sport", "tail": "have fun"}
|
819 |
+
{"relation": "IsA", "head": "tv", "tail": "abbreviation for television"}
|
820 |
+
{"relation": "UsedFor", "head": "pipe", "tail": "smoke tobacco"}
|
821 |
+
{"relation": "CapableOf", "head": "water", "tail": "reflect image"}
|
822 |
+
{"relation": "Causes", "head": "go to bed", "tail": "sleep"}
|
823 |
+
{"relation": "Causes", "head": "tickle", "tail": "laugh"}
|
824 |
+
{"relation": "UsedFor", "head": "tool", "tail": "fix thing"}
|
825 |
+
{"relation": "HasSubevent", "head": "study", "tail": "read book"}
|
826 |
+
{"relation": "IsA", "head": "saxophone", "tail": "instrument"}
|
827 |
+
{"relation": "UsedFor", "head": "bomb", "tail": "kill person"}
|
828 |
+
{"relation": "HasProperty", "head": "plant", "tail": "green"}
|
829 |
+
{"relation": "IsA", "head": "skyscraper", "tail": "build"}
|
830 |
+
{"relation": "UsedFor", "head": "soap", "tail": "wash your hand"}
|
831 |
+
{"relation": "CapableOf", "head": "person", "tail": "thank god"}
|
832 |
+
{"relation": "HasProperty", "head": "fruit", "tail": "sweet"}
|
833 |
+
{"relation": "CapableOf", "head": "person", "tail": "sail boat"}
|
834 |
+
{"relation": "CapableOf", "head": "person", "tail": "pay bill"}
|
835 |
+
{"relation": "UsedFor", "head": "master bedroom", "tail": "sleep"}
|
836 |
+
{"relation": "HasPrerequisite", "head": "have asthma attack", "tail": "have asthma"}
|
837 |
+
{"relation": "UsedFor", "head": "ticket office", "tail": "buy ticket"}
|
838 |
+
{"relation": "UsedFor", "head": "bookstore", "tail": "buy book"}
|
839 |
+
{"relation": "UsedFor", "head": "diner", "tail": "eat"}
|
840 |
+
{"relation": "CapableOf", "head": "sailor", "tail": "sail ship"}
|
841 |
+
{"relation": "UsedFor", "head": "have food", "tail": "eat"}
|
842 |
+
{"relation": "CapableOf", "head": "student", "tail": "fail test"}
|
843 |
+
{"relation": "UsedFor", "head": "tooth", "tail": "chew food"}
|
844 |
+
{"relation": "UsedFor", "head": "classroom", "tail": "teach"}
|
845 |
+
{"relation": "Causes", "head": "propose to woman", "tail": "marriage"}
|
846 |
+
{"relation": "CapableOf", "head": "ruler", "tail": "measure distance"}
|
847 |
+
{"relation": "UsedFor", "head": "airplane", "tail": "travel"}
|
848 |
+
{"relation": "UsedFor", "head": "dresser", "tail": "store clothe"}
|
849 |
+
{"relation": "UsedFor", "head": "feather", "tail": "tickle someone"}
|
850 |
+
{"relation": "UsedFor", "head": "window", "tail": "look outside"}
|
851 |
+
{"relation": "IsA", "head": "submarine", "tail": "ship"}
|
852 |
+
{"relation": "UsedFor", "head": "bagpipe", "tail": "play music"}
|
853 |
+
{"relation": "HasSubevent", "head": "listen to radio", "tail": "hear music"}
|
854 |
+
{"relation": "HasPrerequisite", "head": "find lose item", "tail": "look for it"}
|
855 |
+
{"relation": "UsedFor", "head": "pulpit", "tail": "preach"}
|
856 |
+
{"relation": "HasSubevent", "head": "live", "tail": "breathe"}
|
857 |
+
{"relation": "IsA", "head": "dog", "tail": "loyal friend"}
|
858 |
+
{"relation": "AtLocation", "head": "fish", "tail": "river"}
|
859 |
+
{"relation": "AtLocation", "head": "salt", "tail": "ocean"}
|
860 |
+
{"relation": "AtLocation", "head": "card catalog", "tail": "library"}
|
861 |
+
{"relation": "AtLocation", "head": "cd", "tail": "cd player"}
|
862 |
+
{"relation": "AtLocation", "head": "planet", "tail": "space"}
|
863 |
+
{"relation": "AtLocation", "head": "clarinet", "tail": "orchestra"}
|
864 |
+
{"relation": "AtLocation", "head": "wine list", "tail": "restaurant"}
|
865 |
+
{"relation": "AtLocation", "head": "mouthwash", "tail": "bathroom"}
|
866 |
+
{"relation": "AtLocation", "head": "rosebush", "tail": "backyard"}
|
867 |
+
{"relation": "AtLocation", "head": "elephant", "tail": "circus"}
|
868 |
+
{"relation": "HasSubevent", "head": "play game", "tail": "have fun"}
|
869 |
+
{"relation": "UsedFor", "head": "sheet", "tail": "cover bed"}
|
870 |
+
{"relation": "CapableOf", "head": "computer", "tail": "process information"}
|
871 |
+
{"relation": "IsA", "head": "potato", "tail": "vegetable"}
|
872 |
+
{"relation": "UsedFor", "head": "bread", "tail": "eat"}
|
873 |
+
{"relation": "UsedFor", "head": "music stand", "tail": "hold music"}
|
874 |
+
{"relation": "UsedFor", "head": "razor", "tail": "shave"}
|
875 |
+
{"relation": "AtLocation", "head": "student", "tail": "at school"}
|
876 |
+
{"relation": "UsedFor", "head": "ball", "tail": "throw"}
|
877 |
+
{"relation": "IsA", "head": "dinner", "tail": "meal"}
|
878 |
+
{"relation": "AtLocation", "head": "notebook", "tail": "desk"}
|
879 |
+
{"relation": "UsedFor", "head": "ear", "tail": "hear"}
|
880 |
+
{"relation": "IsA", "head": "chocolate", "tail": "food"}
|
881 |
+
{"relation": "PartOf", "head": "son", "tail": "family"}
|
882 |
+
{"relation": "IsA", "head": "gun", "tail": "weapon"}
|
883 |
+
{"relation": "IsA", "head": "lettuce", "tail": "vegetable"}
|
884 |
+
{"relation": "IsA", "head": "car", "tail": "vehicle"}
|
885 |
+
{"relation": "UsedFor", "head": "fork", "tail": "eat"}
|
886 |
+
{"relation": "IsA", "head": "human", "tail": "animal"}
|
887 |
+
{"relation": "IsA", "head": "fall", "tail": "season"}
|
888 |
+
{"relation": "HasProperty", "head": "night", "tail": "dark"}
|
889 |
+
{"relation": "IsA", "head": "steel", "tail": "metal"}
|
890 |
+
{"relation": "HasProperty", "head": "sword", "tail": "sharp"}
|
891 |
+
{"relation": "IsA", "head": "chocolate", "tail": "candy"}
|
892 |
+
{"relation": "PartOf", "head": "leaf", "tail": "tree"}
|
893 |
+
{"relation": "IsA", "head": "crappie", "tail": "fish"}
|
894 |
+
{"relation": "IsA", "head": "salamander", "tail": "amphibian"}
|
895 |
+
{"relation": "IsA", "head": "table tennis", "tail": "sport"}
|
896 |
+
{"relation": "IsA", "head": "pelican", "tail": "bird"}
|
897 |
+
{"relation": "UsedFor", "head": "pencil", "tail": "write something on paper"}
|
898 |
+
{"relation": "PartOf", "head": "god", "tail": "religion"}
|
899 |
+
{"relation": "UsedFor", "head": "library", "tail": "do research"}
|
900 |
+
{"relation": "IsA", "head": "paris", "tail": "city"}
|
901 |
+
{"relation": "IsA", "head": "music", "tail": "form of art"}
|
902 |
+
{"relation": "HasProperty", "head": "most person", "tail": "right hand"}
|
903 |
+
{"relation": "HasProperty", "head": "most person", "tail": "right-handed"}
|
904 |
+
{"relation": "HasA", "head": "car", "tail": "headlight"}
|
905 |
+
{"relation": "IsA", "head": "girl", "tail": "hold puppy"}
|
906 |
+
{"relation": "IsA", "head": "bicycle", "tail": "form of transportation"}
|
907 |
+
{"relation": "AtLocation", "head": "nose", "tail": "face"}
|
908 |
+
{"relation": "IsA", "head": "there", "tail": "food at grocery store"}
|
909 |
+
{"relation": "MotivatedByGoal", "head": "propose to woman", "tail": "you love her"}
|
910 |
+
{"relation": "HasSubevent", "head": "have sex", "tail": "sweat"}
|
911 |
+
{"relation": "HasA", "head": "house", "tail": "room"}
|
912 |
+
{"relation": "NotCapableOf", "head": "pig", "tail": "fly"}
|
913 |
+
{"relation": "AtLocation", "head": "clothe", "tail": "drawer"}
|
914 |
+
{"relation": "IsA", "head": "sushi", "tail": "raw fish"}
|
915 |
+
{"relation": "AtLocation", "head": "sock", "tail": "drawer"}
|
916 |
+
{"relation": "CapableOf", "head": "student", "tail": "master subject"}
|
917 |
+
{"relation": "HasPrerequisite", "head": "eat breakfast", "tail": "wake up"}
|
918 |
+
{"relation": "HasProperty", "head": "apple", "tail": "good for you"}
|
919 |
+
{"relation": "UsedFor", "head": "soap", "tail": "wash yourself"}
|
920 |
+
{"relation": "IsA", "head": "corn", "tail": "food"}
|
921 |
+
{"relation": "HasProperty", "head": "glass", "tail": "half full"}
|
922 |
+
{"relation": "IsA", "head": "high rise", "tail": "build"}
|
923 |
+
{"relation": "UsedFor", "head": "go to party", "tail": "fun"}
|
924 |
+
{"relation": "HasPrerequisite", "head": "program", "tail": "learn program language"}
|
925 |
+
{"relation": "CreatedBy", "head": "music", "tail": "composer"}
|
926 |
+
{"relation": "AtLocation", "head": "sock", "tail": "sock drawer"}
|
927 |
+
{"relation": "CapableOf", "head": "policeman", "tail": "direct traffic"}
|
928 |
+
{"relation": "HasProperty", "head": "paper", "tail": "recyclable"}
|
929 |
+
{"relation": "IsA", "head": "chicken", "tail": "meat"}
|
930 |
+
{"relation": "IsA", "head": "sofa", "tail": "sit on"}
|
931 |
+
{"relation": "HasPrerequisite", "head": "see art", "tail": "go to museum"}
|
932 |
+
{"relation": "HasPrerequisite", "head": "go for haircut", "tail": "find barber"}
|
933 |
+
{"relation": "CapableOf", "head": "knife", "tail": "spread peanut butter"}
|
934 |
+
{"relation": "IsA", "head": "classroom", "tail": "in school"}
|
935 |
+
{"relation": "AtLocation", "head": "floor", "tail": "carpet"}
|
936 |
+
{"relation": "CapableOf", "head": "clerk", "tail": "stock shelve"}
|
937 |
+
{"relation": "AtLocation", "head": "bunsen burner", "tail": "chemistry lab"}
|
938 |
+
{"relation": "AtLocation", "head": "horse", "tail": "race track"}
|
939 |
+
{"relation": "AtLocation", "head": "rope", "tail": "boat"}
|
940 |
+
{"relation": "CapableOf", "head": "police officer", "tail": "direct traffic"}
|
941 |
+
{"relation": "HasProperty", "head": "dog", "tail": "very loyal"}
|
942 |
+
{"relation": "HasSubevent", "head": "read", "tail": "learn"}
|
943 |
+
{"relation": "UsedFor", "head": "bridge", "tail": "cross river"}
|
944 |
+
{"relation": "HasA", "head": "cat", "tail": "claw"}
|
945 |
+
{"relation": "AtLocation", "head": "puck", "tail": "hockey game"}
|
946 |
+
{"relation": "AtLocation", "head": "bill", "tail": "mail box"}
|
947 |
+
{"relation": "CapableOf", "head": "grocer", "tail": "stock shelve"}
|
948 |
+
{"relation": "CapableOf", "head": "person", "tail": "shoulder burden"}
|
949 |
+
{"relation": "HasPrerequisite", "head": "watch even news", "tail": "turn on tv"}
|
950 |
+
{"relation": "HasSubevent", "head": "have epileptic fit", "tail": "fall down"}
|
951 |
+
{"relation": "AtLocation", "head": "bell", "tail": "church"}
|
952 |
+
{"relation": "HasPrerequisite", "head": "reproduce", "tail": "find mate"}
|
953 |
+
{"relation": "AtLocation", "head": "book", "tail": "backpack"}
|
954 |
+
{"relation": "AtLocation", "head": "movie", "tail": "theater"}
|
955 |
+
{"relation": "HasSubevent", "head": "have nervous breakdown", "tail": "cry"}
|
956 |
+
{"relation": "HasPrerequisite", "head": "get some money from someone", "tail": "ask"}
|
957 |
+
{"relation": "NotCapableOf", "head": "deaf person", "tail": "hear"}
|
958 |
+
{"relation": "UsedFor", "head": "floor", "tail": "walk"}
|
959 |
+
{"relation": "CapableOf", "head": "woman", "tail": "mother child"}
|
960 |
+
{"relation": "HasSubevent", "head": "go for swim", "tail": "drown"}
|
961 |
+
{"relation": "AtLocation", "head": "actor", "tail": "movie"}
|
962 |
+
{"relation": "CapableOf", "head": "match", "tail": "light fire"}
|
963 |
+
{"relation": "HasPrerequisite", "head": "empty your bladder", "tail": "go to toilet"}
|
964 |
+
{"relation": "ReceivesAction", "head": "tank", "tail": "use in war"}
|
965 |
+
{"relation": "CapableOf", "head": "car", "tail": "slow down"}
|
966 |
+
{"relation": "CapableOf", "head": "nurse", "tail": "care for patient"}
|
967 |
+
{"relation": "CapableOf", "head": "detective", "tail": "tail suspect"}
|
968 |
+
{"relation": "UsedFor", "head": "contraceptive", "tail": "prevent pregnancy"}
|
969 |
+
{"relation": "HasProperty", "head": "grain of sand", "tail": "very small"}
|
970 |
+
{"relation": "Causes", "head": "wait in line", "tail": "boredom"}
|
971 |
+
{"relation": "CapableOf", "head": "visitor", "tail": "ring doorbell"}
|
972 |
+
{"relation": "AtLocation", "head": "knife", "tail": "drawer"}
|
973 |
+
{"relation": "AtLocation", "head": "gideon bible", "tail": "motel"}
|
974 |
+
{"relation": "UsedFor", "head": "towel bar", "tail": "hang towel"}
|
975 |
+
{"relation": "ReceivesAction", "head": "some plastic", "tail": "recycle"}
|
976 |
+
{"relation": "CapableOf", "head": "passenger", "tail": "board train"}
|
977 |
+
{"relation": "HasPrerequisite", "head": "sew", "tail": "thread needle"}
|
978 |
+
{"relation": "HasPrerequisite", "head": "think", "tail": "brain"}
|
979 |
+
{"relation": "AtLocation", "head": "clothe", "tail": "store"}
|
980 |
+
{"relation": "UsedFor", "head": "typewriter", "tail": "type letter"}
|
981 |
+
{"relation": "AtLocation", "head": "rack", "tail": "oven"}
|
982 |
+
{"relation": "HasProperty", "head": "party", "tail": "fun"}
|
983 |
+
{"relation": "HasProperty", "head": "fire engine", "tail": "red"}
|
984 |
+
{"relation": "IsA", "head": "dog", "tail": "canine"}
|
985 |
+
{"relation": "HasPrerequisite", "head": "watch television show", "tail": "turn on tv"}
|
986 |
+
{"relation": "HasSubevent", "head": "go to hairdresser", "tail": "get haircut"}
|
987 |
+
{"relation": "AtLocation", "head": "something", "tail": "sea"}
|
988 |
+
{"relation": "AtLocation", "head": "something", "tail": "refrigerator"}
|
989 |
+
{"relation": "IsA", "head": "soda", "tail": "drink"}
|
990 |
+
{"relation": "UsedFor", "head": "spanish restaurant", "tail": "eat spanish food"}
|
991 |
+
{"relation": "IsA", "head": "pocket knife", "tail": "useful tool"}
|
992 |
+
{"relation": "HasSubevent", "head": "enjoy film", "tail": "eat popcorn"}
|
993 |
+
{"relation": "HasPrerequisite", "head": "ski", "tail": "snow"}
|
994 |
+
{"relation": "HasA", "head": "two person", "tail": "sex"}
|
995 |
+
{"relation": "Causes", "head": "chat with friend", "tail": "laughter"}
|
996 |
+
{"relation": "CapableOf", "head": "vintner", "tail": "bottle wine"}
|
997 |
+
{"relation": "IsA", "head": "love", "tail": "feel"}
|
998 |
+
{"relation": "AtLocation", "head": "someone", "tail": "shop"}
|
999 |
+
{"relation": "CapableOf", "head": "dog", "tail": "guard your house"}
|
1000 |
+
{"relation": "HasSubevent", "head": "watch tv", "tail": "fall asleep"}
|
1001 |
+
{"relation": "CapableOf", "head": "plane", "tail": "crash"}
|
1002 |
+
{"relation": "HasProperty", "head": "canada", "tail": "north of unite state"}
|
1003 |
+
{"relation": "Causes", "head": "relax", "tail": "sleep"}
|
1004 |
+
{"relation": "IsA", "head": "banjo", "tail": "string instrument"}
|
1005 |
+
{"relation": "IsA", "head": "guitare", "tail": "instrument"}
|
1006 |
+
{"relation": "HasSubevent", "head": "diminish your own hunger", "tail": "eat"}
|
1007 |
+
{"relation": "HasSubevent", "head": "express how funny something", "tail": "be laugh"}
|
1008 |
+
{"relation": "HasPrerequisite", "head": "chop firewood", "tail": "axe"}
|
1009 |
+
{"relation": "HasSubevent", "head": "play frisbee", "tail": "catch frisbee"}
|
1010 |
+
{"relation": "HasPrerequisite", "head": "stop your car", "tail": "press brake"}
|
1011 |
+
{"relation": "Causes", "head": "bathe", "tail": "be clean"}
|
1012 |
+
{"relation": "IsA", "head": "stone", "tail": "another word for rock"}
|
1013 |
+
{"relation": "IsA", "head": "baseball", "tail": "american pastime"}
|
1014 |
+
{"relation": "IsA", "head": "beanie", "tail": "hat"}
|
1015 |
+
{"relation": "MadeOf", "head": "cowboy boot", "tail": "leather"}
|
1016 |
+
{"relation": "HasProperty", "head": "rubber duck", "tail": "yellow"}
|
1017 |
+
{"relation": "HasProperty", "head": "baby animal", "tail": "cute"}
|
1018 |
+
{"relation": "IsA", "head": "fedora", "tail": "hat"}
|
1019 |
+
{"relation": "HasSubevent", "head": "play ball", "tail": "catch ball"}
|
1020 |
+
{"relation": "IsA", "head": "shotgun", "tail": "gun"}
|
1021 |
+
{"relation": "HasPrerequisite", "head": "gather energy for tomorrow", "tail": "sleep"}
|
1022 |
+
{"relation": "HasPrerequisite", "head": "have examination", "tail": "see doctor"}
|
1023 |
+
{"relation": "CapableOf", "head": "plane", "tail": "arrive at airport"}
|
1024 |
+
{"relation": "HasPrerequisite", "head": "get up early", "tail": "go to bed early"}
|
1025 |
+
{"relation": "HasPrerequisite", "head": "make friend", "tail": "smile"}
|
1026 |
+
{"relation": "Desires", "head": "person", "tail": "laugh"}
|
1027 |
+
{"relation": "IsA", "head": "new york", "tail": "state"}
|
1028 |
+
{"relation": "IsA", "head": "clarinet", "tail": "instrument"}
|
1029 |
+
{"relation": "Causes", "head": "reproduce", "tail": "child"}
|
1030 |
+
{"relation": "IsA", "head": "bean", "tail": "vegetable"}
|
1031 |
+
{"relation": "HasSubevent", "head": "play basketball", "tail": "dribble"}
|
1032 |
+
{"relation": "CapableOf", "head": "camper", "tail": "sleep in tent"}
|
1033 |
+
{"relation": "HasPrerequisite", "head": "hear news", "tail": "turn on tv"}
|
1034 |
+
{"relation": "UsedFor", "head": "hill", "tail": "climb"}
|
1035 |
+
{"relation": "UsedFor", "head": "comb", "tail": "style hair"}
|
1036 |
+
{"relation": "CapableOf", "head": "turtle", "tail": "live long time"}
|
1037 |
+
{"relation": "UsedFor", "head": "tie your shoelace", "tail": "keep your shoe on"}
|
1038 |
+
{"relation": "HasPrerequisite", "head": "paint house", "tail": "ladder"}
|
1039 |
+
{"relation": "CapableOf", "head": "woman", "tail": "wear dress"}
|
1040 |
+
{"relation": "CapableOf", "head": "president", "tail": "govern country"}
|
1041 |
+
{"relation": "UsedFor", "head": "piggy bank", "tail": "save money"}
|
1042 |
+
{"relation": "UsedFor", "head": "think", "tail": "solve problem"}
|
1043 |
+
{"relation": "HasPrerequisite", "head": "watch television", "tail": "turn television on"}
|
1044 |
+
{"relation": "UsedFor", "head": "sofa bed", "tail": "sleep on"}
|
1045 |
+
{"relation": "HasPrerequisite", "head": "buy food", "tail": "go to store"}
|
1046 |
+
{"relation": "UsedFor", "head": "towel rack", "tail": "hold towel"}
|
1047 |
+
{"relation": "UsedFor", "head": "brownstone", "tail": "live in"}
|
1048 |
+
{"relation": "CapableOf", "head": "lawyer", "tail": "settle lawsuit"}
|
1049 |
+
{"relation": "UsedFor", "head": "fork", "tail": "eat food"}
|
1050 |
+
{"relation": "AtLocation", "head": "egg", "tail": "supermarket"}
|
1051 |
+
{"relation": "AtLocation", "head": "sun", "tail": "center of solar system"}
|
1052 |
+
{"relation": "AtLocation", "head": "tenor", "tail": "opera"}
|
1053 |
+
{"relation": "AtLocation", "head": "audience", "tail": "theatre"}
|
1054 |
+
{"relation": "AtLocation", "head": "human", "tail": "church"}
|
1055 |
+
{"relation": "AtLocation", "head": "staple", "tail": "stapler"}
|
1056 |
+
{"relation": "AtLocation", "head": "key", "tail": "purse"}
|
1057 |
+
{"relation": "AtLocation", "head": "trash", "tail": "dumpster"}
|
1058 |
+
{"relation": "AtLocation", "head": "city", "tail": "county"}
|
1059 |
+
{"relation": "AtLocation", "head": "shop basket", "tail": "supermarket"}
|
1060 |
+
{"relation": "AtLocation", "head": "science", "tail": "university"}
|
1061 |
+
{"relation": "AtLocation", "head": "closet", "tail": "bedroom"}
|
1062 |
+
{"relation": "AtLocation", "head": "foot", "tail": "shoe"}
|
1063 |
+
{"relation": "AtLocation", "head": "cavity", "tail": "tooth"}
|
1064 |
+
{"relation": "AtLocation", "head": "statue", "tail": "museum"}
|
1065 |
+
{"relation": "Desires", "head": "person", "tail": "feel important"}
|
1066 |
+
{"relation": "CreatedBy", "head": "book", "tail": "writer"}
|
1067 |
+
{"relation": "IsA", "head": "xylophone", "tail": "percussion instrument"}
|
1068 |
+
{"relation": "UsedFor", "head": "broom", "tail": "sweep"}
|
1069 |
+
{"relation": "UsedFor", "head": "knife", "tail": "stab"}
|
1070 |
+
{"relation": "IsA", "head": "english", "tail": "language"}
|
1071 |
+
{"relation": "HasProperty", "head": "lemon", "tail": "sour"}
|
1072 |
+
{"relation": "PartOf", "head": "trigger", "tail": "gun"}
|
1073 |
+
{"relation": "UsedFor", "head": "baseball", "tail": "play baseball"}
|
1074 |
+
{"relation": "AtLocation", "head": "table", "tail": "kitchen"}
|
1075 |
+
{"relation": "HasProperty", "head": "oil", "tail": "slippery"}
|
1076 |
+
{"relation": "UsedFor", "head": "cup", "tail": "drink"}
|
1077 |
+
{"relation": "AtLocation", "head": "tree", "tail": "forest"}
|
1078 |
+
{"relation": "MadeOf", "head": "pencil", "tail": "wood"}
|
1079 |
+
{"relation": "IsA", "head": "london", "tail": "city"}
|
1080 |
+
{"relation": "IsA", "head": "swim", "tail": "sport"}
|
1081 |
+
{"relation": "CapableOf", "head": "child", "tail": "play"}
|
1082 |
+
{"relation": "PartOf", "head": "door", "tail": "house"}
|
1083 |
+
{"relation": "UsedFor", "head": "pot", "tail": "cook"}
|
1084 |
+
{"relation": "HasProperty", "head": "rock", "tail": "heavy"}
|
1085 |
+
{"relation": "PartOf", "head": "palm", "tail": "hand"}
|
1086 |
+
{"relation": "MadeOf", "head": "coffee", "tail": "coffee bean"}
|
1087 |
+
{"relation": "HasProperty", "head": "paper", "tail": "white"}
|
1088 |
+
{"relation": "IsA", "head": "fish", "tail": "animal"}
|
1089 |
+
{"relation": "MadeOf", "head": "jean", "tail": "denim"}
|
1090 |
+
{"relation": "HasProperty", "head": "fruit", "tail": "edible"}
|
1091 |
+
{"relation": "IsA", "head": "robot", "tail": "machine"}
|
1092 |
+
{"relation": "CapableOf", "head": "pilot", "tail": "fly helicopter"}
|
1093 |
+
{"relation": "IsA", "head": "backgammon", "tail": "game"}
|
1094 |
+
{"relation": "IsA", "head": "jupiter", "tail": "planet"}
|
1095 |
+
{"relation": "IsA", "head": "lake", "tail": "body of water"}
|
1096 |
+
{"relation": "IsA", "head": "spider", "tail": "arachnid"}
|
1097 |
+
{"relation": "IsA", "head": "whale", "tail": "mammal"}
|
1098 |
+
{"relation": "IsA", "head": "beaver", "tail": "mammal"}
|
1099 |
+
{"relation": "IsA", "head": "pheasant", "tail": "bird"}
|
1100 |
+
{"relation": "IsA", "head": "crow", "tail": "bird"}
|
1101 |
+
{"relation": "IsA", "head": "hawk", "tail": "bird"}
|
1102 |
+
{"relation": "IsA", "head": "goose", "tail": "bird"}
|
1103 |
+
{"relation": "IsA", "head": "perl", "tail": "program language"}
|
1104 |
+
{"relation": "IsA", "head": "c", "tail": "program language"}
|
1105 |
+
{"relation": "CapableOf", "head": "bird", "tail": "sing"}
|
1106 |
+
{"relation": "Causes", "head": "sex", "tail": "orgasm"}
|
1107 |
+
{"relation": "AtLocation", "head": "fish", "tail": "aquarium"}
|
1108 |
+
{"relation": "Desires", "head": "dog", "tail": "chew on bone"}
|
1109 |
+
{"relation": "NotCapableOf", "head": "dog", "tail": "sweat"}
|
1110 |
+
{"relation": "IsA", "head": "cat", "tail": "carnivore"}
|
1111 |
+
{"relation": "HasPrerequisite", "head": "buy present for others", "tail": "have money"}
|
1112 |
+
{"relation": "AtLocation", "head": "twenty four hour", "tail": "day"}
|
1113 |
+
{"relation": "AtLocation", "head": "phone", "tail": "your desk"}
|
1114 |
+
{"relation": "NotCapableOf", "head": "atheist", "tail": "believe in god"}
|
1115 |
+
{"relation": "UsedFor", "head": "dog", "tail": "companionship"}
|
1116 |
+
{"relation": "AtLocation", "head": "college", "tail": "city"}
|
1117 |
+
{"relation": "AtLocation", "head": "feather", "tail": "bird"}
|
1118 |
+
{"relation": "UsedFor", "head": "shovel", "tail": "dig hole"}
|
1119 |
+
{"relation": "UsedFor", "head": "soap", "tail": "clean something"}
|
1120 |
+
{"relation": "HasProperty", "head": "apple", "tail": "good to eat"}
|
1121 |
+
{"relation": "HasSubevent", "head": "eat breakfast in bed", "tail": "watch tv"}
|
1122 |
+
{"relation": "HasSubevent", "head": "commit to memory", "tail": "repeat"}
|
1123 |
+
{"relation": "HasPrerequisite", "head": "learn", "tail": "study"}
|
1124 |
+
{"relation": "IsA", "head": "unix", "tail": "operate system"}
|
1125 |
+
{"relation": "IsA", "head": "unix", "tail": "system"}
|
1126 |
+
{"relation": "HasPrerequisite", "head": "write term paper", "tail": "research"}
|
1127 |
+
{"relation": "ReceivesAction", "head": "sailboat", "tail": "propel by wind"}
|
1128 |
+
{"relation": "DefinedAs", "head": "kitten", "tail": "baby cat"}
|
1129 |
+
{"relation": "HasSubevent", "head": "pray", "tail": "kneel down"}
|
1130 |
+
{"relation": "HasPrerequisite", "head": "shop", "tail": "have money"}
|
1131 |
+
{"relation": "HasProperty", "head": "kill", "tail": "wrong"}
|
1132 |
+
{"relation": "UsedFor", "head": "bottle", "tail": "store liquid"}
|
1133 |
+
{"relation": "HasPrerequisite", "head": "sleep", "tail": "get in bed"}
|
1134 |
+
{"relation": "HasProperty", "head": "music", "tail": "relax"}
|
1135 |
+
{"relation": "HasProperty", "head": "men and woman", "tail": "different"}
|
1136 |
+
{"relation": "AtLocation", "head": "tongue", "tail": "your mouth"}
|
1137 |
+
{"relation": "AtLocation", "head": "plate", "tail": "kitchen"}
|
1138 |
+
{"relation": "HasPrerequisite", "head": "become inebriate", "tail": "drink alcohol"}
|
1139 |
+
{"relation": "HasProperty", "head": "sail", "tail": "fun"}
|
1140 |
+
{"relation": "IsA", "head": "boy", "tail": "young man"}
|
1141 |
+
{"relation": "IsA", "head": "beer", "tail": "alcoholic beverage"}
|
1142 |
+
{"relation": "HasPrerequisite", "head": "study", "tail": "concentration"}
|
1143 |
+
{"relation": "IsA", "head": "city", "tail": "place"}
|
1144 |
+
{"relation": "Causes", "head": "fart", "tail": "bad smell"}
|
1145 |
+
{"relation": "Causes", "head": "smoke cigarette", "tail": "lung cancer"}
|
1146 |
+
{"relation": "HasPrerequisite", "head": "compete against someone", "tail": "enter competition"}
|
1147 |
+
{"relation": "AtLocation", "head": "roof tile", "tail": "roof"}
|
1148 |
+
{"relation": "UsedFor", "head": "toothbrush", "tail": "clean your tooth"}
|
1149 |
+
{"relation": "HasPrerequisite", "head": "go to performance", "tail": "buy ticket"}
|
1150 |
+
{"relation": "HasPrerequisite", "head": "create idea", "tail": "think"}
|
1151 |
+
{"relation": "HasPrerequisite", "head": "surprise someone", "tail": "hide"}
|
1152 |
+
{"relation": "HasSubevent", "head": "meet interest person", "tail": "talk to them"}
|
1153 |
+
{"relation": "HasPrerequisite", "head": "take phone call", "tail": "pick up phone"}
|
1154 |
+
{"relation": "HasPrerequisite", "head": "reach tentative agreement", "tail": "compromise"}
|
1155 |
+
{"relation": "HasSubevent", "head": "lie", "tail": "you feel guilty"}
|
1156 |
+
{"relation": "UsedFor", "head": "key chain", "tail": "keep key together"}
|
1157 |
+
{"relation": "AtLocation", "head": "foot", "tail": "desk"}
|
1158 |
+
{"relation": "IsA", "head": "pea", "tail": "vegetable"}
|
1159 |
+
{"relation": "HasSubevent", "head": "compete", "tail": "you lose"}
|
1160 |
+
{"relation": "CapableOf", "head": "submarine", "tail": "travel under water"}
|
1161 |
+
{"relation": "HasPrerequisite", "head": "watch even news", "tail": "turn on television"}
|
1162 |
+
{"relation": "HasSubevent", "head": "play", "tail": "have fun"}
|
1163 |
+
{"relation": "HasPrerequisite", "head": "have bath", "tail": "fill tub with water"}
|
1164 |
+
{"relation": "AtLocation", "head": "apple", "tail": "apple tree"}
|
1165 |
+
{"relation": "IsA", "head": "slave", "tail": "person"}
|
1166 |
+
{"relation": "HasSubevent", "head": "drive", "tail": "listen to radio"}
|
1167 |
+
{"relation": "UsedFor", "head": "restaurant", "tail": "eat out"}
|
1168 |
+
{"relation": "HasA", "head": "chess board", "tail": "64 square"}
|
1169 |
+
{"relation": "AtLocation", "head": "school", "tail": "city"}
|
1170 |
+
{"relation": "HasSubevent", "head": "chat with friend", "tail": "laugh"}
|
1171 |
+
{"relation": "HasSubevent", "head": "have bath", "tail": "get wet"}
|
1172 |
+
{"relation": "AtLocation", "head": "baggage", "tail": "airport"}
|
1173 |
+
{"relation": "HasSubevent", "head": "paint picture", "tail": "look at model"}
|
1174 |
+
{"relation": "HasSubevent", "head": "relax", "tail": "sleep"}
|
1175 |
+
{"relation": "AtLocation", "head": "cookie", "tail": "jar"}
|
1176 |
+
{"relation": "CapableOf", "head": "baby", "tail": "cry loud"}
|
1177 |
+
{"relation": "Causes", "head": "strike match", "tail": "fire"}
|
1178 |
+
{"relation": "CapableOf", "head": "banker", "tail": "lend money"}
|
1179 |
+
{"relation": "HasPrerequisite", "head": "bury cat", "tail": "dig hole"}
|
1180 |
+
{"relation": "HasPrerequisite", "head": "earn live", "tail": "work"}
|
1181 |
+
{"relation": "AtLocation", "head": "twenty-four hour", "tail": "day"}
|
1182 |
+
{"relation": "CapableOf", "head": "person", "tail": "board plane"}
|
1183 |
+
{"relation": "AtLocation", "head": "furnace", "tail": "basement"}
|
1184 |
+
{"relation": "UsedFor", "head": "play sport", "tail": "competition"}
|
1185 |
+
{"relation": "UsedFor", "head": "stair", "tail": "climb"}
|
1186 |
+
{"relation": "UsedFor", "head": "park lot", "tail": "park car"}
|
1187 |
+
{"relation": "CapableOf", "head": "terrorist", "tail": "arm bomb"}
|
1188 |
+
{"relation": "UsedFor", "head": "wood", "tail": "fence in property"}
|
1189 |
+
{"relation": "UsedFor", "head": "pool", "tail": "get out of heat"}
|
1190 |
+
{"relation": "HasPrerequisite", "head": "play game", "tail": "learn rule"}
|
1191 |
+
{"relation": "HasA", "head": "duck", "tail": "web foot"}
|
1192 |
+
{"relation": "HasSubevent", "head": "play basketball", "tail": "score point"}
|
1193 |
+
{"relation": "CapableOf", "head": "ball", "tail": "roll down hill"}
|
1194 |
+
{"relation": "AtLocation", "head": "stethoscope", "tail": "doctor"}
|
1195 |
+
{"relation": "HasSubevent", "head": "make patchwork quilt", "tail": "sew"}
|
1196 |
+
{"relation": "AtLocation", "head": "leave", "tail": "tree"}
|
1197 |
+
{"relation": "HasA", "head": "plant", "tail": "green leave"}
|
1198 |
+
{"relation": "HasPrerequisite", "head": "pay bill", "tail": "have money"}
|
1199 |
+
{"relation": "UsedFor", "head": "skin", "tail": "cover body"}
|
1200 |
+
{"relation": "IsA", "head": "spanish", "tail": "language"}
|
dataset/train.jsonl
ADDED
@@ -0,0 +1,600 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"relation": "IsA", "head": "tool", "tail": "object"}
|
2 |
+
{"relation": "AtLocation", "head": "ferret", "tail": "pet store"}
|
3 |
+
{"relation": "HasPrerequisite", "head": "get onto web", "tail": "turn on your computer"}
|
4 |
+
{"relation": "IsA", "head": "helium", "tail": "gas"}
|
5 |
+
{"relation": "HasProperty", "head": "most rock", "tail": "hard"}
|
6 |
+
{"relation": "NotCapableOf", "head": "person", "tail": "walk on water"}
|
7 |
+
{"relation": "ReceivesAction", "head": "necklace", "tail": "wear around neck"}
|
8 |
+
{"relation": "HasA", "head": "human", "tail": "two leg"}
|
9 |
+
{"relation": "UsedFor", "head": "go to pub", "tail": "have drink"}
|
10 |
+
{"relation": "HasPrerequisite", "head": "bathe", "tail": "water"}
|
11 |
+
{"relation": "AtLocation", "head": "someone", "tail": "desk"}
|
12 |
+
{"relation": "HasProperty", "head": "exercise", "tail": "very good for you"}
|
13 |
+
{"relation": "IsA", "head": "pet", "tail": "animal"}
|
14 |
+
{"relation": "HasA", "head": "square", "tail": "four side"}
|
15 |
+
{"relation": "AtLocation", "head": "26 letter", "tail": "english alphabet"}
|
16 |
+
{"relation": "HasPrerequisite", "head": "see art", "tail": "go to art museum"}
|
17 |
+
{"relation": "IsA", "head": "orange", "tail": "colour"}
|
18 |
+
{"relation": "UsedFor", "head": "see", "tail": "cut"}
|
19 |
+
{"relation": "CapableOf", "head": "comb", "tail": "part your hair"}
|
20 |
+
{"relation": "HasSubevent", "head": "play lacrosse", "tail": "run"}
|
21 |
+
{"relation": "Desires", "head": "person", "tail": "privacy"}
|
22 |
+
{"relation": "AtLocation", "head": "cow", "tail": "countryside"}
|
23 |
+
{"relation": "HasSubevent", "head": "go to pub", "tail": "have drink"}
|
24 |
+
{"relation": "IsA", "head": "bus", "tail": "form of public transportation"}
|
25 |
+
{"relation": "HasA", "head": "all car", "tail": "engine"}
|
26 |
+
{"relation": "HasA", "head": "book", "tail": "information"}
|
27 |
+
{"relation": "HasSubevent", "head": "maintain good health", "tail": "exercise"}
|
28 |
+
{"relation": "Causes", "head": "urinate", "tail": "relief"}
|
29 |
+
{"relation": "AtLocation", "head": "star", "tail": "outer space"}
|
30 |
+
{"relation": "HasPrerequisite", "head": "bring suit", "tail": "hire lawyer"}
|
31 |
+
{"relation": "CapableOf", "head": "guard", "tail": "sound alarm"}
|
32 |
+
{"relation": "CapableOf", "head": "fruit", "tail": "grow on tree"}
|
33 |
+
{"relation": "CapableOf", "head": "batter", "tail": "hit baseball"}
|
34 |
+
{"relation": "AtLocation", "head": "ice cream", "tail": "freezer"}
|
35 |
+
{"relation": "AtLocation", "head": "volume", "tail": "library"}
|
36 |
+
{"relation": "UsedFor", "head": "bath", "tail": "relaxation"}
|
37 |
+
{"relation": "UsedFor", "head": "show", "tail": "entertain"}
|
38 |
+
{"relation": "AtLocation", "head": "death", "tail": "war"}
|
39 |
+
{"relation": "AtLocation", "head": "seat", "tail": "movie"}
|
40 |
+
{"relation": "AtLocation", "head": "pen", "tail": "pocket"}
|
41 |
+
{"relation": "AtLocation", "head": "test tube", "tail": "chemistry lab"}
|
42 |
+
{"relation": "AtLocation", "head": "planet", "tail": "universe"}
|
43 |
+
{"relation": "AtLocation", "head": "classroom", "tail": "university"}
|
44 |
+
{"relation": "CapableOf", "head": "man", "tail": "tie tie"}
|
45 |
+
{"relation": "HasPrerequisite", "head": "go to restaurant", "tail": "make reservation"}
|
46 |
+
{"relation": "AtLocation", "head": "antenna", "tail": "roof"}
|
47 |
+
{"relation": "UsedFor", "head": "woolen fabric", "tail": "make clothe"}
|
48 |
+
{"relation": "HasSubevent", "head": "watch film", "tail": "cry"}
|
49 |
+
{"relation": "CapableOf", "head": "musician", "tail": "play musical instrument"}
|
50 |
+
{"relation": "Causes", "head": "dream", "tail": "nightmare"}
|
51 |
+
{"relation": "UsedFor", "head": "closet", "tail": "store clothe"}
|
52 |
+
{"relation": "UsedFor", "head": "kiss someone", "tail": "express love"}
|
53 |
+
{"relation": "Causes", "head": "walk in rain", "tail": "you get very wet"}
|
54 |
+
{"relation": "Causes", "head": "buy hamburger", "tail": "eat"}
|
55 |
+
{"relation": "UsedFor", "head": "use computer", "tail": "work"}
|
56 |
+
{"relation": "AtLocation", "head": "shade", "tail": "tree"}
|
57 |
+
{"relation": "AtLocation", "head": "tooth", "tail": "your mouth"}
|
58 |
+
{"relation": "UsedFor", "head": "stove", "tail": "cook"}
|
59 |
+
{"relation": "Causes", "head": "think", "tail": "idea"}
|
60 |
+
{"relation": "AtLocation", "head": "clock", "tail": "desk"}
|
61 |
+
{"relation": "IsA", "head": "pink", "tail": "color"}
|
62 |
+
{"relation": "IsA", "head": "arkansas", "tail": "state"}
|
63 |
+
{"relation": "MotivatedByGoal", "head": "work", "tail": "you need money"}
|
64 |
+
{"relation": "HasSubevent", "head": "have fun", "tail": "laugh"}
|
65 |
+
{"relation": "IsA", "head": "island", "tail": "land"}
|
66 |
+
{"relation": "UsedFor", "head": "clothe store change room", "tail": "try on clothe"}
|
67 |
+
{"relation": "AtLocation", "head": "satellite", "tail": "orbit"}
|
68 |
+
{"relation": "HasProperty", "head": "sailboat", "tail": "power by wind"}
|
69 |
+
{"relation": "AtLocation", "head": "someone", "tail": "doctor office"}
|
70 |
+
{"relation": "CapableOf", "head": "boy", "tail": "fancy girl"}
|
71 |
+
{"relation": "UsedFor", "head": "go to movie", "tail": "be entertain"}
|
72 |
+
{"relation": "UsedFor", "head": "board", "tail": "build"}
|
73 |
+
{"relation": "HasSubevent", "head": "win baseball game", "tail": "cheer"}
|
74 |
+
{"relation": "HasSubevent", "head": "cash in", "tail": "receive money"}
|
75 |
+
{"relation": "HasFirstSubevent", "head": "attend lecture", "tail": "sit"}
|
76 |
+
{"relation": "HasPrerequisite", "head": "kill someone", "tail": "get weapon"}
|
77 |
+
{"relation": "AtLocation", "head": "blotter", "tail": "desk"}
|
78 |
+
{"relation": "ReceivesAction", "head": "all paper", "tail": "recycle"}
|
79 |
+
{"relation": "AtLocation", "head": "plankton", "tail": "water"}
|
80 |
+
{"relation": "PartOf", "head": "sex", "tail": "human experience"}
|
81 |
+
{"relation": "HasPrerequisite", "head": "do housework", "tail": "mop"}
|
82 |
+
{"relation": "AtLocation", "head": "garbage", "tail": "landfill"}
|
83 |
+
{"relation": "MotivatedByGoal", "head": "drink", "tail": "you be thirsty"}
|
84 |
+
{"relation": "IsA", "head": "penny", "tail": "coin"}
|
85 |
+
{"relation": "HasPrerequisite", "head": "play game", "tail": "know rule"}
|
86 |
+
{"relation": "UsedFor", "head": "beer mug", "tail": "drink beer from"}
|
87 |
+
{"relation": "HasPrerequisite", "head": "pass class", "tail": "study hard"}
|
88 |
+
{"relation": "UsedFor", "head": "doll", "tail": "play with"}
|
89 |
+
{"relation": "IsA", "head": "dog", "tail": "domesticate animal"}
|
90 |
+
{"relation": "AtLocation", "head": "chest", "tail": "drawer in bedroom"}
|
91 |
+
{"relation": "HasProperty", "head": "robin egg", "tail": "blue"}
|
92 |
+
{"relation": "AtLocation", "head": "sign", "tail": "fork in road"}
|
93 |
+
{"relation": "AtLocation", "head": "ladder", "tail": "garage"}
|
94 |
+
{"relation": "AtLocation", "head": "automobile", "tail": "street"}
|
95 |
+
{"relation": "AtLocation", "head": "toothbrush", "tail": "dentist"}
|
96 |
+
{"relation": "AtLocation", "head": "something", "tail": "train station"}
|
97 |
+
{"relation": "AtLocation", "head": "duck", "tail": "pond"}
|
98 |
+
{"relation": "AtLocation", "head": "someone", "tail": "tree"}
|
99 |
+
{"relation": "AtLocation", "head": "bus", "tail": "bus stop"}
|
100 |
+
{"relation": "AtLocation", "head": "pair", "tail": "pant in closet"}
|
101 |
+
{"relation": "AtLocation", "head": "book", "tail": "desk"}
|
102 |
+
{"relation": "Causes", "head": "go to pub", "tail": "get drunk"}
|
103 |
+
{"relation": "HasPrerequisite", "head": "buy present for others", "tail": "money"}
|
104 |
+
{"relation": "AtLocation", "head": "something", "tail": "bottom of ocean"}
|
105 |
+
{"relation": "IsA", "head": "tea", "tail": "drink"}
|
106 |
+
{"relation": "AtLocation", "head": "stool", "tail": "bar"}
|
107 |
+
{"relation": "AtLocation", "head": "someone", "tail": "fair"}
|
108 |
+
{"relation": "AtLocation", "head": "eraser", "tail": "school"}
|
109 |
+
{"relation": "IsA", "head": "music", "tail": "language"}
|
110 |
+
{"relation": "IsA", "head": "fire", "tail": "combustion"}
|
111 |
+
{"relation": "HasSubevent", "head": "see movie", "tail": "eat popcorn"}
|
112 |
+
{"relation": "UsedFor", "head": "toy car", "tail": "play"}
|
113 |
+
{"relation": "UsedFor", "head": "yard", "tail": "play"}
|
114 |
+
{"relation": "Causes", "head": "add up column of number", "tail": "sum"}
|
115 |
+
{"relation": "HasSubevent", "head": "dive", "tail": "hold your breath"}
|
116 |
+
{"relation": "AtLocation", "head": "check", "tail": "counter in airport"}
|
117 |
+
{"relation": "CapableOf", "head": "author", "tail": "write that book"}
|
118 |
+
{"relation": "AtLocation", "head": "trash", "tail": "dump"}
|
119 |
+
{"relation": "Desires", "head": "person", "tail": "their own house"}
|
120 |
+
{"relation": "HasSubevent", "head": "ski", "tail": "you fall over"}
|
121 |
+
{"relation": "UsedFor", "head": "see", "tail": "cut thing such as wood"}
|
122 |
+
{"relation": "UsedFor", "head": "tennis game", "tail": "exercise"}
|
123 |
+
{"relation": "UsedFor", "head": "post office", "tail": "mail letter"}
|
124 |
+
{"relation": "UsedFor", "head": "aisle", "tail": "walk through"}
|
125 |
+
{"relation": "Desires", "head": "person", "tail": "be knowledgeable"}
|
126 |
+
{"relation": "HasSubevent", "head": "make bread", "tail": "knead of dough"}
|
127 |
+
{"relation": "AtLocation", "head": "scientist", "tail": "laboratory"}
|
128 |
+
{"relation": "IsA", "head": "read", "tail": "activity"}
|
129 |
+
{"relation": "AtLocation", "head": "tongue depressor", "tail": "doctor"}
|
130 |
+
{"relation": "HasSubevent", "head": "go to get haircut", "tail": "read magazine"}
|
131 |
+
{"relation": "HasSubevent", "head": "listen to radio", "tail": "dance"}
|
132 |
+
{"relation": "CapableOf", "head": "battery", "tail": "power flashlight"}
|
133 |
+
{"relation": "AtLocation", "head": "cat", "tail": "table"}
|
134 |
+
{"relation": "AtLocation", "head": "weapon", "tail": "war"}
|
135 |
+
{"relation": "HasA", "head": "bike", "tail": "two wheel"}
|
136 |
+
{"relation": "AtLocation", "head": "furniture", "tail": "house"}
|
137 |
+
{"relation": "ReceivesAction", "head": "book", "tail": "find in library"}
|
138 |
+
{"relation": "AtLocation", "head": "rock", "tail": "grind"}
|
139 |
+
{"relation": "AtLocation", "head": "park ranger", "tail": "state park"}
|
140 |
+
{"relation": "HasPrerequisite", "head": "pretend", "tail": "have imagination"}
|
141 |
+
{"relation": "AtLocation", "head": "advertise", "tail": "newspaper"}
|
142 |
+
{"relation": "AtLocation", "head": "traffic", "tail": "street"}
|
143 |
+
{"relation": "AtLocation", "head": "table cloth", "tail": "table"}
|
144 |
+
{"relation": "AtLocation", "head": "bride and groom", "tail": "wed"}
|
145 |
+
{"relation": "HasSubevent", "head": "commit murder", "tail": "kill someone"}
|
146 |
+
{"relation": "CapableOf", "head": "parent", "tail": "name their child"}
|
147 |
+
{"relation": "HasPrerequisite", "head": "get up early", "tail": "set alarm"}
|
148 |
+
{"relation": "UsedFor", "head": "read to your child", "tail": "educate them"}
|
149 |
+
{"relation": "IsA", "head": "german", "tail": "language"}
|
150 |
+
{"relation": "AtLocation", "head": "beaker", "tail": "chemistry lab"}
|
151 |
+
{"relation": "AtLocation", "head": "other planet", "tail": "outerspace"}
|
152 |
+
{"relation": "HasProperty", "head": "storm", "tail": "dangerous"}
|
153 |
+
{"relation": "CapableOf", "head": "woman", "tail": "captain ship"}
|
154 |
+
{"relation": "HasSubevent", "head": "make friend", "tail": "talk"}
|
155 |
+
{"relation": "UsedFor", "head": "dish", "tail": "serve food"}
|
156 |
+
{"relation": "AtLocation", "head": "artist", "tail": "art show"}
|
157 |
+
{"relation": "HasPrerequisite", "head": "smoke", "tail": "light cigarette"}
|
158 |
+
{"relation": "IsA", "head": "avenue", "tail": "street"}
|
159 |
+
{"relation": "HasPrerequisite", "head": "listen to music", "tail": "ear"}
|
160 |
+
{"relation": "Causes", "head": "wash your car", "tail": "your car to be clean"}
|
161 |
+
{"relation": "HasPrerequisite", "head": "go to school", "tail": "enroll"}
|
162 |
+
{"relation": "IsA", "head": "fear", "tail": "emotion"}
|
163 |
+
{"relation": "HasSubevent", "head": "see band", "tail": "listen to music"}
|
164 |
+
{"relation": "HasPrerequisite", "head": "breathe", "tail": "inhale"}
|
165 |
+
{"relation": "HasSubevent", "head": "fish", "tail": "catch fish"}
|
166 |
+
{"relation": "HasSubevent", "head": "serve customer", "tail": "get tip"}
|
167 |
+
{"relation": "AtLocation", "head": "something", "tail": "mountain"}
|
168 |
+
{"relation": "HasPrerequisite", "head": "bring in verdict", "tail": "judgement"}
|
169 |
+
{"relation": "CapableOf", "head": "sun", "tail": "shine brightly"}
|
170 |
+
{"relation": "AtLocation", "head": "opera glass", "tail": "opera"}
|
171 |
+
{"relation": "IsA", "head": "something you find outside", "tail": "tree"}
|
172 |
+
{"relation": "HasA", "head": "person", "tail": "name"}
|
173 |
+
{"relation": "CapableOf", "head": "gardener", "tail": "water her plant"}
|
174 |
+
{"relation": "HasPrerequisite", "head": "listen to radio", "tail": "have radio"}
|
175 |
+
{"relation": "HasPrerequisite", "head": "drink", "tail": "swallow"}
|
176 |
+
{"relation": "HasA", "head": "airplane", "tail": "wing"}
|
177 |
+
{"relation": "CapableOf", "head": "sprinkler", "tail": "water lawn"}
|
178 |
+
{"relation": "UsedFor", "head": "soap dish", "tail": "hold soap"}
|
179 |
+
{"relation": "HasA", "head": "earth", "tail": "melt core"}
|
180 |
+
{"relation": "HasSubevent", "head": "take break", "tail": "smoke cigarette"}
|
181 |
+
{"relation": "HasSubevent", "head": "jump out of window", "tail": "fall to grind"}
|
182 |
+
{"relation": "CapableOf", "head": "child", "tail": "trade pokemon card"}
|
183 |
+
{"relation": "UsedFor", "head": "dance club", "tail": "dance"}
|
184 |
+
{"relation": "UsedFor", "head": "vent brush", "tail": "clean vent"}
|
185 |
+
{"relation": "UsedFor", "head": "hoist", "tail": "lift heavy object"}
|
186 |
+
{"relation": "UsedFor", "head": "beanbag chair", "tail": "sit down"}
|
187 |
+
{"relation": "AtLocation", "head": "fork", "tail": "kitchen"}
|
188 |
+
{"relation": "CapableOf", "head": "student", "tail": "study book"}
|
189 |
+
{"relation": "UsedFor", "head": "radiator", "tail": "heat room"}
|
190 |
+
{"relation": "HasSubevent", "head": "visit other country", "tail": "sightsee"}
|
191 |
+
{"relation": "HasPrerequisite", "head": "meet person", "tail": "go to bar"}
|
192 |
+
{"relation": "AtLocation", "head": "asteroid", "tail": "outerspace"}
|
193 |
+
{"relation": "HasSubevent", "head": "enjoy company of your friend", "tail": "drink"}
|
194 |
+
{"relation": "UsedFor", "head": "gun", "tail": "shoot thing"}
|
195 |
+
{"relation": "UsedFor", "head": "spout", "tail": "pour liquid"}
|
196 |
+
{"relation": "AtLocation", "head": "dish", "tail": "cabinet"}
|
197 |
+
{"relation": "HasA", "head": "cheese", "tail": "flavor"}
|
198 |
+
{"relation": "HasSubevent", "head": "go see film", "tail": "buy popcorn"}
|
199 |
+
{"relation": "HasA", "head": "human", "tail": "brain"}
|
200 |
+
{"relation": "HasSubevent", "head": "surf", "tail": "get wet"}
|
201 |
+
{"relation": "HasSubevent", "head": "make bread", "tail": "knead dough"}
|
202 |
+
{"relation": "HasPrerequisite", "head": "read newspaper", "tail": "have newspaper"}
|
203 |
+
{"relation": "AtLocation", "head": "screwdriver", "tail": "toolbox"}
|
204 |
+
{"relation": "HasA", "head": "human", "tail": "two arm"}
|
205 |
+
{"relation": "AtLocation", "head": "editorial", "tail": "newspaper"}
|
206 |
+
{"relation": "AtLocation", "head": "bunsen burner", "tail": "laboratory"}
|
207 |
+
{"relation": "CapableOf", "head": "scientist", "tail": "prove theory"}
|
208 |
+
{"relation": "HasProperty", "head": "explosive", "tail": "dangerous"}
|
209 |
+
{"relation": "UsedFor", "head": "tub", "tail": "take bath"}
|
210 |
+
{"relation": "AtLocation", "head": "something", "tail": "chair"}
|
211 |
+
{"relation": "AtLocation", "head": "someone", "tail": "corner"}
|
212 |
+
{"relation": "IsA", "head": "sex", "tail": "good thing"}
|
213 |
+
{"relation": "IsA", "head": "water", "tail": "reflective surface"}
|
214 |
+
{"relation": "IsA", "head": "violence", "tail": "bad thing"}
|
215 |
+
{"relation": "IsA", "head": "pear", "tail": "fruit"}
|
216 |
+
{"relation": "IsA", "head": "flag", "tail": "symbol"}
|
217 |
+
{"relation": "IsA", "head": "horse", "tail": "large mammal"}
|
218 |
+
{"relation": "CausesDesire", "head": "be dirty", "tail": "bathe"}
|
219 |
+
{"relation": "IsA", "head": "dollar", "tail": "money"}
|
220 |
+
{"relation": "IsA", "head": "flute", "tail": "wind instrument"}
|
221 |
+
{"relation": "UsedFor", "head": "cannonball", "tail": "sink ship"}
|
222 |
+
{"relation": "HasSubevent", "head": "flirt", "tail": "smile"}
|
223 |
+
{"relation": "UsedFor", "head": "grape", "tail": "make wine"}
|
224 |
+
{"relation": "PartOf", "head": "letter", "tail": "word"}
|
225 |
+
{"relation": "HasProperty", "head": "leave", "tail": "green"}
|
226 |
+
{"relation": "CapableOf", "head": "programmer", "tail": "write software"}
|
227 |
+
{"relation": "IsA", "head": "library", "tail": "quiet place"}
|
228 |
+
{"relation": "CapableOf", "head": "girl", "tail": "dress doll"}
|
229 |
+
{"relation": "IsA", "head": "library", "tail": "good place to study"}
|
230 |
+
{"relation": "UsedFor", "head": "shoulder bag", "tail": "carry thing"}
|
231 |
+
{"relation": "HasProperty", "head": "thumbtack", "tail": "sharp"}
|
232 |
+
{"relation": "UsedFor", "head": "oven", "tail": "cook"}
|
233 |
+
{"relation": "HasProperty", "head": "tree", "tail": "alive"}
|
234 |
+
{"relation": "Causes", "head": "eat ice cream", "tail": "happiness"}
|
235 |
+
{"relation": "IsA", "head": "square", "tail": "rectangle"}
|
236 |
+
{"relation": "UsedFor", "head": "temple", "tail": "religion"}
|
237 |
+
{"relation": "UsedFor", "head": "baseball bat", "tail": "hit baseball"}
|
238 |
+
{"relation": "HasPrerequisite", "head": "read letter", "tail": "open envelope"}
|
239 |
+
{"relation": "UsedFor", "head": "glass", "tail": "correct vision"}
|
240 |
+
{"relation": "UsedFor", "head": "woodwind", "tail": "make music"}
|
241 |
+
{"relation": "UsedFor", "head": "denim", "tail": "make jean"}
|
242 |
+
{"relation": "CapableOf", "head": "fire", "tail": "hurt person"}
|
243 |
+
{"relation": "NotDesires", "head": "person", "tail": "break leg"}
|
244 |
+
{"relation": "UsedFor", "head": "bell", "tail": "make noise"}
|
245 |
+
{"relation": "UsedFor", "head": "take bus", "tail": "travel"}
|
246 |
+
{"relation": "UsedFor", "head": "write", "tail": "communicate"}
|
247 |
+
{"relation": "UsedFor", "head": "double bass", "tail": "play music"}
|
248 |
+
{"relation": "HasPrerequisite", "head": "eat apple", "tail": "wash it"}
|
249 |
+
{"relation": "UsedFor", "head": "entrance", "tail": "enter build"}
|
250 |
+
{"relation": "IsA", "head": "girl", "tail": "female"}
|
251 |
+
{"relation": "IsA", "head": "pen", "tail": "write instrument"}
|
252 |
+
{"relation": "IsA", "head": "new mexico", "tail": "state"}
|
253 |
+
{"relation": "IsA", "head": "south dakota", "tail": "state"}
|
254 |
+
{"relation": "IsA", "head": "woman", "tail": "female"}
|
255 |
+
{"relation": "IsA", "head": "linen", "tail": "cloth"}
|
256 |
+
{"relation": "UsedFor", "head": "sheet of paper", "tail": "write on"}
|
257 |
+
{"relation": "UsedFor", "head": "sugar", "tail": "sweeten food"}
|
258 |
+
{"relation": "Causes", "head": "act in play", "tail": "applause"}
|
259 |
+
{"relation": "Causes", "head": "fall", "tail": "pain"}
|
260 |
+
{"relation": "HasPrerequisite", "head": "watch tv show", "tail": "turn on television"}
|
261 |
+
{"relation": "Causes", "head": "take final", "tail": "stress"}
|
262 |
+
{"relation": "CausesDesire", "head": "be hot", "tail": "go for swim"}
|
263 |
+
{"relation": "CapableOf", "head": "picture", "tail": "hang on wall"}
|
264 |
+
{"relation": "CausesDesire", "head": "test", "tail": "study for subject"}
|
265 |
+
{"relation": "UsedFor", "head": "electric fan", "tail": "cool"}
|
266 |
+
{"relation": "UsedFor", "head": "heart", "tail": "pump blood"}
|
267 |
+
{"relation": "UsedFor", "head": "have sex", "tail": "fun"}
|
268 |
+
{"relation": "UsedFor", "head": "queen", "tail": "rule country"}
|
269 |
+
{"relation": "CapableOf", "head": "person", "tail": "plant tree"}
|
270 |
+
{"relation": "UsedFor", "head": "musical instrument", "tail": "make music"}
|
271 |
+
{"relation": "UsedFor", "head": "article in magazine", "tail": "read"}
|
272 |
+
{"relation": "UsedFor", "head": "toothbrush head", "tail": "clean your tooth"}
|
273 |
+
{"relation": "UsedFor", "head": "coin slot", "tail": "put coin in"}
|
274 |
+
{"relation": "Causes", "head": "eat breakfast in bed", "tail": "crumb in bed"}
|
275 |
+
{"relation": "UsedFor", "head": "shallow water", "tail": "wade"}
|
276 |
+
{"relation": "UsedFor", "head": "closet", "tail": "store thing"}
|
277 |
+
{"relation": "HasSubevent", "head": "stay in bed", "tail": "sleep"}
|
278 |
+
{"relation": "UsedFor", "head": "cardboard", "tail": "make box"}
|
279 |
+
{"relation": "UsedFor", "head": "kite", "tail": "fly"}
|
280 |
+
{"relation": "UsedFor", "head": "bagpipe", "tail": "make music"}
|
281 |
+
{"relation": "CapableOf", "head": "person", "tail": "drown in water"}
|
282 |
+
{"relation": "UsedFor", "head": "lip", "tail": "speak"}
|
283 |
+
{"relation": "MotivatedByGoal", "head": "write letter", "tail": "communicate with someone"}
|
284 |
+
{"relation": "HasPrerequisite", "head": "light fire", "tail": "match"}
|
285 |
+
{"relation": "HasSubevent", "head": "catch mumps", "tail": "get sick"}
|
286 |
+
{"relation": "HasSubevent", "head": "start fire", "tail": "light match"}
|
287 |
+
{"relation": "UsedFor", "head": "temple", "tail": "worship"}
|
288 |
+
{"relation": "UsedFor", "head": "accordion", "tail": "make music"}
|
289 |
+
{"relation": "CapableOf", "head": "person", "tail": "milk cow"}
|
290 |
+
{"relation": "HasPrerequisite", "head": "drive to work", "tail": "start car"}
|
291 |
+
{"relation": "NotDesires", "head": "cat", "tail": "get wet"}
|
292 |
+
{"relation": "UsedFor", "head": "towel rack", "tail": "hang towel"}
|
293 |
+
{"relation": "HasPrerequisite", "head": "lose weight", "tail": "eat less"}
|
294 |
+
{"relation": "UsedFor", "head": "boat", "tail": "sail"}
|
295 |
+
{"relation": "UsedFor", "head": "wheat", "tail": "make flour"}
|
296 |
+
{"relation": "MotivatedByGoal", "head": "take midterm", "tail": "pass course"}
|
297 |
+
{"relation": "HasSubevent", "head": "create art", "tail": "paint"}
|
298 |
+
{"relation": "HasSubevent", "head": "attend classical concert", "tail": "listen to music"}
|
299 |
+
{"relation": "IsA", "head": "strawberry", "tail": "fruit"}
|
300 |
+
{"relation": "UsedFor", "head": "vegetable garden", "tail": "grow vegetable"}
|
301 |
+
{"relation": "Causes", "head": "obstruct justice", "tail": "injustice"}
|
302 |
+
{"relation": "IsA", "head": "rubber duck", "tail": "toy"}
|
303 |
+
{"relation": "IsA", "head": "screw", "tail": "simple machine"}
|
304 |
+
{"relation": "IsA", "head": "son", "tail": "parent male child"}
|
305 |
+
{"relation": "IsA", "head": "lion", "tail": "feline"}
|
306 |
+
{"relation": "AtLocation", "head": "school cafeteria", "tail": "school"}
|
307 |
+
{"relation": "AtLocation", "head": "fish", "tail": "pond"}
|
308 |
+
{"relation": "AtLocation", "head": "reception area", "tail": "hotel"}
|
309 |
+
{"relation": "AtLocation", "head": "screwdriver", "tail": "tool box"}
|
310 |
+
{"relation": "AtLocation", "head": "tissue holder", "tail": "bathroom"}
|
311 |
+
{"relation": "AtLocation", "head": "snake", "tail": "garden"}
|
312 |
+
{"relation": "AtLocation", "head": "t-shirt", "tail": "closet"}
|
313 |
+
{"relation": "AtLocation", "head": "ficus", "tail": "forest"}
|
314 |
+
{"relation": "AtLocation", "head": "bomb", "tail": "war"}
|
315 |
+
{"relation": "AtLocation", "head": "theater", "tail": "city"}
|
316 |
+
{"relation": "AtLocation", "head": "staple remover", "tail": "office"}
|
317 |
+
{"relation": "AtLocation", "head": "laser", "tail": "cd player"}
|
318 |
+
{"relation": "AtLocation", "head": "son", "tail": "family"}
|
319 |
+
{"relation": "AtLocation", "head": "mammoth", "tail": "ice age"}
|
320 |
+
{"relation": "AtLocation", "head": "sound control room", "tail": "record studio"}
|
321 |
+
{"relation": "AtLocation", "head": "government", "tail": "country"}
|
322 |
+
{"relation": "AtLocation", "head": "milk", "tail": "refrigerator"}
|
323 |
+
{"relation": "AtLocation", "head": "fire", "tail": "fireplace"}
|
324 |
+
{"relation": "AtLocation", "head": "human", "tail": "automobile"}
|
325 |
+
{"relation": "AtLocation", "head": "front yard", "tail": "front of house"}
|
326 |
+
{"relation": "AtLocation", "head": "store shelf", "tail": "store"}
|
327 |
+
{"relation": "AtLocation", "head": "potato", "tail": "market"}
|
328 |
+
{"relation": "AtLocation", "head": "bat", "tail": "belfry"}
|
329 |
+
{"relation": "AtLocation", "head": "marmoset", "tail": "rainforest"}
|
330 |
+
{"relation": "HasSubevent", "head": "eat", "tail": "swallow"}
|
331 |
+
{"relation": "AtLocation", "head": "clothe", "tail": "suitcase"}
|
332 |
+
{"relation": "IsA", "head": "tomato", "tail": "fruit"}
|
333 |
+
{"relation": "Desires", "head": "animal", "tail": "eat"}
|
334 |
+
{"relation": "PartOf", "head": "ram", "tail": "computer"}
|
335 |
+
{"relation": "AtLocation", "head": "teenager", "tail": "mall"}
|
336 |
+
{"relation": "UsedFor", "head": "hairbrush", "tail": "brush hair"}
|
337 |
+
{"relation": "PartOf", "head": "bark", "tail": "tree"}
|
338 |
+
{"relation": "AtLocation", "head": "build", "tail": "town"}
|
339 |
+
{"relation": "PartOf", "head": "electron", "tail": "atom"}
|
340 |
+
{"relation": "HasLastSubevent", "head": "live", "tail": "die"}
|
341 |
+
{"relation": "AtLocation", "head": "pen", "tail": "college"}
|
342 |
+
{"relation": "CapableOf", "head": "human", "tail": "make mistake"}
|
343 |
+
{"relation": "NotDesires", "head": "actor", "tail": "bad review"}
|
344 |
+
{"relation": "IsA", "head": "beagle", "tail": "dog"}
|
345 |
+
{"relation": "PartOf", "head": "father", "tail": "family"}
|
346 |
+
{"relation": "MadeOf", "head": "money", "tail": "paper"}
|
347 |
+
{"relation": "IsA", "head": "lily", "tail": "flower"}
|
348 |
+
{"relation": "IsA", "head": "celery", "tail": "vegetable"}
|
349 |
+
{"relation": "UsedFor", "head": "condom", "tail": "protection"}
|
350 |
+
{"relation": "MotivatedByGoal", "head": "play game", "tail": "have fun"}
|
351 |
+
{"relation": "HasSubevent", "head": "kiss", "tail": "close your eye"}
|
352 |
+
{"relation": "UsedFor", "head": "heater", "tail": "heat"}
|
353 |
+
{"relation": "AtLocation", "head": "bathtub", "tail": "bathroom"}
|
354 |
+
{"relation": "AtLocation", "head": "towel", "tail": "bathroom"}
|
355 |
+
{"relation": "PartOf", "head": "mattress", "tail": "bed"}
|
356 |
+
{"relation": "IsA", "head": "dress", "tail": "clothe"}
|
357 |
+
{"relation": "CapableOf", "head": "person", "tail": "sing"}
|
358 |
+
{"relation": "AtLocation", "head": "person", "tail": "earth"}
|
359 |
+
{"relation": "AtLocation", "head": "cloud", "tail": "in sky"}
|
360 |
+
{"relation": "MadeOf", "head": "table", "tail": "wood"}
|
361 |
+
{"relation": "CapableOf", "head": "bird", "tail": "fly"}
|
362 |
+
{"relation": "AtLocation", "head": "lamp", "tail": "desk"}
|
363 |
+
{"relation": "IsA", "head": "mango", "tail": "fruit"}
|
364 |
+
{"relation": "IsA", "head": "cinnamon", "tail": "spice"}
|
365 |
+
{"relation": "IsA", "head": "sew", "tail": "hobby"}
|
366 |
+
{"relation": "IsA", "head": "salt", "tail": "spice"}
|
367 |
+
{"relation": "IsA", "head": "insect", "tail": "animal"}
|
368 |
+
{"relation": "IsA", "head": "grass", "tail": "plant"}
|
369 |
+
{"relation": "IsA", "head": "elephant", "tail": "animal"}
|
370 |
+
{"relation": "IsA", "head": "spinach", "tail": "vegetable"}
|
371 |
+
{"relation": "MadeOf", "head": "cake", "tail": "flour"}
|
372 |
+
{"relation": "UsedFor", "head": "watch", "tail": "tell time"}
|
373 |
+
{"relation": "CapableOf", "head": "person", "tail": "run"}
|
374 |
+
{"relation": "IsA", "head": "iris", "tail": "flower"}
|
375 |
+
{"relation": "UsedFor", "head": "knife", "tail": "cut food"}
|
376 |
+
{"relation": "UsedFor", "head": "stove", "tail": "cook food"}
|
377 |
+
{"relation": "UsedFor", "head": "glass", "tail": "see"}
|
378 |
+
{"relation": "AtLocation", "head": "bed", "tail": "at home"}
|
379 |
+
{"relation": "IsA", "head": "bread", "tail": "food"}
|
380 |
+
{"relation": "AtLocation", "head": "doctor", "tail": "hospital"}
|
381 |
+
{"relation": "PartOf", "head": "leg", "tail": "body"}
|
382 |
+
{"relation": "HasProperty", "head": "summer", "tail": "hot"}
|
383 |
+
{"relation": "AtLocation", "head": "sofa", "tail": "live room"}
|
384 |
+
{"relation": "IsA", "head": "novel", "tail": "story"}
|
385 |
+
{"relation": "PartOf", "head": "cover", "tail": "book"}
|
386 |
+
{"relation": "IsA", "head": "owl", "tail": "bird"}
|
387 |
+
{"relation": "HasProperty", "head": "sun", "tail": "hot"}
|
388 |
+
{"relation": "IsA", "head": "lemon", "tail": "fruit"}
|
389 |
+
{"relation": "IsA", "head": "africa", "tail": "continent"}
|
390 |
+
{"relation": "IsA", "head": "ferret", "tail": "animal"}
|
391 |
+
{"relation": "IsA", "head": "shark", "tail": "fish"}
|
392 |
+
{"relation": "IsA", "head": "rodent", "tail": "mammal"}
|
393 |
+
{"relation": "IsA", "head": "horse", "tail": "mammal"}
|
394 |
+
{"relation": "IsA", "head": "penguin", "tail": "bird"}
|
395 |
+
{"relation": "IsA", "head": "rat", "tail": "mammal"}
|
396 |
+
{"relation": "IsA", "head": "tuna", "tail": "fish"}
|
397 |
+
{"relation": "IsA", "head": "flamingo", "tail": "bird"}
|
398 |
+
{"relation": "IsA", "head": "green", "tail": "colour"}
|
399 |
+
{"relation": "IsA", "head": "catfish", "tail": "fish"}
|
400 |
+
{"relation": "PartOf", "head": "sex", "tail": "reproductive cycle"}
|
401 |
+
{"relation": "PartOf", "head": "chapter", "tail": "book"}
|
402 |
+
{"relation": "IsA", "head": "man", "tail": "human"}
|
403 |
+
{"relation": "UsedFor", "head": "pet", "tail": "companionship"}
|
404 |
+
{"relation": "PartOf", "head": "proton", "tail": "atom"}
|
405 |
+
{"relation": "AtLocation", "head": "fan", "tail": "stadium"}
|
406 |
+
{"relation": "IsA", "head": "cheese", "tail": "dairy product"}
|
407 |
+
{"relation": "IsA", "head": "ping pong", "tail": "call table tennis"}
|
408 |
+
{"relation": "HasA", "head": "saw", "tail": "tooth"}
|
409 |
+
{"relation": "ReceivesAction", "head": "book", "tail": "write by author"}
|
410 |
+
{"relation": "IsA", "head": "war", "tail": "hell"}
|
411 |
+
{"relation": "Desires", "head": "dog", "tail": "gnaw on bone"}
|
412 |
+
{"relation": "HasProperty", "head": "some person", "tail": "superstitious"}
|
413 |
+
{"relation": "IsA", "head": "horse", "tail": "jump"}
|
414 |
+
{"relation": "HasProperty", "head": "some animal", "tail": "dangerous"}
|
415 |
+
{"relation": "IsA", "head": "bagel", "tail": "food"}
|
416 |
+
{"relation": "Desires", "head": "dog", "tail": "ride in car"}
|
417 |
+
{"relation": "HasA", "head": "horse", "tail": "4 leg"}
|
418 |
+
{"relation": "CapableOf", "head": "duck", "tail": "near water"}
|
419 |
+
{"relation": "HasProperty", "head": "rollercoasters", "tail": "scary"}
|
420 |
+
{"relation": "IsA", "head": "horse", "tail": "jump over fence"}
|
421 |
+
{"relation": "IsA", "head": "chemistry", "tail": "science"}
|
422 |
+
{"relation": "IsA", "head": "cappuccino", "tail": "drink"}
|
423 |
+
{"relation": "HasA", "head": "person", "tail": "sex in bed"}
|
424 |
+
{"relation": "IsA", "head": "ski", "tail": "activity"}
|
425 |
+
{"relation": "IsA", "head": "paris", "tail": "in france"}
|
426 |
+
{"relation": "AtLocation", "head": "food", "tail": "store"}
|
427 |
+
{"relation": "HasA", "head": "fruit", "tail": "vitamin"}
|
428 |
+
{"relation": "UsedFor", "head": "play sport", "tail": "excercise"}
|
429 |
+
{"relation": "IsA", "head": "ignorance", "tail": "bliss"}
|
430 |
+
{"relation": "Causes", "head": "sing", "tail": "happiness"}
|
431 |
+
{"relation": "HasProperty", "head": "urine", "tail": "yellow"}
|
432 |
+
{"relation": "HasProperty", "head": "ribbon", "tail": "yellow"}
|
433 |
+
{"relation": "IsA", "head": "book", "tail": "often"}
|
434 |
+
{"relation": "HasPrerequisite", "head": "go to play", "tail": "ticket"}
|
435 |
+
{"relation": "CapableOf", "head": "person", "tail": "learn from each other"}
|
436 |
+
{"relation": "HasPrerequisite", "head": "dance", "tail": "turn on music"}
|
437 |
+
{"relation": "HasSubevent", "head": "visit art gallery", "tail": "look at paint"}
|
438 |
+
{"relation": "UsedFor", "head": "jump out of window", "tail": "commit suicide"}
|
439 |
+
{"relation": "IsA", "head": "happiness", "tail": "emotion"}
|
440 |
+
{"relation": "HasA", "head": "coffee", "tail": "caffeine"}
|
441 |
+
{"relation": "HasA", "head": "ear", "tail": "wax"}
|
442 |
+
{"relation": "NotCapableOf", "head": "sound", "tail": "travel in space"}
|
443 |
+
{"relation": "HasProperty", "head": "some men", "tail": "gay"}
|
444 |
+
{"relation": "CapableOf", "head": "horse", "tail": "jump high"}
|
445 |
+
{"relation": "CapableOf", "head": "dog", "tail": "smell drug"}
|
446 |
+
{"relation": "HasSubevent", "head": "play hockey", "tail": "score goal"}
|
447 |
+
{"relation": "CapableOf", "head": "male", "tail": "father child"}
|
448 |
+
{"relation": "CapableOf", "head": "teacher", "tail": "fail student"}
|
449 |
+
{"relation": "IsA", "head": "ice", "tail": "solid"}
|
450 |
+
{"relation": "NotDesires", "head": "person", "tail": "lose his friend"}
|
451 |
+
{"relation": "AtLocation", "head": "drunk", "tail": "bar"}
|
452 |
+
{"relation": "HasPrerequisite", "head": "drive car", "tail": "get license"}
|
453 |
+
{"relation": "HasSubevent", "head": "meet friend", "tail": "have sex"}
|
454 |
+
{"relation": "Causes", "head": "take examination", "tail": "pass class"}
|
455 |
+
{"relation": "Causes", "head": "buy beer", "tail": "get drunk"}
|
456 |
+
{"relation": "IsA", "head": "germany", "tail": "in europe"}
|
457 |
+
{"relation": "HasA", "head": "book", "tail": "word"}
|
458 |
+
{"relation": "HasPrerequisite", "head": "spend money", "tail": "have money"}
|
459 |
+
{"relation": "HasPrerequisite", "head": "take final", "tail": "attend class"}
|
460 |
+
{"relation": "CapableOf", "head": "painter", "tail": "coat wall"}
|
461 |
+
{"relation": "CapableOf", "head": "blanket", "tail": "cover bed"}
|
462 |
+
{"relation": "HasA", "head": "toothbrush", "tail": "bristle"}
|
463 |
+
{"relation": "CapableOf", "head": "cheese", "tail": "age well"}
|
464 |
+
{"relation": "HasSubevent", "head": "pass course", "tail": "study"}
|
465 |
+
{"relation": "IsA", "head": "spaniel", "tail": "dog"}
|
466 |
+
{"relation": "Desires", "head": "dog", "tail": "catch frisbee"}
|
467 |
+
{"relation": "HasProperty", "head": "dinner party", "tail": "fun"}
|
468 |
+
{"relation": "CapableOf", "head": "person", "tail": "iron shirt"}
|
469 |
+
{"relation": "HasPrerequisite", "head": "have fun", "tail": "play game"}
|
470 |
+
{"relation": "CapableOf", "head": "car", "tail": "roll over"}
|
471 |
+
{"relation": "CapableOf", "head": "hammer", "tail": "break glass"}
|
472 |
+
{"relation": "IsA", "head": "michigan", "tail": "state"}
|
473 |
+
{"relation": "HasPrerequisite", "head": "stop your car", "tail": "use brake"}
|
474 |
+
{"relation": "HasProperty", "head": "build", "tail": "man make"}
|
475 |
+
{"relation": "CapableOf", "head": "gardener", "tail": "water flower"}
|
476 |
+
{"relation": "IsA", "head": "dog", "tail": "good friend"}
|
477 |
+
{"relation": "AtLocation", "head": "puzzle", "tail": "newspaper"}
|
478 |
+
{"relation": "HasSubevent", "head": "eat apple", "tail": "chew"}
|
479 |
+
{"relation": "HasPrerequisite", "head": "bring home some fish", "tail": "go to fish market"}
|
480 |
+
{"relation": "NotMadeOf", "head": "moon", "tail": "green cheese"}
|
481 |
+
{"relation": "IsA", "head": "play", "tail": "form of entertainment"}
|
482 |
+
{"relation": "AtLocation", "head": "24 hour", "tail": "day"}
|
483 |
+
{"relation": "AtLocation", "head": "60 second", "tail": "minute"}
|
484 |
+
{"relation": "IsA", "head": "mother", "tail": "woman"}
|
485 |
+
{"relation": "AtLocation", "head": "shampoo", "tail": "shower"}
|
486 |
+
{"relation": "CapableOf", "head": "employer", "tail": "pay employee"}
|
487 |
+
{"relation": "IsA", "head": "baby", "tail": "very young child"}
|
488 |
+
{"relation": "IsA", "head": "wine", "tail": "alcoholic beverage"}
|
489 |
+
{"relation": "IsA", "head": "write", "tail": "form of communication"}
|
490 |
+
{"relation": "HasPrerequisite", "head": "pass your university exam", "tail": "just study"}
|
491 |
+
{"relation": "Desires", "head": "person", "tail": "solve problem"}
|
492 |
+
{"relation": "UsedFor", "head": "calculator", "tail": "add number"}
|
493 |
+
{"relation": "IsA", "head": "hibiscus", "tail": "flower"}
|
494 |
+
{"relation": "HasPrerequisite", "head": "hear news", "tail": "turn on radio"}
|
495 |
+
{"relation": "CapableOf", "head": "dog", "tail": "sense danger"}
|
496 |
+
{"relation": "HasPrerequisite", "head": "read", "tail": "open book"}
|
497 |
+
{"relation": "HasPrerequisite", "head": "change society", "tail": "change yourself"}
|
498 |
+
{"relation": "MotivatedByGoal", "head": "climb", "tail": "reach top"}
|
499 |
+
{"relation": "CapableOf", "head": "judge", "tail": "right wrong"}
|
500 |
+
{"relation": "CapableOf", "head": "tree", "tail": "shade lawn"}
|
501 |
+
{"relation": "Causes", "head": "hear music", "tail": "dance"}
|
502 |
+
{"relation": "HasProperty", "head": "person", "tail": "weird"}
|
503 |
+
{"relation": "HasPrerequisite", "head": "take bus", "tail": "find bus stop"}
|
504 |
+
{"relation": "Causes", "head": "take exam", "tail": "get grade"}
|
505 |
+
{"relation": "AtLocation", "head": "many different culture", "tail": "world"}
|
506 |
+
{"relation": "HasPrerequisite", "head": "attend classical concert", "tail": "ticket"}
|
507 |
+
{"relation": "Causes", "head": "go to sleep", "tail": "dream"}
|
508 |
+
{"relation": "UsedFor", "head": "trombone", "tail": "play music"}
|
509 |
+
{"relation": "Causes", "head": "go to party", "tail": "meet new person"}
|
510 |
+
{"relation": "HasSubevent", "head": "leave line", "tail": "you lose your place"}
|
511 |
+
{"relation": "Causes", "head": "go to performance", "tail": "enjoyment"}
|
512 |
+
{"relation": "UsedFor", "head": "air conditioner", "tail": "cool room"}
|
513 |
+
{"relation": "HasPrerequisite", "head": "examine thing", "tail": "pick it up"}
|
514 |
+
{"relation": "HasPrerequisite", "head": "have shower", "tail": "take off your clothe"}
|
515 |
+
{"relation": "HasProperty", "head": "sky", "tail": "blue during day"}
|
516 |
+
{"relation": "ReceivesAction", "head": "movie", "tail": "record on film"}
|
517 |
+
{"relation": "CapableOf", "head": "student", "tail": "note fact"}
|
518 |
+
{"relation": "HasPrerequisite", "head": "bake cake", "tail": "preheat oven"}
|
519 |
+
{"relation": "UsedFor", "head": "glue", "tail": "stick thing together"}
|
520 |
+
{"relation": "AtLocation", "head": "hairbrush", "tail": "bathroom"}
|
521 |
+
{"relation": "AtLocation", "head": "mickey mouse", "tail": "disneyland"}
|
522 |
+
{"relation": "CapableOf", "head": "gasoline", "tail": "power car"}
|
523 |
+
{"relation": "AtLocation", "head": "apple tree", "tail": "field"}
|
524 |
+
{"relation": "AtLocation", "head": "dog", "tail": "doghouse"}
|
525 |
+
{"relation": "HasA", "head": "human", "tail": "opposable thumb"}
|
526 |
+
{"relation": "UsedFor", "head": "rifle", "tail": "shoot"}
|
527 |
+
{"relation": "HasSubevent", "head": "have lunch", "tail": "drink"}
|
528 |
+
{"relation": "HasPrerequisite", "head": "discover truth", "tail": "ask question"}
|
529 |
+
{"relation": "HasProperty", "head": "some plant", "tail": "edible"}
|
530 |
+
{"relation": "HasPrerequisite", "head": "have haircut", "tail": "go to hairdresser"}
|
531 |
+
{"relation": "HasPrerequisite", "head": "get job", "tail": "apply for job"}
|
532 |
+
{"relation": "AtLocation", "head": "park lot", "tail": "shop mall"}
|
533 |
+
{"relation": "AtLocation", "head": "mouse", "tail": "trap"}
|
534 |
+
{"relation": "AtLocation", "head": "barbie", "tail": "toy store"}
|
535 |
+
{"relation": "AtLocation", "head": "cheese", "tail": "refrigerator"}
|
536 |
+
{"relation": "NotCapableOf", "head": "cat", "tail": "talk"}
|
537 |
+
{"relation": "Causes", "head": "play game", "tail": "happiness"}
|
538 |
+
{"relation": "CapableOf", "head": "farmer", "tail": "farm corn"}
|
539 |
+
{"relation": "AtLocation", "head": "bird", "tail": "nest"}
|
540 |
+
{"relation": "HasPrerequisite", "head": "compete", "tail": "train"}
|
541 |
+
{"relation": "AtLocation", "head": "cubicle", "tail": "office"}
|
542 |
+
{"relation": "HasPrerequisite", "head": "stay in bed", "tail": "turn off alarm clock"}
|
543 |
+
{"relation": "HasSubevent", "head": "stay in bed", "tail": "sleep in"}
|
544 |
+
{"relation": "AtLocation", "head": "egg", "tail": "nest"}
|
545 |
+
{"relation": "HasPrerequisite", "head": "watch film", "tail": "go to movie"}
|
546 |
+
{"relation": "HasLastSubevent", "head": "watch tv", "tail": "turn tv off"}
|
547 |
+
{"relation": "IsA", "head": "dove", "tail": "bird"}
|
548 |
+
{"relation": "HasPrerequisite", "head": "see your favorite show", "tail": "turn on television"}
|
549 |
+
{"relation": "Causes", "head": "socialise", "tail": "make friend"}
|
550 |
+
{"relation": "Causes", "head": "have rest", "tail": "sleep"}
|
551 |
+
{"relation": "AtLocation", "head": "speaker", "tail": "drive-in movie"}
|
552 |
+
{"relation": "NotCapableOf", "head": "oil and water", "tail": "mix"}
|
553 |
+
{"relation": "HasA", "head": "cow", "tail": "four stomach"}
|
554 |
+
{"relation": "CapableOf", "head": "person", "tail": "reply to e-mail"}
|
555 |
+
{"relation": "AtLocation", "head": "post-it note", "tail": "your desk"}
|
556 |
+
{"relation": "HasSubevent", "head": "relax", "tail": "read"}
|
557 |
+
{"relation": "ReceivesAction", "head": "paper", "tail": "recycle"}
|
558 |
+
{"relation": "HasPrerequisite", "head": "have shower", "tail": "turn on water"}
|
559 |
+
{"relation": "HasPrerequisite", "head": "buy food", "tail": "go to grocery store"}
|
560 |
+
{"relation": "HasPrerequisite", "head": "prove your physical endurance", "tail": "run marathon"}
|
561 |
+
{"relation": "AtLocation", "head": "land", "tail": "country"}
|
562 |
+
{"relation": "AtLocation", "head": "zebra", "tail": "zoo"}
|
563 |
+
{"relation": "HasPrerequisite", "head": "ride bike", "tail": "sit on bike"}
|
564 |
+
{"relation": "CapableOf", "head": "airplane", "tail": "arrive at airport"}
|
565 |
+
{"relation": "UsedFor", "head": "chess set", "tail": "play game of chess"}
|
566 |
+
{"relation": "CapableOf", "head": "sex", "tail": "be make love"}
|
567 |
+
{"relation": "HasPrerequisite", "head": "view video", "tail": "have vcr"}
|
568 |
+
{"relation": "AtLocation", "head": "stream", "tail": "forest"}
|
569 |
+
{"relation": "CausesDesire", "head": "need money", "tail": "go to work"}
|
570 |
+
{"relation": "AtLocation", "head": "basement", "tail": "closet"}
|
571 |
+
{"relation": "UsedFor", "head": "eye", "tail": "look"}
|
572 |
+
{"relation": "UsedFor", "head": "park zone", "tail": "park your car"}
|
573 |
+
{"relation": "Causes", "head": "compute sum", "tail": "get answer"}
|
574 |
+
{"relation": "HasPrerequisite", "head": "ride horse", "tail": "get saddle"}
|
575 |
+
{"relation": "AtLocation", "head": "shelf", "tail": "closet"}
|
576 |
+
{"relation": "AtLocation", "head": "floor", "tail": "your bed"}
|
577 |
+
{"relation": "AtLocation", "head": "paint", "tail": "art show"}
|
578 |
+
{"relation": "AtLocation", "head": "researcher", "tail": "laboratory"}
|
579 |
+
{"relation": "AtLocation", "head": "shark", "tail": "pacific ocean"}
|
580 |
+
{"relation": "UsedFor", "head": "bell", "tail": "ring"}
|
581 |
+
{"relation": "HasA", "head": "cat", "tail": "sharp claw"}
|
582 |
+
{"relation": "HasPrerequisite", "head": "do housework", "tail": "vacuum"}
|
583 |
+
{"relation": "HasA", "head": "apple", "tail": "core"}
|
584 |
+
{"relation": "HasProperty", "head": "globe", "tail": "round"}
|
585 |
+
{"relation": "AtLocation", "head": "beauty", "tail": "eye of beholder"}
|
586 |
+
{"relation": "HasA", "head": "fish", "tail": "gill"}
|
587 |
+
{"relation": "IsA", "head": "maine", "tail": "state"}
|
588 |
+
{"relation": "UsedFor", "head": "scale", "tail": "weigh object"}
|
589 |
+
{"relation": "HasA", "head": "car", "tail": "window"}
|
590 |
+
{"relation": "UsedFor", "head": "candle", "tail": "light room"}
|
591 |
+
{"relation": "AtLocation", "head": "spider web", "tail": "corner"}
|
592 |
+
{"relation": "AtLocation", "head": "ring", "tail": "your finger"}
|
593 |
+
{"relation": "IsA", "head": "desert", "tail": "terrain"}
|
594 |
+
{"relation": "AtLocation", "head": "bathroom", "tail": "rest area"}
|
595 |
+
{"relation": "IsA", "head": "seven", "tail": "number"}
|
596 |
+
{"relation": "HasA", "head": "person", "tail": "five finger on each hand"}
|
597 |
+
{"relation": "IsA", "head": "coffee", "tail": "stimulant"}
|
598 |
+
{"relation": "HasProperty", "head": "planet", "tail": "round"}
|
599 |
+
{"relation": "ReceivesAction", "head": "butter", "tail": "make from milk"}
|
600 |
+
{"relation": "HasPrerequisite", "head": "read book", "tail": "go to library"}
|
dataset/valid.jsonl
ADDED
@@ -0,0 +1,600 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"relation": "NotCapableOf", "head": "god", "tail": "exist"}
|
2 |
+
{"relation": "HasSubevent", "head": "wake up in morning", "tail": "yawn"}
|
3 |
+
{"relation": "ReceivesAction", "head": "island", "tail": "surround by water"}
|
4 |
+
{"relation": "AtLocation", "head": "heat element", "tail": "oven"}
|
5 |
+
{"relation": "CapableOf", "head": "doctor", "tail": "help patient"}
|
6 |
+
{"relation": "Causes", "head": "play game", "tail": "win"}
|
7 |
+
{"relation": "Causes", "head": "watch even news", "tail": "learn about current event"}
|
8 |
+
{"relation": "HasSubevent", "head": "go fish", "tail": "catch fish"}
|
9 |
+
{"relation": "UsedFor", "head": "envelope", "tail": "mail letter"}
|
10 |
+
{"relation": "UsedFor", "head": "fan", "tail": "cool off"}
|
11 |
+
{"relation": "UsedFor", "head": "picnic basket", "tail": "carry food"}
|
12 |
+
{"relation": "HasPrerequisite", "head": "answer question", "tail": "know answer"}
|
13 |
+
{"relation": "CausesDesire", "head": "happiness", "tail": "sing"}
|
14 |
+
{"relation": "CausesDesire", "head": "have long hair", "tail": "have haircut"}
|
15 |
+
{"relation": "HasPrerequisite", "head": "punch someone", "tail": "make fist"}
|
16 |
+
{"relation": "CapableOf", "head": "student", "tail": "ask question"}
|
17 |
+
{"relation": "HasPrerequisite", "head": "ride bike", "tail": "pedal"}
|
18 |
+
{"relation": "IsA", "head": "america", "tail": "country"}
|
19 |
+
{"relation": "IsA", "head": "gorilla", "tail": "ape"}
|
20 |
+
{"relation": "HasA", "head": "turtle", "tail": "shell"}
|
21 |
+
{"relation": "UsedFor", "head": "instrument triangle", "tail": "make music"}
|
22 |
+
{"relation": "AtLocation", "head": "someone", "tail": "pool"}
|
23 |
+
{"relation": "HasPrerequisite", "head": "see movie", "tail": "go to cinema"}
|
24 |
+
{"relation": "CapableOf", "head": "knight", "tail": "ride horse"}
|
25 |
+
{"relation": "UsedFor", "head": "finger", "tail": "type"}
|
26 |
+
{"relation": "HasPrerequisite", "head": "go to get haircut", "tail": "go to hairdresser"}
|
27 |
+
{"relation": "HasA", "head": "human", "tail": "sex"}
|
28 |
+
{"relation": "AtLocation", "head": "carpet", "tail": "room"}
|
29 |
+
{"relation": "HasSubevent", "head": "take bus", "tail": "sit down"}
|
30 |
+
{"relation": "AtLocation", "head": "convict", "tail": "jail"}
|
31 |
+
{"relation": "AtLocation", "head": "hair", "tail": "drain"}
|
32 |
+
{"relation": "AtLocation", "head": "mouse", "tail": "hole in wall"}
|
33 |
+
{"relation": "IsA", "head": "pike", "tail": "fish"}
|
34 |
+
{"relation": "IsA", "head": "kayak", "tail": "boat"}
|
35 |
+
{"relation": "UsedFor", "head": "ax", "tail": "chop wood"}
|
36 |
+
{"relation": "IsA", "head": "horse", "tail": "social animal"}
|
37 |
+
{"relation": "HasProperty", "head": "smoke", "tail": "bad"}
|
38 |
+
{"relation": "HasProperty", "head": "rock", "tail": "hard"}
|
39 |
+
{"relation": "CapableOf", "head": "sun", "tail": "burn your skin"}
|
40 |
+
{"relation": "CapableOf", "head": "person", "tail": "climb mountain"}
|
41 |
+
{"relation": "UsedFor", "head": "cruise ship", "tail": "vacation"}
|
42 |
+
{"relation": "HasSubevent", "head": "soak in hotspring", "tail": "relax"}
|
43 |
+
{"relation": "DefinedAs", "head": "war", "tail": "opposite of peace"}
|
44 |
+
{"relation": "UsedFor", "head": "tool", "tail": "build thing"}
|
45 |
+
{"relation": "CapableOf", "head": "sailor", "tail": "tie knot"}
|
46 |
+
{"relation": "Causes", "head": "study", "tail": "learn"}
|
47 |
+
{"relation": "UsedFor", "head": "family room", "tail": "watch tv"}
|
48 |
+
{"relation": "MotivatedByGoal", "head": "sell your new book", "tail": "money"}
|
49 |
+
{"relation": "PartOf", "head": "word", "tail": "sentence"}
|
50 |
+
{"relation": "HasProperty", "head": "axe", "tail": "sharp"}
|
51 |
+
{"relation": "HasLastSubevent", "head": "bathe", "tail": "dry off"}
|
52 |
+
{"relation": "UsedFor", "head": "locker room", "tail": "change clothe"}
|
53 |
+
{"relation": "CapableOf", "head": "prisoner", "tail": "from jail"}
|
54 |
+
{"relation": "PartOf", "head": "eye", "tail": "head"}
|
55 |
+
{"relation": "UsedFor", "head": "subway pass", "tail": "ride subway"}
|
56 |
+
{"relation": "Causes", "head": "work", "tail": "stress"}
|
57 |
+
{"relation": "HasProperty", "head": "ink", "tail": "black"}
|
58 |
+
{"relation": "CapableOf", "head": "sailor", "tail": "row boat"}
|
59 |
+
{"relation": "IsA", "head": "puppy", "tail": "immature dog"}
|
60 |
+
{"relation": "HasPrerequisite", "head": "have checkup", "tail": "make appointment with doctor"}
|
61 |
+
{"relation": "HasPrerequisite", "head": "talk with someone far away", "tail": "use telephone"}
|
62 |
+
{"relation": "UsedFor", "head": "round trip ticket", "tail": "travel"}
|
63 |
+
{"relation": "UsedFor", "head": "love seat", "tail": "sit on"}
|
64 |
+
{"relation": "HasPrerequisite", "head": "go for run", "tail": "put on run shoe"}
|
65 |
+
{"relation": "HasProperty", "head": "butter", "tail": "yellow"}
|
66 |
+
{"relation": "Causes", "head": "run marathon", "tail": "exhaustion"}
|
67 |
+
{"relation": "IsA", "head": "eye", "tail": "complex organ"}
|
68 |
+
{"relation": "UsedFor", "head": "restaurant table", "tail": "eat at"}
|
69 |
+
{"relation": "IsA", "head": "human", "tail": "biped"}
|
70 |
+
{"relation": "CapableOf", "head": "post office", "tail": "forward mail"}
|
71 |
+
{"relation": "UsedFor", "head": "talk to someone", "tail": "communication"}
|
72 |
+
{"relation": "IsA", "head": "jog", "tail": "exercise"}
|
73 |
+
{"relation": "IsA", "head": "woodwind", "tail": "musical instrument"}
|
74 |
+
{"relation": "UsedFor", "head": "nylon", "tail": "make clothe"}
|
75 |
+
{"relation": "UsedFor", "head": "textile", "tail": "make clothe"}
|
76 |
+
{"relation": "HasPrerequisite", "head": "hear testimony", "tail": "go to court"}
|
77 |
+
{"relation": "HasProperty", "head": "glass", "tail": "clear"}
|
78 |
+
{"relation": "HasSubevent", "head": "go off strike", "tail": "return to work"}
|
79 |
+
{"relation": "MadeOf", "head": "stick", "tail": "wood"}
|
80 |
+
{"relation": "UsedFor", "head": "fabric", "tail": "make clothe"}
|
81 |
+
{"relation": "HasSubevent", "head": "play chess", "tail": "win"}
|
82 |
+
{"relation": "UsedFor", "head": "haircutting scissor", "tail": "cut hair"}
|
83 |
+
{"relation": "UsedFor", "head": "typewriter", "tail": "write letter"}
|
84 |
+
{"relation": "HasSubevent", "head": "use television", "tail": "change channel"}
|
85 |
+
{"relation": "HasProperty", "head": "water", "tail": "blue"}
|
86 |
+
{"relation": "CapableOf", "head": "person", "tail": "buy car"}
|
87 |
+
{"relation": "IsA", "head": "rat", "tail": "rodent"}
|
88 |
+
{"relation": "HasProperty", "head": "house", "tail": "expensive"}
|
89 |
+
{"relation": "MotivatedByGoal", "head": "go to zoo", "tail": "see animal"}
|
90 |
+
{"relation": "HasSubevent", "head": "maintain muscle strength", "tail": "exercise"}
|
91 |
+
{"relation": "HasSubevent", "head": "go to restaurant", "tail": "eat food"}
|
92 |
+
{"relation": "CapableOf", "head": "earthquake", "tail": "shake grind"}
|
93 |
+
{"relation": "UsedFor", "head": "mast", "tail": "hold sail"}
|
94 |
+
{"relation": "IsA", "head": "saxaphone", "tail": "musical instrument"}
|
95 |
+
{"relation": "IsA", "head": "short distance between two point", "tail": "straight line"}
|
96 |
+
{"relation": "AtLocation", "head": "sheet", "tail": "linen closet"}
|
97 |
+
{"relation": "AtLocation", "head": "mouse", "tail": "cupboard"}
|
98 |
+
{"relation": "AtLocation", "head": "earth", "tail": "solar system"}
|
99 |
+
{"relation": "AtLocation", "head": "kettle", "tail": "kitchen"}
|
100 |
+
{"relation": "AtLocation", "head": "hair gel", "tail": "bathroom"}
|
101 |
+
{"relation": "AtLocation", "head": "dental chair", "tail": "dentist office"}
|
102 |
+
{"relation": "AtLocation", "head": "wait room", "tail": "hospital"}
|
103 |
+
{"relation": "AtLocation", "head": "planet", "tail": "orbit"}
|
104 |
+
{"relation": "AtLocation", "head": "bathroom", "tail": "house"}
|
105 |
+
{"relation": "AtLocation", "head": "garden", "tail": "back yard"}
|
106 |
+
{"relation": "AtLocation", "head": "snake", "tail": "bible"}
|
107 |
+
{"relation": "AtLocation", "head": "large food store", "tail": "city"}
|
108 |
+
{"relation": "AtLocation", "head": "white house", "tail": "washington d.c"}
|
109 |
+
{"relation": "CreatedBy", "head": "program", "tail": "programmer"}
|
110 |
+
{"relation": "IsA", "head": "chess", "tail": "board game"}
|
111 |
+
{"relation": "IsA", "head": "puppy", "tail": "dog"}
|
112 |
+
{"relation": "UsedFor", "head": "apple", "tail": "eat"}
|
113 |
+
{"relation": "IsA", "head": "viola", "tail": "musical instrument"}
|
114 |
+
{"relation": "AtLocation", "head": "person", "tail": "build"}
|
115 |
+
{"relation": "CausesDesire", "head": "hunger", "tail": "eat"}
|
116 |
+
{"relation": "IsA", "head": "tiger", "tail": "cat"}
|
117 |
+
{"relation": "CapableOf", "head": "student", "tail": "read book"}
|
118 |
+
{"relation": "IsA", "head": "jazz", "tail": "music"}
|
119 |
+
{"relation": "DefinedAs", "head": "earth", "tail": "world"}
|
120 |
+
{"relation": "IsA", "head": "pepper", "tail": "spice"}
|
121 |
+
{"relation": "MadeOf", "head": "boot", "tail": "leather"}
|
122 |
+
{"relation": "IsA", "head": "flute", "tail": "instrument"}
|
123 |
+
{"relation": "AtLocation", "head": "table", "tail": "dine room"}
|
124 |
+
{"relation": "SymbolOf", "head": "dove", "tail": "peace"}
|
125 |
+
{"relation": "HasProperty", "head": "fire", "tail": "hot"}
|
126 |
+
{"relation": "HasProperty", "head": "earth", "tail": "round"}
|
127 |
+
{"relation": "MadeOf", "head": "cup", "tail": "glass"}
|
128 |
+
{"relation": "IsA", "head": "yellow", "tail": "color"}
|
129 |
+
{"relation": "IsA", "head": "flower", "tail": "plant"}
|
130 |
+
{"relation": "PartOf", "head": "eye", "tail": "face"}
|
131 |
+
{"relation": "CapableOf", "head": "water", "tail": "flow"}
|
132 |
+
{"relation": "HasProperty", "head": "sun", "tail": "bright"}
|
133 |
+
{"relation": "IsA", "head": "buddhism", "tail": "religion"}
|
134 |
+
{"relation": "IsA", "head": "swan", "tail": "bird"}
|
135 |
+
{"relation": "IsA", "head": "lisp", "tail": "program language"}
|
136 |
+
{"relation": "IsA", "head": "bear", "tail": "mammal"}
|
137 |
+
{"relation": "IsA", "head": "horse", "tail": "animal"}
|
138 |
+
{"relation": "IsA", "head": "japan", "tail": "country"}
|
139 |
+
{"relation": "IsA", "head": "aid", "tail": "disease"}
|
140 |
+
{"relation": "IsA", "head": "cancer", "tail": "disease"}
|
141 |
+
{"relation": "IsA", "head": "blue", "tail": "colour"}
|
142 |
+
{"relation": "IsA", "head": "falcon", "tail": "bird"}
|
143 |
+
{"relation": "AtLocation", "head": "booger", "tail": "your nose"}
|
144 |
+
{"relation": "Causes", "head": "rain", "tail": "flood"}
|
145 |
+
{"relation": "HasSubevent", "head": "be sad", "tail": "cry"}
|
146 |
+
{"relation": "MotivatedByGoal", "head": "cry", "tail": "you be sad"}
|
147 |
+
{"relation": "ReceivesAction", "head": "clothe", "tail": "hang on hanger"}
|
148 |
+
{"relation": "Desires", "head": "dog", "tail": "play with frisbee"}
|
149 |
+
{"relation": "HasProperty", "head": "roller coaster", "tail": "fun"}
|
150 |
+
{"relation": "UsedFor", "head": "stopwatch", "tail": "time thing"}
|
151 |
+
{"relation": "HasA", "head": "forest", "tail": "tree"}
|
152 |
+
{"relation": "HasProperty", "head": "metal", "tail": "shiny"}
|
153 |
+
{"relation": "AtLocation", "head": "college", "tail": "town"}
|
154 |
+
{"relation": "IsA", "head": "this", "tail": "see"}
|
155 |
+
{"relation": "IsA", "head": "man", "tail": "write in book"}
|
156 |
+
{"relation": "ReceivesAction", "head": "boot", "tail": "make for walk"}
|
157 |
+
{"relation": "IsA", "head": "island", "tail": "land mass"}
|
158 |
+
{"relation": "HasProperty", "head": "walk on beach", "tail": "relax"}
|
159 |
+
{"relation": "HasProperty", "head": "man", "tail": "sing"}
|
160 |
+
{"relation": "HasPrerequisite", "head": "sate your hunger", "tail": "eat something"}
|
161 |
+
{"relation": "HasProperty", "head": "marijuana", "tail": "legal"}
|
162 |
+
{"relation": "ReceivesAction", "head": "basketball", "tail": "fill with air"}
|
163 |
+
{"relation": "HasProperty", "head": "sphere", "tail": "round"}
|
164 |
+
{"relation": "IsA", "head": "niece", "tail": "girl"}
|
165 |
+
{"relation": "ReceivesAction", "head": "glass", "tail": "break"}
|
166 |
+
{"relation": "HasA", "head": "person", "tail": "two ear"}
|
167 |
+
{"relation": "AtLocation", "head": "paperclip", "tail": "desk"}
|
168 |
+
{"relation": "HasA", "head": "library", "tail": "many book"}
|
169 |
+
{"relation": "AtLocation", "head": "plant", "tail": "windowsill"}
|
170 |
+
{"relation": "HasPrerequisite", "head": "get some money from someone", "tail": "ask them"}
|
171 |
+
{"relation": "HasProperty", "head": "some person", "tail": "stupid"}
|
172 |
+
{"relation": "ReceivesAction", "head": "tire", "tail": "fill with air"}
|
173 |
+
{"relation": "CapableOf", "head": "hammer", "tail": "strike nail"}
|
174 |
+
{"relation": "IsA", "head": "texas", "tail": "state"}
|
175 |
+
{"relation": "CapableOf", "head": "live be", "tail": "die"}
|
176 |
+
{"relation": "CapableOf", "head": "baby", "tail": "wet diaper"}
|
177 |
+
{"relation": "IsA", "head": "pistol", "tail": "weapon"}
|
178 |
+
{"relation": "HasA", "head": "car", "tail": "radio"}
|
179 |
+
{"relation": "HasPrerequisite", "head": "sleep", "tail": "go to bed"}
|
180 |
+
{"relation": "HasSubevent", "head": "get drunk", "tail": "you fall down"}
|
181 |
+
{"relation": "AtLocation", "head": "someone", "tail": "train station"}
|
182 |
+
{"relation": "CapableOf", "head": "bad thing", "tail": "happen to good person"}
|
183 |
+
{"relation": "CapableOf", "head": "host", "tail": "welcome his guest"}
|
184 |
+
{"relation": "HasProperty", "head": "baseball", "tail": "round"}
|
185 |
+
{"relation": "UsedFor", "head": "calculator", "tail": "do math"}
|
186 |
+
{"relation": "AtLocation", "head": "seat belt", "tail": "backseat of car"}
|
187 |
+
{"relation": "IsA", "head": "math", "tail": "subject"}
|
188 |
+
{"relation": "CapableOf", "head": "teacher", "tail": "plan lesson"}
|
189 |
+
{"relation": "HasSubevent", "head": "see exhibit", "tail": "learn"}
|
190 |
+
{"relation": "ReceivesAction", "head": "fruit", "tail": "eat"}
|
191 |
+
{"relation": "Desires", "head": "child", "tail": "play game"}
|
192 |
+
{"relation": "HasProperty", "head": "horseback ride", "tail": "fun"}
|
193 |
+
{"relation": "AtLocation", "head": "ear", "tail": "head"}
|
194 |
+
{"relation": "AtLocation", "head": "finger", "tail": "hand"}
|
195 |
+
{"relation": "HasPrerequisite", "head": "clean clothe", "tail": "wash them"}
|
196 |
+
{"relation": "HasPrerequisite", "head": "enjoy film", "tail": "go to cinema"}
|
197 |
+
{"relation": "NotIsA", "head": "win", "tail": "everything"}
|
198 |
+
{"relation": "HasPrerequisite", "head": "buy shirt", "tail": "money"}
|
199 |
+
{"relation": "CapableOf", "head": "word", "tail": "mean thing"}
|
200 |
+
{"relation": "HasA", "head": "house", "tail": "roof"}
|
201 |
+
{"relation": "CapableOf", "head": "lion", "tail": "hunt zebra"}
|
202 |
+
{"relation": "IsA", "head": "mercury", "tail": "planet"}
|
203 |
+
{"relation": "UsedFor", "head": "entryway", "tail": "enter"}
|
204 |
+
{"relation": "HasA", "head": "parent", "tail": "child"}
|
205 |
+
{"relation": "IsA", "head": "milk", "tail": "liquid"}
|
206 |
+
{"relation": "CapableOf", "head": "teacher", "tail": "answer question"}
|
207 |
+
{"relation": "IsA", "head": "screwdriver", "tail": "drink"}
|
208 |
+
{"relation": "HasPrerequisite", "head": "get pay", "tail": "work for someone"}
|
209 |
+
{"relation": "Desires", "head": "person", "tail": "headache"}
|
210 |
+
{"relation": "IsA", "head": "orange", "tail": "citrus fruit"}
|
211 |
+
{"relation": "Causes", "head": "get wet", "tail": "get cold"}
|
212 |
+
{"relation": "HasPrerequisite", "head": "stop be marry to someone", "tail": "get divorce"}
|
213 |
+
{"relation": "CausesDesire", "head": "too long hair", "tail": "have haircut"}
|
214 |
+
{"relation": "CapableOf", "head": "prisoner", "tail": "attempt escape"}
|
215 |
+
{"relation": "CapableOf", "head": "dog", "tail": "sense fear"}
|
216 |
+
{"relation": "Causes", "head": "kill someone", "tail": "go to jail"}
|
217 |
+
{"relation": "AtLocation", "head": "student", "tail": "college"}
|
218 |
+
{"relation": "Causes", "head": "wait on line", "tail": "boredom"}
|
219 |
+
{"relation": "HasSubevent", "head": "hear music", "tail": "dance"}
|
220 |
+
{"relation": "HasA", "head": "person", "tail": "feel"}
|
221 |
+
{"relation": "HasPrerequisite", "head": "pass sentence", "tail": "be judge"}
|
222 |
+
{"relation": "IsA", "head": "college", "tail": "school"}
|
223 |
+
{"relation": "AtLocation", "head": "planet", "tail": "outer space"}
|
224 |
+
{"relation": "Desires", "head": "dog", "tail": "chew bone"}
|
225 |
+
{"relation": "HasPrerequisite", "head": "go into trance", "tail": "meditate"}
|
226 |
+
{"relation": "AtLocation", "head": "bee", "tail": "meadow"}
|
227 |
+
{"relation": "HasPrerequisite", "head": "hit bottle", "tail": "go to bar"}
|
228 |
+
{"relation": "AtLocation", "head": "wall", "tail": "house"}
|
229 |
+
{"relation": "AtLocation", "head": "magazine", "tail": "library"}
|
230 |
+
{"relation": "MotivatedByGoal", "head": "sleep", "tail": "you be tire"}
|
231 |
+
{"relation": "CapableOf", "head": "teacher", "tail": "question student"}
|
232 |
+
{"relation": "AtLocation", "head": "copy machine", "tail": "office"}
|
233 |
+
{"relation": "HasA", "head": "violin", "tail": "string"}
|
234 |
+
{"relation": "Causes", "head": "play card", "tail": "win money"}
|
235 |
+
{"relation": "CausesDesire", "head": "your love", "tail": "forgive someone"}
|
236 |
+
{"relation": "AtLocation", "head": "violence", "tail": "war"}
|
237 |
+
{"relation": "HasSubevent", "head": "lie", "tail": "you get catch"}
|
238 |
+
{"relation": "HasSubevent", "head": "fish", "tail": "bait hook"}
|
239 |
+
{"relation": "UsedFor", "head": "tennis ball", "tail": "play tennis"}
|
240 |
+
{"relation": "HasPrerequisite", "head": "stop your bicycle", "tail": "use your brake"}
|
241 |
+
{"relation": "HasSubevent", "head": "comfort friend", "tail": "hug"}
|
242 |
+
{"relation": "HasPrerequisite", "head": "commit perjury", "tail": "tell lie"}
|
243 |
+
{"relation": "CausesDesire", "head": "drink", "tail": "urinate"}
|
244 |
+
{"relation": "UsedFor", "head": "pawn", "tail": "play chess"}
|
245 |
+
{"relation": "UsedFor", "head": "pub", "tail": "drink beer"}
|
246 |
+
{"relation": "Causes", "head": "have haircut", "tail": "short hair"}
|
247 |
+
{"relation": "AtLocation", "head": "dog", "tail": "table"}
|
248 |
+
{"relation": "IsA", "head": "submarine", "tail": "boat"}
|
249 |
+
{"relation": "AtLocation", "head": "astronaut", "tail": "space shuttle"}
|
250 |
+
{"relation": "HasA", "head": "earth", "tail": "atmosphere"}
|
251 |
+
{"relation": "IsA", "head": "georgia", "tail": "state"}
|
252 |
+
{"relation": "UsedFor", "head": "street", "tail": "drive on"}
|
253 |
+
{"relation": "AtLocation", "head": "seatbelt", "tail": "backseat of car"}
|
254 |
+
{"relation": "UsedFor", "head": "hotel", "tail": "sleep"}
|
255 |
+
{"relation": "HasPrerequisite", "head": "get divorce", "tail": "get marry"}
|
256 |
+
{"relation": "HasPrerequisite", "head": "type", "tail": "have keyboard"}
|
257 |
+
{"relation": "AtLocation", "head": "rock", "tail": "moon"}
|
258 |
+
{"relation": "AtLocation", "head": "linoleum", "tail": "kitchen"}
|
259 |
+
{"relation": "HasA", "head": "house", "tail": "yard"}
|
260 |
+
{"relation": "CapableOf", "head": "thermometer", "tail": "measure temperature"}
|
261 |
+
{"relation": "AtLocation", "head": "airplane", "tail": "air"}
|
262 |
+
{"relation": "HasPrerequisite", "head": "go for walk", "tail": "stand up"}
|
263 |
+
{"relation": "CapableOf", "head": "person", "tail": "sleep at night"}
|
264 |
+
{"relation": "Causes", "head": "meet person", "tail": "make new friend"}
|
265 |
+
{"relation": "IsA", "head": "jar", "tail": "container"}
|
266 |
+
{"relation": "HasA", "head": "most bird", "tail": "wing"}
|
267 |
+
{"relation": "HasPrerequisite", "head": "stop your car", "tail": "step on brake"}
|
268 |
+
{"relation": "AtLocation", "head": "box", "tail": "garage"}
|
269 |
+
{"relation": "AtLocation", "head": "something", "tail": "bridge"}
|
270 |
+
{"relation": "HasSubevent", "head": "communicate", "tail": "talk"}
|
271 |
+
{"relation": "HasPrerequisite", "head": "run errand", "tail": "make list"}
|
272 |
+
{"relation": "CapableOf", "head": "toy", "tail": "delight child"}
|
273 |
+
{"relation": "AtLocation", "head": "slot machine", "tail": "casino"}
|
274 |
+
{"relation": "HasSubevent", "head": "pay cash", "tail": "get change"}
|
275 |
+
{"relation": "UsedFor", "head": "cutlery drawer", "tail": "store knife"}
|
276 |
+
{"relation": "CapableOf", "head": "musician", "tail": "record song"}
|
277 |
+
{"relation": "CapableOf", "head": "mosquito", "tail": "fly"}
|
278 |
+
{"relation": "Causes", "head": "strike match", "tail": "flame"}
|
279 |
+
{"relation": "IsA", "head": "orange", "tail": "color"}
|
280 |
+
{"relation": "IsA", "head": "turkey", "tail": "name of country"}
|
281 |
+
{"relation": "AtLocation", "head": "country", "tail": "continent"}
|
282 |
+
{"relation": "HasPrerequisite", "head": "watch television show", "tail": "turn on television"}
|
283 |
+
{"relation": "HasPrerequisite", "head": "go to film", "tail": "go to movie theater"}
|
284 |
+
{"relation": "UsedFor", "head": "machine gun", "tail": "kill person"}
|
285 |
+
{"relation": "AtLocation", "head": "captain", "tail": "ship"}
|
286 |
+
{"relation": "CapableOf", "head": "person", "tail": "fear death"}
|
287 |
+
{"relation": "HasA", "head": "bird", "tail": "wing"}
|
288 |
+
{"relation": "AtLocation", "head": "something", "tail": "zoo"}
|
289 |
+
{"relation": "Causes", "head": "play lacrosse", "tail": "injury"}
|
290 |
+
{"relation": "HasSubevent", "head": "attend lecture", "tail": "fall asleep"}
|
291 |
+
{"relation": "AtLocation", "head": "space suit", "tail": "space shuttle"}
|
292 |
+
{"relation": "CapableOf", "head": "teacher", "tail": "mark paper"}
|
293 |
+
{"relation": "IsA", "head": "bible", "tail": "book"}
|
294 |
+
{"relation": "CapableOf", "head": "actor", "tail": "star in film"}
|
295 |
+
{"relation": "CapableOf", "head": "teacher", "tail": "state fact"}
|
296 |
+
{"relation": "HasPrerequisite", "head": "see your favorite show", "tail": "turn on tv"}
|
297 |
+
{"relation": "Causes", "head": "read magazine", "tail": "learn"}
|
298 |
+
{"relation": "AtLocation", "head": "newspaper", "tail": "library"}
|
299 |
+
{"relation": "HasProperty", "head": "play", "tail": "fun"}
|
300 |
+
{"relation": "HasPrerequisite", "head": "listen to radio", "tail": "turn radio on"}
|
301 |
+
{"relation": "CapableOf", "head": "baby", "tail": "wet their diaper"}
|
302 |
+
{"relation": "AtLocation", "head": "clarinet", "tail": "band"}
|
303 |
+
{"relation": "HasA", "head": "bird", "tail": "two leg"}
|
304 |
+
{"relation": "HasPrerequisite", "head": "kiss someone", "tail": "pucker up"}
|
305 |
+
{"relation": "HasProperty", "head": "smoke", "tail": "bad for you"}
|
306 |
+
{"relation": "CapableOf", "head": "student", "tail": "study math"}
|
307 |
+
{"relation": "Desires", "head": "person", "tail": "ride horse"}
|
308 |
+
{"relation": "HasSubevent", "head": "snore", "tail": "sleep"}
|
309 |
+
{"relation": "UsedFor", "head": "garden hose", "tail": "water garden"}
|
310 |
+
{"relation": "AtLocation", "head": "bed", "tail": "hospital"}
|
311 |
+
{"relation": "AtLocation", "head": "playground", "tail": "park"}
|
312 |
+
{"relation": "HasPrerequisite", "head": "take oath", "tail": "raise your right hand"}
|
313 |
+
{"relation": "AtLocation", "head": "dust", "tail": "fridge"}
|
314 |
+
{"relation": "UsedFor", "head": "razor", "tail": "shave with"}
|
315 |
+
{"relation": "HasPrerequisite", "head": "attend rock concert", "tail": "purchase ticket"}
|
316 |
+
{"relation": "HasSubevent", "head": "read newspaper", "tail": "drink coffee"}
|
317 |
+
{"relation": "AtLocation", "head": "ficus", "tail": "pot"}
|
318 |
+
{"relation": "AtLocation", "head": "table", "tail": "conference"}
|
319 |
+
{"relation": "AtLocation", "head": "seat", "tail": "show"}
|
320 |
+
{"relation": "HasPrerequisite", "head": "stop be marry to someone", "tail": "divorce"}
|
321 |
+
{"relation": "CapableOf", "head": "cat", "tail": "chase mouse"}
|
322 |
+
{"relation": "IsA", "head": "canada", "tail": "in north america"}
|
323 |
+
{"relation": "UsedFor", "head": "match", "tail": "light fire"}
|
324 |
+
{"relation": "HasA", "head": "religion", "tail": "cause many war"}
|
325 |
+
{"relation": "CapableOf", "head": "child", "tail": "play game"}
|
326 |
+
{"relation": "HasPrerequisite", "head": "play violin", "tail": "take lesson"}
|
327 |
+
{"relation": "CapableOf", "head": "person", "tail": "visit place"}
|
328 |
+
{"relation": "Causes", "head": "open gift", "tail": "suprise"}
|
329 |
+
{"relation": "HasPrerequisite", "head": "dive", "tail": "go to pool"}
|
330 |
+
{"relation": "HasPrerequisite", "head": "have food", "tail": "eat"}
|
331 |
+
{"relation": "HasPrerequisite", "head": "see old thing", "tail": "visit museum"}
|
332 |
+
{"relation": "HasSubevent", "head": "sate your hunger", "tail": "eat"}
|
333 |
+
{"relation": "HasPrerequisite", "head": "eat in restaurant", "tail": "make reservation"}
|
334 |
+
{"relation": "AtLocation", "head": "crater", "tail": "suface of moon"}
|
335 |
+
{"relation": "HasPrerequisite", "head": "join army", "tail": "enlist"}
|
336 |
+
{"relation": "CapableOf", "head": "hostess", "tail": "welcome guest"}
|
337 |
+
{"relation": "CapableOf", "head": "person", "tail": "experience joy"}
|
338 |
+
{"relation": "HasSubevent", "head": "go on stage", "tail": "act"}
|
339 |
+
{"relation": "CapableOf", "head": "farmer", "tail": "seed field"}
|
340 |
+
{"relation": "UsedFor", "head": "pair of pant", "tail": "wear"}
|
341 |
+
{"relation": "HasSubevent", "head": "take stand", "tail": "testify"}
|
342 |
+
{"relation": "UsedFor", "head": "temple", "tail": "pray"}
|
343 |
+
{"relation": "AtLocation", "head": "telephone", "tail": "desk"}
|
344 |
+
{"relation": "HasPrerequisite", "head": "read newspaper", "tail": "literacy"}
|
345 |
+
{"relation": "HasPrerequisite", "head": "listen to music", "tail": "play cd"}
|
346 |
+
{"relation": "CausesDesire", "head": "boredom", "tail": "play game"}
|
347 |
+
{"relation": "Causes", "head": "buy product", "tail": "spend money"}
|
348 |
+
{"relation": "HasSubevent", "head": "play guitar", "tail": "strum string"}
|
349 |
+
{"relation": "UsedFor", "head": "glass", "tail": "hold liquid"}
|
350 |
+
{"relation": "Causes", "head": "pass class", "tail": "graduation"}
|
351 |
+
{"relation": "AtLocation", "head": "bishop", "tail": "church"}
|
352 |
+
{"relation": "CapableOf", "head": "fly", "tail": "fly"}
|
353 |
+
{"relation": "UsedFor", "head": "shoe", "tail": "protect your foot"}
|
354 |
+
{"relation": "HasSubevent", "head": "dream", "tail": "rapid eye movement"}
|
355 |
+
{"relation": "AtLocation", "head": "action figure", "tail": "toy store"}
|
356 |
+
{"relation": "CapableOf", "head": "fire", "tail": "burn house"}
|
357 |
+
{"relation": "Causes", "head": "play sport", "tail": "injury"}
|
358 |
+
{"relation": "HasSubevent", "head": "start family", "tail": "get marry"}
|
359 |
+
{"relation": "HasSubevent", "head": "take bath", "tail": "get wet"}
|
360 |
+
{"relation": "CapableOf", "head": "brewer", "tail": "bottle beer"}
|
361 |
+
{"relation": "HasProperty", "head": "drive", "tail": "dangerous"}
|
362 |
+
{"relation": "CapableOf", "head": "mop", "tail": "clean floor"}
|
363 |
+
{"relation": "AtLocation", "head": "driftwood", "tail": "beach"}
|
364 |
+
{"relation": "AtLocation", "head": "pedestrian", "tail": "street"}
|
365 |
+
{"relation": "HasSubevent", "head": "use computer", "tail": "type"}
|
366 |
+
{"relation": "HasSubevent", "head": "go to restaurant", "tail": "eat"}
|
367 |
+
{"relation": "CapableOf", "head": "politician", "tail": "field question"}
|
368 |
+
{"relation": "HasSubevent", "head": "wait on table", "tail": "you get tip"}
|
369 |
+
{"relation": "CapableOf", "head": "good", "tail": "battle evil"}
|
370 |
+
{"relation": "AtLocation", "head": "dog", "tail": "park"}
|
371 |
+
{"relation": "Causes", "head": "eat breakfast", "tail": "gain energy"}
|
372 |
+
{"relation": "HasPrerequisite", "head": "print on printer", "tail": "turn printer on"}
|
373 |
+
{"relation": "Causes", "head": "hear sing", "tail": "sing along"}
|
374 |
+
{"relation": "IsA", "head": "tuba", "tail": "large musical instrument"}
|
375 |
+
{"relation": "IsA", "head": "sex", "tail": "three letter word"}
|
376 |
+
{"relation": "IsA", "head": "steak", "tail": "food"}
|
377 |
+
{"relation": "IsA", "head": "fruit", "tail": "good source of vitamin"}
|
378 |
+
{"relation": "IsA", "head": "cash", "tail": "another word for money"}
|
379 |
+
{"relation": "HasProperty", "head": "cat", "tail": "cute"}
|
380 |
+
{"relation": "IsA", "head": "bagel", "tail": "bread"}
|
381 |
+
{"relation": "IsA", "head": "moon", "tail": "long way away"}
|
382 |
+
{"relation": "CapableOf", "head": "fish", "tail": "breathe water"}
|
383 |
+
{"relation": "HasProperty", "head": "bird bone", "tail": "hollow"}
|
384 |
+
{"relation": "HasProperty", "head": "peace", "tail": "good"}
|
385 |
+
{"relation": "IsA", "head": "doctor", "tail": "person"}
|
386 |
+
{"relation": "HasProperty", "head": "flower", "tail": "fragrant"}
|
387 |
+
{"relation": "PartOf", "head": "earth", "tail": "universe"}
|
388 |
+
{"relation": "PartOf", "head": "piece", "tail": "whole"}
|
389 |
+
{"relation": "IsA", "head": "car", "tail": "machine"}
|
390 |
+
{"relation": "UsedFor", "head": "bookshelf", "tail": "hold book"}
|
391 |
+
{"relation": "CapableOf", "head": "person", "tail": "cook dinner"}
|
392 |
+
{"relation": "UsedFor", "head": "decide criminal s fate", "tail": "judge"}
|
393 |
+
{"relation": "UsedFor", "head": "salt", "tail": "season food"}
|
394 |
+
{"relation": "Desires", "head": "dog", "tail": "be pet"}
|
395 |
+
{"relation": "CapableOf", "head": "hand", "tail": "cup water"}
|
396 |
+
{"relation": "HasPrerequisite", "head": "fly kite", "tail": "go outside"}
|
397 |
+
{"relation": "UsedFor", "head": "oboe", "tail": "make music"}
|
398 |
+
{"relation": "HasSubevent", "head": "sing", "tail": "open your mouth"}
|
399 |
+
{"relation": "UsedFor", "head": "museum ticket", "tail": "enter museum"}
|
400 |
+
{"relation": "HasPrerequisite", "head": "use television", "tail": "plug it in"}
|
401 |
+
{"relation": "UsedFor", "head": "chapel", "tail": "get marry"}
|
402 |
+
{"relation": "UsedFor", "head": "bucket", "tail": "carry liquid"}
|
403 |
+
{"relation": "UsedFor", "head": "highway", "tail": "drive on"}
|
404 |
+
{"relation": "UsedFor", "head": "bungalow", "tail": "live in"}
|
405 |
+
{"relation": "UsedFor", "head": "cotton", "tail": "make clothe"}
|
406 |
+
{"relation": "UsedFor", "head": "golf club", "tail": "hit golf ball"}
|
407 |
+
{"relation": "UsedFor", "head": "fork", "tail": "eat food with"}
|
408 |
+
{"relation": "HasPrerequisite", "head": "surf web", "tail": "connect to internet"}
|
409 |
+
{"relation": "HasProperty", "head": "animal", "tail": "alive"}
|
410 |
+
{"relation": "CapableOf", "head": "smoker", "tail": "light cigarette"}
|
411 |
+
{"relation": "HasPrerequisite", "head": "see movie", "tail": "buy ticket"}
|
412 |
+
{"relation": "HasPrerequisite", "head": "enjoy film", "tail": "buy ticket"}
|
413 |
+
{"relation": "UsedFor", "head": "chapel", "tail": "pray"}
|
414 |
+
{"relation": "UsedFor", "head": "machine", "tail": "work"}
|
415 |
+
{"relation": "UsedFor", "head": "toothbrush", "tail": "clean tooth"}
|
416 |
+
{"relation": "IsA", "head": "space", "tail": "area"}
|
417 |
+
{"relation": "NotDesires", "head": "person", "tail": "make mistake"}
|
418 |
+
{"relation": "IsA", "head": "boat", "tail": "form of transportation"}
|
419 |
+
{"relation": "IsA", "head": "rhode island", "tail": "state"}
|
420 |
+
{"relation": "UsedFor", "head": "clipboard", "tail": "hold paper"}
|
421 |
+
{"relation": "CausesDesire", "head": "crime", "tail": "conduct trial"}
|
422 |
+
{"relation": "IsA", "head": "drink", "tail": "liquid"}
|
423 |
+
{"relation": "UsedFor", "head": "toothpaste", "tail": "clean tooth"}
|
424 |
+
{"relation": "HasProperty", "head": "person", "tail": "human"}
|
425 |
+
{"relation": "Causes", "head": "eat vegetable", "tail": "good health"}
|
426 |
+
{"relation": "UsedFor", "head": "harmonica", "tail": "make music"}
|
427 |
+
{"relation": "UsedFor", "head": "ear", "tail": "hear sound"}
|
428 |
+
{"relation": "CapableOf", "head": "stove", "tail": "heat food"}
|
429 |
+
{"relation": "Desires", "head": "dog", "tail": "bone"}
|
430 |
+
{"relation": "HasSubevent", "head": "chew your food", "tail": "swallow"}
|
431 |
+
{"relation": "CapableOf", "head": "person", "tail": "wear hat"}
|
432 |
+
{"relation": "CapableOf", "head": "child", "tail": "ask question"}
|
433 |
+
{"relation": "MotivatedByGoal", "head": "bury cat", "tail": "it be dead"}
|
434 |
+
{"relation": "UsedFor", "head": "plate", "tail": "hold food"}
|
435 |
+
{"relation": "HasPrerequisite", "head": "drill hole", "tail": "get drill"}
|
436 |
+
{"relation": "UsedFor", "head": "bicycle", "tail": "ride"}
|
437 |
+
{"relation": "UsedFor", "head": "weapon", "tail": "hurt someone"}
|
438 |
+
{"relation": "Desires", "head": "person", "tail": "compliment"}
|
439 |
+
{"relation": "CapableOf", "head": "cat", "tail": "kill bird"}
|
440 |
+
{"relation": "HasPrerequisite", "head": "water plant", "tail": "get water"}
|
441 |
+
{"relation": "UsedFor", "head": "harpsichord", "tail": "make music"}
|
442 |
+
{"relation": "UsedFor", "head": "barbecue", "tail": "cook food"}
|
443 |
+
{"relation": "UsedFor", "head": "fire extinguisher", "tail": "put out fire"}
|
444 |
+
{"relation": "IsA", "head": "airplane", "tail": "form of transportation"}
|
445 |
+
{"relation": "UsedFor", "head": "desk", "tail": "work"}
|
446 |
+
{"relation": "CapableOf", "head": "person", "tail": "miss appointment"}
|
447 |
+
{"relation": "MotivatedByGoal", "head": "reproduce", "tail": "have child"}
|
448 |
+
{"relation": "CapableOf", "head": "author", "tail": "write poem"}
|
449 |
+
{"relation": "HasPrerequisite", "head": "get warm", "tail": "put on clothe"}
|
450 |
+
{"relation": "UsedFor", "head": "office", "tail": "work"}
|
451 |
+
{"relation": "IsA", "head": "oldsmobile", "tail": "car"}
|
452 |
+
{"relation": "HasPrerequisite", "head": "live", "tail": "be born"}
|
453 |
+
{"relation": "CausesDesire", "head": "crime", "tail": "serve justice"}
|
454 |
+
{"relation": "CapableOf", "head": "wood", "tail": "burn"}
|
455 |
+
{"relation": "CapableOf", "head": "paper", "tail": "burn"}
|
456 |
+
{"relation": "HasSubevent", "head": "get fit", "tail": "exercise"}
|
457 |
+
{"relation": "UsedFor", "head": "calendar", "tail": "keep track of time"}
|
458 |
+
{"relation": "CapableOf", "head": "chef", "tail": "prepare meal"}
|
459 |
+
{"relation": "HasSubevent", "head": "swim", "tail": "get wet"}
|
460 |
+
{"relation": "UsedFor", "head": "refrigerator", "tail": "keep food from spoil"}
|
461 |
+
{"relation": "UsedFor", "head": "pistol", "tail": "shoot bullet"}
|
462 |
+
{"relation": "UsedFor", "head": "coat", "tail": "keep warm"}
|
463 |
+
{"relation": "CapableOf", "head": "fire", "tail": "destroy forest"}
|
464 |
+
{"relation": "HasPrerequisite", "head": "get in shape", "tail": "work out"}
|
465 |
+
{"relation": "Causes", "head": "cash in", "tail": "get money"}
|
466 |
+
{"relation": "HasProperty", "head": "gun", "tail": "dangerous"}
|
467 |
+
{"relation": "CapableOf", "head": "chef", "tail": "prepare food"}
|
468 |
+
{"relation": "NotDesires", "head": "person", "tail": "be burn"}
|
469 |
+
{"relation": "MotivatedByGoal", "head": "sit down", "tail": "rest"}
|
470 |
+
{"relation": "MotivatedByGoal", "head": "remember phone number", "tail": "call someone"}
|
471 |
+
{"relation": "AtLocation", "head": "cake", "tail": "bakery"}
|
472 |
+
{"relation": "AtLocation", "head": "water", "tail": "bottle"}
|
473 |
+
{"relation": "AtLocation", "head": "bat", "tail": "cave"}
|
474 |
+
{"relation": "AtLocation", "head": "tooth", "tail": "mouth"}
|
475 |
+
{"relation": "AtLocation", "head": "egg", "tail": "fridge"}
|
476 |
+
{"relation": "AtLocation", "head": "folder", "tail": "file cabinet"}
|
477 |
+
{"relation": "AtLocation", "head": "document folder", "tail": "file cabinet"}
|
478 |
+
{"relation": "AtLocation", "head": "beer", "tail": "bar"}
|
479 |
+
{"relation": "AtLocation", "head": "ocean", "tail": "earth"}
|
480 |
+
{"relation": "AtLocation", "head": "museum", "tail": "city"}
|
481 |
+
{"relation": "AtLocation", "head": "telephone booth", "tail": "city"}
|
482 |
+
{"relation": "AtLocation", "head": "town", "tail": "country"}
|
483 |
+
{"relation": "AtLocation", "head": "wiener dog", "tail": "yard"}
|
484 |
+
{"relation": "AtLocation", "head": "water", "tail": "puddle"}
|
485 |
+
{"relation": "AtLocation", "head": "knob", "tail": "door"}
|
486 |
+
{"relation": "AtLocation", "head": "dance club", "tail": "city"}
|
487 |
+
{"relation": "AtLocation", "head": "escalator", "tail": "mall"}
|
488 |
+
{"relation": "AtLocation", "head": "lens", "tail": "camera"}
|
489 |
+
{"relation": "AtLocation", "head": "wallet", "tail": "purse"}
|
490 |
+
{"relation": "AtLocation", "head": "gel toothpaste", "tail": "bathroom"}
|
491 |
+
{"relation": "Desires", "head": "cat", "tail": "sleep"}
|
492 |
+
{"relation": "Desires", "head": "cat", "tail": "play"}
|
493 |
+
{"relation": "ReceivesAction", "head": "person", "tail": "kill"}
|
494 |
+
{"relation": "CausesDesire", "head": "music", "tail": "dance"}
|
495 |
+
{"relation": "UsedFor", "head": "beer", "tail": "drink"}
|
496 |
+
{"relation": "IsA", "head": "student", "tail": "person"}
|
497 |
+
{"relation": "AtLocation", "head": "car", "tail": "road"}
|
498 |
+
{"relation": "Desires", "head": "dog", "tail": "play"}
|
499 |
+
{"relation": "Desires", "head": "cat", "tail": "chase mouse"}
|
500 |
+
{"relation": "AtLocation", "head": "car", "tail": "town"}
|
501 |
+
{"relation": "CapableOf", "head": "woman", "tail": "give birth"}
|
502 |
+
{"relation": "UsedFor", "head": "cigarette", "tail": "smoke"}
|
503 |
+
{"relation": "IsA", "head": "computer", "tail": "machine"}
|
504 |
+
{"relation": "UsedFor", "head": "your brain", "tail": "think"}
|
505 |
+
{"relation": "IsA", "head": "french horn", "tail": "musical instrument"}
|
506 |
+
{"relation": "AtLocation", "head": "tv", "tail": "house"}
|
507 |
+
{"relation": "PartOf", "head": "ear", "tail": "head"}
|
508 |
+
{"relation": "IsA", "head": "tulip", "tail": "flower"}
|
509 |
+
{"relation": "MotivatedByGoal", "head": "breathe", "tail": "live"}
|
510 |
+
{"relation": "HasSubevent", "head": "program", "tail": "type"}
|
511 |
+
{"relation": "IsA", "head": "trumpet", "tail": "musical instrument"}
|
512 |
+
{"relation": "AtLocation", "head": "pan", "tail": "kitchen"}
|
513 |
+
{"relation": "UsedFor", "head": "printer", "tail": "print"}
|
514 |
+
{"relation": "MotivatedByGoal", "head": "work", "tail": "money"}
|
515 |
+
{"relation": "AtLocation", "head": "steer wheel", "tail": "in car"}
|
516 |
+
{"relation": "HasProperty", "head": "ice", "tail": "hard"}
|
517 |
+
{"relation": "IsA", "head": "guitar", "tail": "instrument"}
|
518 |
+
{"relation": "HasPrerequisite", "head": "sleep", "tail": "brush your tooth"}
|
519 |
+
{"relation": "UsedFor", "head": "car", "tail": "transportation"}
|
520 |
+
{"relation": "MadeOf", "head": "chair", "tail": "wood"}
|
521 |
+
{"relation": "PartOf", "head": "head", "tail": "body"}
|
522 |
+
{"relation": "UsedFor", "head": "refrigerator", "tail": "store food"}
|
523 |
+
{"relation": "HasProperty", "head": "salt", "tail": "salty"}
|
524 |
+
{"relation": "NotDesires", "head": "person", "tail": "burn"}
|
525 |
+
{"relation": "IsA", "head": "dictionary", "tail": "book"}
|
526 |
+
{"relation": "IsA", "head": "woman", "tail": "human"}
|
527 |
+
{"relation": "Causes", "head": "get job", "tail": "earn money"}
|
528 |
+
{"relation": "CausesDesire", "head": "book", "tail": "sleep"}
|
529 |
+
{"relation": "IsA", "head": "watermelon", "tail": "fruit"}
|
530 |
+
{"relation": "MadeOf", "head": "cup", "tail": "plastic"}
|
531 |
+
{"relation": "MadeOf", "head": "wallet", "tail": "leather"}
|
532 |
+
{"relation": "SymbolOf", "head": "heart", "tail": "love"}
|
533 |
+
{"relation": "UsedFor", "head": "sword", "tail": "kill"}
|
534 |
+
{"relation": "HasProperty", "head": "car", "tail": "expensive"}
|
535 |
+
{"relation": "IsA", "head": "copper", "tail": "metal"}
|
536 |
+
{"relation": "IsA", "head": "oak", "tail": "tree"}
|
537 |
+
{"relation": "HasProperty", "head": "game", "tail": "fun"}
|
538 |
+
{"relation": "MadeOf", "head": "seaweed soup", "tail": "seaweed"}
|
539 |
+
{"relation": "IsA", "head": "turkey", "tail": "country"}
|
540 |
+
{"relation": "IsA", "head": "uranus", "tail": "planet"}
|
541 |
+
{"relation": "IsA", "head": "pig", "tail": "mammal"}
|
542 |
+
{"relation": "IsA", "head": "squirrel", "tail": "mammal"}
|
543 |
+
{"relation": "IsA", "head": "hamburger", "tail": "food"}
|
544 |
+
{"relation": "IsA", "head": "korea university", "tail": "university"}
|
545 |
+
{"relation": "IsA", "head": "goldfish", "tail": "fish"}
|
546 |
+
{"relation": "IsA", "head": "mouse", "tail": "animal"}
|
547 |
+
{"relation": "IsA", "head": "nightingale", "tail": "bird"}
|
548 |
+
{"relation": "IsA", "head": "gull", "tail": "bird"}
|
549 |
+
{"relation": "IsA", "head": "euro", "tail": "currency"}
|
550 |
+
{"relation": "IsA", "head": "parrot", "tail": "bird"}
|
551 |
+
{"relation": "CapableOf", "head": "couple", "tail": "have sex"}
|
552 |
+
{"relation": "HasSubevent", "head": "have sex", "tail": "kiss your partner"}
|
553 |
+
{"relation": "CapableOf", "head": "sunglass", "tail": "protect eye from sun"}
|
554 |
+
{"relation": "HasProperty", "head": "thumb tack", "tail": "sharp"}
|
555 |
+
{"relation": "IsA", "head": "bicycle be", "tail": "mean of transportation"}
|
556 |
+
{"relation": "HasProperty", "head": "tornado", "tail": "very destructive"}
|
557 |
+
{"relation": "NotHasProperty", "head": "rubber chicken", "tail": "alive"}
|
558 |
+
{"relation": "HasProperty", "head": "most baby", "tail": "cute"}
|
559 |
+
{"relation": "IsA", "head": "backgammon", "tail": "board game"}
|
560 |
+
{"relation": "AtLocation", "head": "computer", "tail": "store"}
|
561 |
+
{"relation": "UsedFor", "head": "pipe", "tail": "smoke"}
|
562 |
+
{"relation": "HasProperty", "head": "floppy disk", "tail": "obsolete"}
|
563 |
+
{"relation": "HasSubevent", "head": "agree with someone", "tail": "nod of head"}
|
564 |
+
{"relation": "NotDesires", "head": "person", "tail": "be diseased"}
|
565 |
+
{"relation": "HasFirstSubevent", "head": "skate", "tail": "put skate on"}
|
566 |
+
{"relation": "AtLocation", "head": "god", "tail": "heaven"}
|
567 |
+
{"relation": "IsA", "head": "u2", "tail": "band"}
|
568 |
+
{"relation": "HasProperty", "head": "gun", "tail": "very dangerous"}
|
569 |
+
{"relation": "AtLocation", "head": "other planet", "tail": "solar system"}
|
570 |
+
{"relation": "AtLocation", "head": "butter", "tail": "refrigerator"}
|
571 |
+
{"relation": "IsA", "head": "massachusetts", "tail": "state"}
|
572 |
+
{"relation": "HasSubevent", "head": "agree with someone", "tail": "someone nod"}
|
573 |
+
{"relation": "IsA", "head": "lip", "tail": "kiss"}
|
574 |
+
{"relation": "HasLastSubevent", "head": "do some exercise", "tail": "do cool-down"}
|
575 |
+
{"relation": "AtLocation", "head": "fish", "tail": "lake"}
|
576 |
+
{"relation": "IsA", "head": "piano", "tail": "instrument of music"}
|
577 |
+
{"relation": "IsA", "head": "wicca", "tail": "religion"}
|
578 |
+
{"relation": "HasA", "head": "arm", "tail": "one hand"}
|
579 |
+
{"relation": "UsedFor", "head": "cat", "tail": "catch mouse"}
|
580 |
+
{"relation": "HasSubevent", "head": "bathe", "tail": "wash my hair"}
|
581 |
+
{"relation": "Causes", "head": "flirt", "tail": "sex"}
|
582 |
+
{"relation": "IsA", "head": "boy", "tail": "young human male"}
|
583 |
+
{"relation": "AtLocation", "head": "card", "tail": "deck"}
|
584 |
+
{"relation": "AtLocation", "head": "dead person", "tail": "war"}
|
585 |
+
{"relation": "HasLastSubevent", "head": "take shower", "tail": "dry off"}
|
586 |
+
{"relation": "IsA", "head": "snow", "tail": "freeze water"}
|
587 |
+
{"relation": "CapableOf", "head": "ice", "tail": "cool drink"}
|
588 |
+
{"relation": "MotivatedByGoal", "head": "sing", "tail": "you be happy"}
|
589 |
+
{"relation": "CapableOf", "head": "parent", "tail": "name baby"}
|
590 |
+
{"relation": "UsedFor", "head": "ballpoint pen", "tail": "write with"}
|
591 |
+
{"relation": "UsedFor", "head": "glass roof", "tail": "greenhouse"}
|
592 |
+
{"relation": "CapableOf", "head": "iron", "tail": "press clothe"}
|
593 |
+
{"relation": "CapableOf", "head": "son", "tail": "honor his mother"}
|
594 |
+
{"relation": "CapableOf", "head": "criminal", "tail": "case joint"}
|
595 |
+
{"relation": "CapableOf", "head": "lizard", "tail": "sun itself on rock"}
|
596 |
+
{"relation": "HasPrerequisite", "head": "go jog", "tail": "put on shoe"}
|
597 |
+
{"relation": "AtLocation", "head": "wall", "tail": "build"}
|
598 |
+
{"relation": "HasPrerequisite", "head": "receive degree", "tail": "go to school"}
|
599 |
+
{"relation": "Causes", "head": "light match", "tail": "start fire"}
|
600 |
+
{"relation": "CapableOf", "head": "baby", "tail": "cry loudly"}
|
get_stats.py
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import pandas as pd
|
2 |
+
from datasets import load_dataset
|
3 |
+
|
4 |
+
data = load_dataset('relbert/conceptnet_high_confidence_v2')
|
5 |
+
stats = []
|
6 |
+
for k in data.keys():
|
7 |
+
for i in data[k]:
|
8 |
+
stats.append({'relation_type': i['relation_type'], 'split': k, 'positives': len(i['positives']), 'negatives': len(i['negatives'])})
|
9 |
+
df = pd.DataFrame(stats)
|
10 |
+
df_train = df[df['split'] == 'train']
|
11 |
+
df_valid = df[df['split'] == 'validation']
|
12 |
+
stats = []
|
13 |
+
for r in df['relation_type'].unique():
|
14 |
+
_df_t = df_train[df_train['relation_type'] == r]
|
15 |
+
_df_v = df_valid[df_valid['relation_type'] == r]
|
16 |
+
stats.append({
|
17 |
+
'relation_type': r,
|
18 |
+
'positive (train)': 0 if len(_df_t) == 0 else _df_t['positives'].values[0],
|
19 |
+
'negative (train)': 0 if len(_df_t) == 0 else _df_t['negatives'].values[0],
|
20 |
+
'positive (validation)': 0 if len(_df_v) == 0 else _df_v['positives'].values[0],
|
21 |
+
'negative (validation)': 0 if len(_df_v) == 0 else _df_v['negatives'].values[0],
|
22 |
+
})
|
23 |
+
|
24 |
+
df = pd.DataFrame(stats).sort_values(by=['relation_type'])
|
25 |
+
df.index = df.pop('relation_type')
|
26 |
+
sum_pairs = df.sum(0)
|
27 |
+
df = df.T
|
28 |
+
df['SUM'] = sum_pairs
|
29 |
+
df = df.T
|
30 |
+
|
31 |
+
df.to_csv('stats.csv')
|
32 |
+
with open('stats.md', 'w') as f:
|
33 |
+
f.write(df.to_markdown())
|
34 |
+
|
35 |
+
|
process.py
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
import os
|
3 |
+
import gzip
|
4 |
+
import requests
|
5 |
+
|
6 |
+
import pandas as pd
|
7 |
+
|
8 |
+
urls = {
|
9 |
+
'dev1': 'https://home.ttic.edu/~kgimpel/comsense_resources/dev1.txt.gz',
|
10 |
+
'dev2': 'https://home.ttic.edu/~kgimpel/comsense_resources/dev2.txt.gz',
|
11 |
+
'test': 'https://home.ttic.edu/~kgimpel/comsense_resources/test.txt.gz'
|
12 |
+
}
|
13 |
+
exclude = ['NotCapableOf', 'NotDesires']
|
14 |
+
|
15 |
+
|
16 |
+
def wget(url, cache_dir: str = './cache'):
|
17 |
+
""" wget and uncompress data_iterator """
|
18 |
+
os.makedirs(cache_dir, exist_ok=True)
|
19 |
+
filename = os.path.basename(url)
|
20 |
+
path = f'{cache_dir}/{filename}'
|
21 |
+
if os.path.exists(path):
|
22 |
+
return path.replace('.gz', '')
|
23 |
+
with open(path, "wb") as _f:
|
24 |
+
r = requests.get(url)
|
25 |
+
_f.write(r.content)
|
26 |
+
with gzip.open(path, 'rb') as _f:
|
27 |
+
with open(path.replace('.gz', ''), 'wb') as f_write:
|
28 |
+
f_write.write(_f.read())
|
29 |
+
os.remove(path)
|
30 |
+
return path.replace('.gz', '')
|
31 |
+
|
32 |
+
|
33 |
+
def read_file(file_name):
|
34 |
+
with open(file_name) as f_reader:
|
35 |
+
df = pd.DataFrame([i.split('\t') for i in f_reader.read().split('\n') if len(i) > 0],
|
36 |
+
columns=['relation', 'head', 'tail', 'flag'])
|
37 |
+
df_positive = df[df['flag'] == '1']
|
38 |
+
df_positive.pop('flag')
|
39 |
+
return df_positive
|
40 |
+
|
41 |
+
|
42 |
+
if __name__ == '__main__':
|
43 |
+
test = read_file(wget(urls['test']))
|
44 |
+
with open(f'dataset/test.jsonl', 'w') as f:
|
45 |
+
f.write("\n".join([json.dumps(i.to_dict()) for _, i in test.iterrows()]))
|
46 |
+
dev1 = read_file(wget(urls['dev1']))
|
47 |
+
with open(f'dataset/train.jsonl', 'w') as f:
|
48 |
+
f.write("\n".join([json.dumps(i.to_dict()) for _, i in dev1.iterrows()]))
|
49 |
+
dev2 = read_file(wget(urls['dev2']))
|
50 |
+
with open(f'dataset/valid.jsonl', 'w') as f:
|
51 |
+
f.write("\n".join([json.dumps(i.to_dict()) for _, i in dev2.iterrows()]))
|