File size: 4,570 Bytes
f63efd0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
language:
- en
license:
- other
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
pretty_name: ConceptNet with High Confidence
---
# Dataset Card for "relbert/conceptnet_high_confidence"
## Dataset Description
- **Repository:** [RelBERT](https://github.com/asahi417/relbert)
- **Paper:** [https://home.ttic.edu/~kgimpel/commonsense.html](https://home.ttic.edu/~kgimpel/commonsense.html)
- **Dataset:** High Confidence Subset of ConceptNet

### Dataset Summary
The selected subset of ConceptNet used in [this work](https://home.ttic.edu/~kgimpel/commonsense.html), which compiled 
to fine-tune [RelBERT](https://github.com/asahi417/relbert) model.

## Dataset Structure
### Data Instances
An example of `train` looks as follows.
```
{
    "relation_type": "AtLocation",
    "positives": [["fish", "water"], ["cloud", "sky"], ["child", "school"], ... ],
    "negatives": [["pen", "write"], ["sex", "fun"], ["soccer", "sport"], ["fish", "school"], ... ]
}
```

### Data Splits
|  name   |train|validation|
|---------|----:|---------:|
|conceptnet_high_confidence| 25 |      24|

### Number of Positive/Negative Word-pairs in each Split

| relation_type    |   positive (train) |   negative (train) |   positive (validation) |   negative (validation) |
|:-----------------|-------------------:|-------------------:|------------------------:|------------------------:|
| AtLocation       |                383 |               1768 |                      97 |                     578 |
| CapableOf        |                195 |               1790 |                      73 |                     600 |
| Causes           |                 71 |               1797 |                      26 |                     595 |
| CausesDesire     |                  9 |               1793 |                      11 |                     595 |
| CreatedBy        |                  2 |               1796 |                       0 |                       0 |
| DefinedAs        |                  0 |                  0 |                       2 |                     595 |
| Desires          |                 16 |               1794 |                      12 |                     595 |
| HasA             |                 67 |               1814 |                      17 |                     595 |
| HasFirstSubevent |                  2 |               1796 |                       0 |                       0 |
| HasLastSubevent  |                  2 |               1796 |                       3 |                     593 |
| HasPrerequisite  |                168 |               1803 |                      57 |                     592 |
| HasProperty      |                 94 |               1801 |                      39 |                     605 |
| HasSubevent      |                125 |               1798 |                      40 |                     609 |
| IsA              |                310 |               1764 |                      98 |                     603 |
| MadeOf           |                 17 |               1793 |                       7 |                     593 |
| MotivatedByGoal  |                 14 |               1796 |                      11 |                     595 |
| NotCapableOf     |                 15 |               1793 |                       0 |                       0 |
| NotDesires       |                  4 |               1795 |                       4 |                     592 |
| PartOf           |                 34 |               1801 |                       7 |                     593 |
| ReceivesAction   |                 18 |               1793 |                       8 |                     593 |
| SymbolOf         |                  0 |                  0 |                       2 |                     596 |
| UsedFor          |                249 |               1815 |                      81 |                     588 |
| SUM              |               1795 |              35896 |                     595 |                   11305 |

### Citation Information
```
@InProceedings{P16-1137,
  author = 	"Li, Xiang
		and Taheri, Aynaz
		and Tu, Lifu
		and Gimpel, Kevin",
  title = 	"Commonsense Knowledge Base Completion",
  booktitle = 	"Proceedings of the 54th Annual Meeting of the Association for      Computational Linguistics (Volume 1: Long Papers)    ",
  year = 	"2016",
  publisher = 	"Association for Computational Linguistics",
  pages = 	"1445--1455",
  location = 	"Berlin, Germany",
  doi = 	"10.18653/v1/P16-1137",
  url = 	"http://aclweb.org/anthology/P16-1137"
}
```