Update README.md
Browse files
README.md
CHANGED
@@ -31,7 +31,6 @@ license: cc
|
|
31 |
- [Supported Tasks](#supported-tasks-and-leaderboards)
|
32 |
- [Languages](#languages)
|
33 |
- [Dataset Structure](#dataset-structure)
|
34 |
-
- [Data Instances](#data-instances)
|
35 |
- [Data Fields](#data-instances)
|
36 |
- [Data Splits](#data-instances)
|
37 |
- [Dataset Creation](#dataset-creation)
|
@@ -78,13 +77,20 @@ The only supported language is spanish (es).
|
|
78 |
|
79 |
## Dataset Structure
|
80 |
|
81 |
-
### Data Instances
|
82 |
-
|
83 |
-
[Needs More Information]
|
84 |
-
|
85 |
### Data Fields
|
86 |
|
87 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
|
89 |
### Data Splits
|
90 |
|
|
|
31 |
- [Supported Tasks](#supported-tasks-and-leaderboards)
|
32 |
- [Languages](#languages)
|
33 |
- [Dataset Structure](#dataset-structure)
|
|
|
34 |
- [Data Fields](#data-instances)
|
35 |
- [Data Splits](#data-instances)
|
36 |
- [Dataset Creation](#dataset-creation)
|
|
|
77 |
|
78 |
## Dataset Structure
|
79 |
|
|
|
|
|
|
|
|
|
80 |
### Data Fields
|
81 |
|
82 |
+
The dictionary to map the id to the Label names is:
|
83 |
+
{
|
84 |
+
0: 'O',
|
85 |
+
1: 'B-PER',
|
86 |
+
2: 'I-PER',
|
87 |
+
3: 'B-ORG',
|
88 |
+
4: 'I-ORG',
|
89 |
+
5: 'B-LOC',
|
90 |
+
6: 'I-LOC',
|
91 |
+
7: 'B-MISC',
|
92 |
+
8: 'I-MISC'
|
93 |
+
}
|
94 |
|
95 |
### Data Splits
|
96 |
|