init
Browse files
README.md
CHANGED
@@ -23,32 +23,22 @@ Five different datasets (`BLESS`, `CogALexV`, `EVALution`, `K&H+N`, `ROOT09`) fo
|
|
23 |
### Dataset Summary
|
24 |
This dataset contains 5 different word analogy questions used in [Analogy Language Model](https://aclanthology.org/2021.acl-long.280/).
|
25 |
|
26 |
-
| name
|
27 |
-
|
28 |
-
| `
|
29 |
-
| `
|
30 |
-
| `
|
31 |
-
| `
|
32 |
-
| `
|
33 |
-
| `bats` | 199/1799 | 4 | 3 | [Gladkova et al., (2016)](https://www.aclweb.org/anthology/N18-2017.pdf) |
|
34 |
|
35 |
|
36 |
## Dataset Structure
|
37 |
### Data Instances
|
38 |
-
An example
|
39 |
```
|
40 |
-
{
|
41 |
-
"stem": ["raphael", "painter"],
|
42 |
-
"answer": 2,
|
43 |
-
"choice": [["andersen", "plato"],
|
44 |
-
["reading", "berkshire"],
|
45 |
-
["marx", "philosopher"],
|
46 |
-
["tolstoi", "edison"]]
|
47 |
-
}
|
48 |
```
|
49 |
-
|
50 |
-
and `answer` indicates the index of correct candidate which starts from `0`.
|
51 |
-
All data is lowercased except Google dataset.
|
52 |
|
53 |
### Citation Information
|
54 |
```
|
|
|
23 |
### Dataset Summary
|
24 |
This dataset contains 5 different word analogy questions used in [Analogy Language Model](https://aclanthology.org/2021.acl-long.280/).
|
25 |
|
26 |
+
| name | train | validation | test |
|
27 |
+
|---------------|------:|-------:|-----:|
|
28 |
+
| `BLESS` | 18582 | 1327 | 6637 |
|
29 |
+
| `CogALexV` | 3054 | - | 4260 |
|
30 |
+
| `EVALution` | 5160 | 372 | 1846 |
|
31 |
+
| `K&H+N` | 40256 | 2876 | 14377 |
|
32 |
+
| `ROOT09` | 8933 | 638 | 3191 |
|
|
|
33 |
|
34 |
|
35 |
## Dataset Structure
|
36 |
### Data Instances
|
37 |
+
An example looks as follows.
|
38 |
```
|
39 |
+
{"head": "turtle", "tail": "live", "relation": "event"}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
```
|
41 |
+
The `stem` and `tail` are the word pair and `relation` is the corresponding relation label.
|
|
|
|
|
42 |
|
43 |
### Citation Information
|
44 |
```
|