File size: 1,468 Bytes
35ad8e3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dbb440e
 
 
 
35ad8e3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
language:
- en
license:
- other
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
pretty_name: Relation Mapping
---
# Dataset Card for "relbert/relation_mapping"
## Dataset Description
- **Repository:** [RelBERT](https://github.com/asahi417/relbert)
- **Paper:** [https://www.jair.org/index.php/jair/article/view/10583](https://www.jair.org/index.php/jair/article/view/10583)
- **Dataset:** Relation Mapping

### Dataset Summary
Relation Mapping is a task to choose optimal combination of word pairs (see more detail in the [paper](https://www.jair.org/index.php/jair/article/view/10583)).

## Dataset Structure
### Data Instances
An example looks as follows.
```
{
 "id": "m10",
 "reference": ["seeing", "understanding"],
 "source": ["seeing", "light", "illuminating", "darkness", "view", "hidden"],
 "target": ["understanding", "knowledge", "explaining", "confusion", "interpretation", "secret"],
 "agreement": [68.2, 77.3, 86.4, 86.4, 68.2, 86.4],
 "pos": ["vbg", "nn", "vbg", "nn", "nn", "jj"],
 "target_random": ["knowledge", "interpretation", "explaining", "confusion", "understanding", "secret"]
}
```

### Data Splits
|  name   |test|
|---------|----:|
|relation_mapping| 33 |


### Citation Information
```
@article{turney2008latent,
  title={The latent relation mapping engine: Algorithm and experiments},
  author={Turney, Peter D},
  journal={Journal of Artificial Intelligence Research},
  volume={33},
  pages={615--655},
  year={2008}
}
```