asahi417 commited on
Commit
9a94826
·
1 Parent(s): 7040a77

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -5
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
- "O": 0,
51
- "I-ORG": 1,
52
- "I-LOC": 2,
53
- "I-PER": 3,
54
- "I-MISC": 4
 
 
 
 
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