Datasets:

Languages:
English
Size:
< 1K
ArXiv:
Libraries:
Datasets
License:
File size: 2,500 Bytes
63df4ad
 
 
 
 
 
 
 
 
272ac6f
63df4ad
 
 
c9e4aed
 
16b57b0
 
0485c1a
16b57b0
 
 
 
1befbcb
 
 
 
 
16b57b0
 
 
 
c9e4aed
 
63df4ad
 
0485c1a
c9e4aed
63df4ad
 
 
 
1befbcb
 
 
 
 
 
 
63df4ad
 
 
 
c9e4aed
 
 
 
 
1befbcb
c9e4aed
0485c1a
c9e4aed
 
63df4ad
 
 
0485c1a
63df4ad
 
 
 
 
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
---
language:
- en
license:
- other
multilinguality:
- monolingual
size_categories:
- n<1K
pretty_name: relentless
---

# Dataset Card for "cardiffnlp/relentless"

***RelEntLess*** is a new benchmark, in which entity pairs have to be ranked according to how much they satisfy a given graded relation.
Essentially, the task is a ranking task where we provide five prototypical examples to each relation. Following brief description of each relation type 
is used in our baseline in addition to the prototypical examples.
Please check our paper "[A RelEntLess Benchmark for Modelling Graded Relations between Named Entities](paper-link)" for more detail.
THe test set is private at the moment.

```python
{
    "friend/ally of": "entities that are friends or allies",
    "competitor/rival of": "entities that are competitors or rivals",
    "known for": "examples of what entities are known for",
    "influenced by": "what has influenced different entities",
    "similar to": "examples of entities that are similar"
}
```




## Dataset Description
- **Repository:** [https://huggingface.co/datasets/cardiffnlp/relentless](https://huggingface.co/datasets/cardiffnlp/relentless)
- **Paper:** [A RelEntLess Benchmark for Modelling Graded Relations between Named Entities](paper-link)
- **Dataset:** [https://huggingface.co/datasets/cardiffnlp/relentless](https://huggingface.co/datasets/cardiffnlp/relentless)

### Dataset Summary


| relation_type        |   val. |   test |
|:---------------------|-------:|-------:|
| friend/ally of       |     20 |     92 |
| competitor/rival of  |     20 |     89 |
| known for            |     20 |    108 |
| influenced by        |     20 |     93 |
| similar to           |     20 |     93 |

## Dataset Structure
### Data Instances

```python
{
    "pairs": [["Le Corbusier", "purism art"], ["Sean Connery", "Finding Forrester"], ...],
    "scores_all": [[4.0, 5.0, 3.0, 4.0, 5.0, 3.0, 5.0], [4.0, 5.0, 2, 5.0, 5.0, 4.0, 2], ...],
    "scores_mean": [4.142857142857143, 3.857142857142857, 4.857142857142857, ...],
    "relation_type": "known for",
    "ranks": [8.5, 11, 5, 14, 15, 5, 20, 13, 1.5, 18, 10, 1.5, 17, ...],
    "prototypical_examples": [ [ "Russell Crowe", "Gladiator" ], [ "Cadbury", "chocolate" ],...]
}
```

### Citation Information
```
TBA
```

### LICENSE
The LICENSE of all the resources are under [CC-BY-NC-4.0](./LICENSE). Thus, they are freely available for academic purpose or individual research, but restricted for commercial use.