asahi417 commited on
Commit
9862d1e
·
1 Parent(s): 5cdf1f9
Files changed (1) hide show
  1. README.md +10 -20
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 | Size (valid/test) | Num of choice | Num of relation group | Original Reference |
27
- |---------|------------------:|--------------:|----------------------:|:--------------------------------------------------------------------------:|
28
- | `sat_full`| -/374 | 5 | 2 | [Turney (2005)](https://arxiv.org/pdf/cs/0508053.pdf) |
29
- | `sat` | 37/337 | 5 | 2 | [Turney (2005)](https://arxiv.org/pdf/cs/0508053.pdf) |
30
- | `u2` | 24/228 | 5,4,3 | 9 | [EnglishForEveryone](https://englishforeveryone.org/Topics/Analogies.html) |
31
- | `u4` | 48/432 | 5,4,3 | 5 | [EnglishForEveryone](https://englishforeveryone.org/Topics/Analogies.html) |
32
- | `google` | 50/500 | 4 | 2 | [Mikolov et al., (2013)](https://www.aclweb.org/anthology/N13-1090.pdf) |
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 of `test` looks as follows.
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
- where `stem` is the query word pair, `choice` has word pair candidates,
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
  ```