readme
Browse files
README.md
CHANGED
@@ -11,10 +11,14 @@ pretty_name: TBA
|
|
11 |
---
|
12 |
|
13 |
# Dataset Card for "cardiffnlp/relentless"
|
|
|
|
|
|
|
|
|
14 |
## Dataset Description
|
15 |
- **Repository:** [https://huggingface.co/datasets/cardiffnlp/relentless](https://huggingface.co/datasets/cardiffnlp/relentless)
|
16 |
- **Paper:** TBA
|
17 |
-
- **Dataset:**
|
18 |
|
19 |
### Dataset Summary
|
20 |
|
@@ -30,6 +34,16 @@ pretty_name: TBA
|
|
30 |
## Dataset Structure
|
31 |
### Data Instances
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
### Citation Information
|
35 |
```
|
|
|
11 |
---
|
12 |
|
13 |
# Dataset Card for "cardiffnlp/relentless"
|
14 |
+
|
15 |
+
***RelEntLess*** is a new benchmark, in which entity pairs have to be ranked according to how much they satisfy a given graded relation.
|
16 |
+
|
17 |
+
|
18 |
## Dataset Description
|
19 |
- **Repository:** [https://huggingface.co/datasets/cardiffnlp/relentless](https://huggingface.co/datasets/cardiffnlp/relentless)
|
20 |
- **Paper:** TBA
|
21 |
+
- **Dataset:** [https://huggingface.co/datasets/cardiffnlp/relentless](https://huggingface.co/datasets/cardiffnlp/relentless)
|
22 |
|
23 |
### Dataset Summary
|
24 |
|
|
|
34 |
## Dataset Structure
|
35 |
### Data Instances
|
36 |
|
37 |
+
```python
|
38 |
+
{
|
39 |
+
"pairs": [["Le Corbusier", "purism art"], ["Sean Connery", "Finding Forrester"], ...],
|
40 |
+
"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], ...],
|
41 |
+
"scores_mean": [4.142857142857143, 3.857142857142857, 4.857142857142857, ...],
|
42 |
+
"relation_type": "is known for",
|
43 |
+
"ranks": [8.5, 11, 5, 14, 15, 5, 20, 13, 1.5, 18, 10, 1.5, 17, ...],
|
44 |
+
"prototypical_examples": [["Extinction Rebellion", "Greta Thunberg"], ["Israel", "Palestine"],...]
|
45 |
+
}
|
46 |
+
```
|
47 |
|
48 |
### Citation Information
|
49 |
```
|