Datasets:
Update files from the datasets library (from 1.16.0)
Browse filesRelease notes: https://github.com/huggingface/datasets/releases/tag/1.16.0
README.md
CHANGED
@@ -19,6 +19,7 @@ task_ids:
|
|
19 |
- named-entity-recognition
|
20 |
- part-of-speech-tagging
|
21 |
paperswithcode_id: conll-2003
|
|
|
22 |
---
|
23 |
|
24 |
# Dataset Card for "conll2003"
|
@@ -113,9 +114,29 @@ The data fields are the same among all splits.
|
|
113 |
#### conll2003
|
114 |
- `id`: a `string` feature.
|
115 |
- `tokens`: a `list` of `string` features.
|
116 |
-
- `pos_tags`: a `list` of classification labels
|
117 |
-
|
118 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
|
120 |
### Data Splits
|
121 |
|
|
|
19 |
- named-entity-recognition
|
20 |
- part-of-speech-tagging
|
21 |
paperswithcode_id: conll-2003
|
22 |
+
pretty_name: CoNLL-2003
|
23 |
---
|
24 |
|
25 |
# Dataset Card for "conll2003"
|
|
|
114 |
#### conll2003
|
115 |
- `id`: a `string` feature.
|
116 |
- `tokens`: a `list` of `string` features.
|
117 |
+
- `pos_tags`: a `list` of classification labels (`int`). Full tagset with indices:
|
118 |
+
|
119 |
+
```python
|
120 |
+
{'"': 0, "''": 1, '#': 2, '$': 3, '(': 4, ')': 5, ',': 6, '.': 7, ':': 8, '``': 9, 'CC': 10, 'CD': 11, 'DT': 12,
|
121 |
+
'EX': 13, 'FW': 14, 'IN': 15, 'JJ': 16, 'JJR': 17, 'JJS': 18, 'LS': 19, 'MD': 20, 'NN': 21, 'NNP': 22, 'NNPS': 23,
|
122 |
+
'NNS': 24, 'NN|SYM': 25, 'PDT': 26, 'POS': 27, 'PRP': 28, 'PRP$': 29, 'RB': 30, 'RBR': 31, 'RBS': 32, 'RP': 33,
|
123 |
+
'SYM': 34, 'TO': 35, 'UH': 36, 'VB': 37, 'VBD': 38, 'VBG': 39, 'VBN': 40, 'VBP': 41, 'VBZ': 42, 'WDT': 43,
|
124 |
+
'WP': 44, 'WP$': 45, 'WRB': 46}
|
125 |
+
```
|
126 |
+
|
127 |
+
- `chunk_tags`: a `list` of classification labels (`int`). Full tagset with indices:
|
128 |
+
|
129 |
+
```python
|
130 |
+
{'O': 0, 'B-ADJP': 1, 'I-ADJP': 2, 'B-ADVP': 3, 'I-ADVP': 4, 'B-CONJP': 5, 'I-CONJP': 6, 'B-INTJ': 7, 'I-INTJ': 8,
|
131 |
+
'B-LST': 9, 'I-LST': 10, 'B-NP': 11, 'I-NP': 12, 'B-PP': 13, 'I-PP': 14, 'B-PRT': 15, 'I-PRT': 16, 'B-SBAR': 17,
|
132 |
+
'I-SBAR': 18, 'B-UCP': 19, 'I-UCP': 20, 'B-VP': 21, 'I-VP': 22}
|
133 |
+
```
|
134 |
+
|
135 |
+
- `ner_tags`: a `list` of classification labels (`int`). Full tagset with indices:
|
136 |
+
|
137 |
+
```python
|
138 |
+
{'O': 0, 'B-PER': 1, 'I-PER': 2, 'B-ORG': 3, 'I-ORG': 4, 'B-LOC': 5, 'I-LOC': 6, 'B-MISC': 7, 'I-MISC': 8}
|
139 |
+
```
|
140 |
|
141 |
### Data Splits
|
142 |
|