gouki510 commited on
Commit
d6a3882
·
verified ·
1 Parent(s): 89b917c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -4
README.md CHANGED
@@ -31,10 +31,21 @@ Each instance in the dataset is stored in JSON format with the following structu
31
 
32
  ```json
33
  {
34
- "target_word": "space",
35
- "context1": "The astronauts walked in outer \"space\" without a tether.",
36
- "context2": "The \"space\" between his teeth.",
37
- "label": 0
 
 
 
 
 
 
 
 
 
 
 
38
  }
39
  ```
40
 
 
31
 
32
  ```json
33
  {
34
+ "id": "EN_22",
35
+ "context_1": "They stopped at an open space in the jungle.",
36
+ "context_2": "The astronauts walked in outer space without a tether.",
37
+ "target_word": "space",
38
+ "pos": "N",
39
+ "target_word_location_1": {
40
+ "char_start": 24,
41
+ "char_end": 29
42
+ },
43
+ "target_word_location_2": {
44
+ "char_start": 31,
45
+ "char_end": 36
46
+ },
47
+ "language": "EN",
48
+ "label": 0
49
  }
50
  ```
51