Datasets:

Modalities:
Text
Languages:
English
Libraries:
Datasets
License:
asahi417 commited on
Commit
a500767
1 Parent(s): d33cdda
Files changed (1) hide show
  1. README.md +9 -7
README.md CHANGED
@@ -33,14 +33,16 @@ This dataset contains 5 different word analogy questions used in [Analogy Langua
33
  ### Data Instances
34
  An example of `test` looks as follows.
35
  ```
36
- {"stem": ["raphael", "painter"],
37
- "answer": 2,
38
- "choice": [["andersen", "plato"],
39
- ["reading", "berkshire"],
40
- ["marx", "philosopher"],
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
 
 
33
  ### Data Instances
34
  An example of `test` looks as follows.
35
  ```
36
+ {
37
+ "stem": ["raphael", "painter"],
38
+ "answer": 2,
39
+ "choice": [["andersen", "plato"],
40
+ ["reading", "berkshire"],
41
+ ["marx", "philosopher"],
42
+ ["tolstoi", "edison"]]
43
+ }
44
  ```
45
+ The `stem` is the query word pair, `choice` has word pair candidates,
46
  and `answer` indicates the index of correct candidate which starts from `0`.
47
  All data is lowercased except Google dataset.
48