Datasets:

Modalities:
Text
Languages:
English
Libraries:
Datasets
License:
asahi417 commited on
Commit
d33cdda
1 Parent(s): 11f0c50
Files changed (1) hide show
  1. README.md +37 -13
README.md CHANGED
@@ -1,5 +1,37 @@
1
- # Analogy Test Dataset
2
- This dataset contains five different word analogy datasets. Each contains jsonline files for validation and test, in which each line consists of following dictionary,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ```
4
  {"stem": ["raphael", "painter"],
5
  "answer": 2,
@@ -9,18 +41,10 @@ This dataset contains five different word analogy datasets. Each contains jsonli
9
  ["tolstoi", "edison"]]}
10
  ```
11
  where `stem` is the query word pair, `choice` has word pair candidates,
12
- and `answer` indicates the index of correct candidate which starts from `0`. Data statistics are summarized as below.
13
-
14
- | Dataset | Size (valid/test) | Num of choice | Num of relation group | Original Reference |
15
- |---------|------------------:|--------------:|----------------------:|:--------------------------------------------------------------------------:|
16
- | sat_full| -/374 | 5 | 2 | [Turney (2005)](https://arxiv.org/pdf/cs/0508053.pdf) |
17
- | sat | 37/337 | 5 | 2 | [Turney (2005)](https://arxiv.org/pdf/cs/0508053.pdf) |
18
- | u2 | 24/228 | 5,4,3 | 9 | [EnglishForEveryone](https://englishforeveryone.org/Topics/Analogies.html) |
19
- | u4 | 48/432 | 5,4,3 | 5 | [EnglishForEveryone](https://englishforeveryone.org/Topics/Analogies.html) |
20
- | google | 50/500 | 4 | 2 | [Mikolov et al., (2013)](https://www.aclweb.org/anthology/N13-1090.pdf) |
21
- | bats | 199/1799 | 4 | 3 | [Gladkova et al., (2016)](https://www.aclweb.org/anthology/N18-2017.pdf) |
22
 
23
- All data is lowercased except Google dataset. Please read [our paper](https://arxiv.org/abs/2105.04949) for more information about the dataset and cite it if you use the dataset:
24
  ```
25
  @inproceedings{ushio-etal-2021-bert-is,
26
  title ={{BERT} is to {NLP} what {A}lex{N}et is to {CV}: {C}an {P}re-{T}rained {L}anguage {M}odels {I}dentify {A}nalogies?},
 
1
+ ---
2
+ language:
3
+ - en
4
+ license:
5
+ - other
6
+ multilinguality:
7
+ - monolingual
8
+ size_categories:
9
+ - n<1K
10
+ pretty_name: Analogy Question
11
+ ---
12
+
13
+ # Dataset Card for "relbert/analogy_questions"
14
+ ## Dataset Description
15
+ - **Repository:** [RelBERT](https://github.com/asahi417/relbert)
16
+ - **Paper:** [https://aclanthology.org/2021.acl-long.280/](https://aclanthology.org/2021.acl-long.280/)
17
+ - **Dataset:** Analogy Questions
18
+
19
+ ### Dataset Summary
20
+ This dataset contains 5 different word analogy questions used in [Analogy Language Model](https://aclanthology.org/2021.acl-long.280/).
21
+
22
+ | name | Size (valid/test) | Num of choice | Num of relation group | Original Reference |
23
+ |---------|------------------:|--------------:|----------------------:|:--------------------------------------------------------------------------:|
24
+ | `sat_full`| -/374 | 5 | 2 | [Turney (2005)](https://arxiv.org/pdf/cs/0508053.pdf) |
25
+ | `sat` | 37/337 | 5 | 2 | [Turney (2005)](https://arxiv.org/pdf/cs/0508053.pdf) |
26
+ | `u2` | 24/228 | 5,4,3 | 9 | [EnglishForEveryone](https://englishforeveryone.org/Topics/Analogies.html) |
27
+ | `u4` | 48/432 | 5,4,3 | 5 | [EnglishForEveryone](https://englishforeveryone.org/Topics/Analogies.html) |
28
+ | `google` | 50/500 | 4 | 2 | [Mikolov et al., (2013)](https://www.aclweb.org/anthology/N13-1090.pdf) |
29
+ | `bats` | 199/1799 | 4 | 3 | [Gladkova et al., (2016)](https://www.aclweb.org/anthology/N18-2017.pdf) |
30
+
31
+
32
+ ## Dataset Structure
33
+ ### Data Instances
34
+ An example of `test` looks as follows.
35
  ```
36
  {"stem": ["raphael", "painter"],
37
  "answer": 2,
 
41
  ["tolstoi", "edison"]]}
42
  ```
43
  where `stem` is the query word pair, `choice` has word pair candidates,
44
+ and `answer` indicates the index of correct candidate which starts from `0`.
45
+ All data is lowercased except Google dataset.
 
 
 
 
 
 
 
 
46
 
47
+ ### Citation Information
48
  ```
49
  @inproceedings{ushio-etal-2021-bert-is,
50
  title ={{BERT} is to {NLP} what {A}lex{N}et is to {CV}: {C}an {P}re-{T}rained {L}anguage {M}odels {I}dentify {A}nalogies?},