File size: 4,752 Bytes
215834a
 
 
 
 
 
 
 
 
 
 
b7248b5
215834a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b7869ee
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87ca83f
b7869ee
215834a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
83
84
85
86
87
88
---
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 |                356 |                      97 |                      80 |
| CapableOf        |                195 |                190 |                      73 |                      78 |
| Causes           |                 71 |                 73 |                      26 |                      26 |
| CausesDesire     |                  9 |                  7 |                      11 |                      11 |
| CreatedBy        |                  2 |                  3 |                       0 |                       0 |
| DefinedAs        |                  0 |                  0 |                       2 |                       2 |
| Desires          |                 16 |                 15 |                      12 |                      12 |
| HasA             |                 67 |                 86 |                      17 |                      17 |
| HasFirstSubevent |                  2 |                  3 |                       0 |                       0 |
| HasLastSubevent  |                  2 |                  3 |                       3 |                       1 |
| HasPrerequisite  |                168 |                176 |                      57 |                      54 |
| HasProperty      |                 94 |                100 |                      39 |                      49 |
| HasSubevent      |                125 |                128 |                      40 |                      54 |
| IsA              |                310 |                279 |                      98 |                     106 |
| MadeOf           |                 17 |                 15 |                       7 |                       5 |
| MotivatedByGoal  |                 14 |                 15 |                      11 |                      11 |
| NotCapableOf     |                 15 |                 13 |                       0 |                       0 |
| NotDesires       |                  4 |                  4 |                       4 |                       1 |
| PartOf           |                 34 |                 40 |                       7 |                       5 |
| ReceivesAction   |                 18 |                 16 |                       8 |                       6 |
| SymbolOf         |                  0 |                  0 |                       2 |                       3 |
| UsedFor          |                249 |                269 |                      81 |                      74 |
| SUM              |               1795 |               1791 |                     595 |                     595 |

### Citation Information
```
@inproceedings{li-16,
title = {Commonsense Knowledge Base Completion},
author = {Xiang Li and Aynaz Taheri and Lifu Tu and Kevin Gimpel},
booktitle = {Proc. of ACL},
year = {2016}
}
@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"
}
```