Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -345,7 +345,7 @@ An example of 'train' looks as follows:
|
|
345 |
#### ner
|
346 |
- `id`: the instance id of this sentence, a `string` feature.
|
347 |
- `tokens`: the list of tokens of this sentence, obtained with spaCy, a `list` of `string` features.
|
348 |
-
- `tags`: the
|
349 |
|
350 |
```python
|
351 |
{"O": 0, "B-Material": 1, "I-Material": 2, "B-Process": 3, "I-Process": 4, "B-Task": 5, "I-Task": 6}
|
|
|
345 |
#### ner
|
346 |
- `id`: the instance id of this sentence, a `string` feature.
|
347 |
- `tokens`: the list of tokens of this sentence, obtained with spaCy, a `list` of `string` features.
|
348 |
+
- `tags`: the list of ner tags of this sentence, a `list` of classification labels.
|
349 |
|
350 |
```python
|
351 |
{"O": 0, "B-Material": 1, "I-Material": 2, "B-Process": 3, "I-Process": 4, "B-Task": 5, "I-Task": 6}
|