Datasets:
Tasks:
Token Classification
Modalities:
Text
Sub-tasks:
named-entity-recognition
Languages:
English
Size:
1K - 10K
License:
Update README.md
Browse files
README.md
CHANGED
@@ -47,11 +47,15 @@ An example of `train` looks as follows.
|
|
47 |
The label2id dictionary can be found at [here](https://huggingface.co/datasets/tner/fin/raw/main/dataset/label.json).
|
48 |
```python
|
49 |
{
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
|
|
|
|
|
|
|
|
55 |
}
|
56 |
```
|
57 |
|
|
|
47 |
The label2id dictionary can be found at [here](https://huggingface.co/datasets/tner/fin/raw/main/dataset/label.json).
|
48 |
```python
|
49 |
{
|
50 |
+
"O": 0,
|
51 |
+
"B-PER": 1,
|
52 |
+
"B-LOC": 2,
|
53 |
+
"B-ORG": 3,
|
54 |
+
"B-MISC": 4,
|
55 |
+
"I-PER": 5,
|
56 |
+
"I-LOC": 6,
|
57 |
+
"I-ORG": 7,
|
58 |
+
"I-MISC": 8
|
59 |
}
|
60 |
```
|
61 |
|