Datasets:

Modalities:
Text
Formats:
json
ArXiv:
Libraries:
Datasets
pandas
License:
chiayewken commited on
Commit
c323ad4
·
1 Parent(s): 37a970d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -3
README.md CHANGED
@@ -21,7 +21,7 @@ English.
21
 
22
  ### Data Fields
23
 
24
- - **text:** Sentence text.
25
  - **entities:** List of each entity span. The span indices correspond to each token in the space-separated text (inclusive-start and exclusive-end index)
26
  - **relations:** List of each relationship label between the head and tail entity spans. Each relation contains a list of qualifiers where each qualifier has the value entity span and qualifier label.
27
 
@@ -31,8 +31,7 @@ An instance of the dataset is as the following:
31
 
32
  ```
33
  {
34
- "text": "Acadia University is a predominantly undergraduate university located in Wolfville , Nova Scotia , Canada with some graduate program
35
- s at the master ' s level and one at the doctoral level .",
36
  "entities": [
37
  {'span': (0, 2), 'label': 'Entity'},
38
  {'span': (9, 13), 'label': 'Entity'},
 
21
 
22
  ### Data Fields
23
 
24
+ - **tokens:** Sentence text tokens.
25
  - **entities:** List of each entity span. The span indices correspond to each token in the space-separated text (inclusive-start and exclusive-end index)
26
  - **relations:** List of each relationship label between the head and tail entity spans. Each relation contains a list of qualifiers where each qualifier has the value entity span and qualifier label.
27
 
 
31
 
32
  ```
33
  {
34
+ "tokens": ['Acadia', 'University', 'is', 'a', 'predominantly', 'undergraduate', 'university', 'located', 'in', 'Wolfville', ',', 'Nova', 'Scotia', ',', 'Canada', 'with', 'some', 'graduate', 'programs', 'at', 'the', 'master', "'", 's', 'level', 'and', 'one', 'at', 'the', 'doctoral', 'level', '.'],
 
35
  "entities": [
36
  {'span': (0, 2), 'label': 'Entity'},
37
  {'span': (9, 13), 'label': 'Entity'},