asahi417 commited on
Commit
2d99248
1 Parent(s): 676ab44
Files changed (1) hide show
  1. README.md +16 -11
README.md CHANGED
@@ -22,14 +22,13 @@ pretty_name: BioNLP2004
22
  - **Paper:** [https://aclanthology.org/U15-1010.pdf](https://aclanthology.org/U15-1010.pdf)
23
  - **Dataset:** BioNLP2004
24
  - **Domain:** Biochemical
25
- - **Number of Entity:** 4
26
 
27
  ### Dataset Summary
28
  BioNLP2004 NER dataset formatted in a part of [TNER](https://github.com/asahi417/tner) project.
29
- Original BioNLP2004 dataset contains training and test.
30
- We take a half amount of test instances randomly from the training set and create a validation set with it.
31
 
32
- - Entity Types:`ORG`, `LOC`, `PER`, `MISC`
33
 
34
  ## Dataset Structure
35
 
@@ -38,8 +37,8 @@ An example of `train` looks as follows.
38
 
39
  ```
40
  {
41
- "tags": [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
42
- "tokens": ["1", ".", "1", ".", "4", "Borrower", "engages", "in", "criminal", "conduct", "or", "is", "involved", "in", "criminal", "activities", ";"]
43
  }
44
  ```
45
 
@@ -48,10 +47,16 @@ The label2id dictionary can be found at [here](https://huggingface.co/datasets/t
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
 
@@ -59,7 +64,7 @@ The label2id dictionary can be found at [here](https://huggingface.co/datasets/t
59
 
60
  | name |train|validation|test|
61
  |---------|----:|---------:|---:|
62
- |fin |861 | 303| 303|
63
 
64
  ### Citation Information
65
 
 
22
  - **Paper:** [https://aclanthology.org/U15-1010.pdf](https://aclanthology.org/U15-1010.pdf)
23
  - **Dataset:** BioNLP2004
24
  - **Domain:** Biochemical
25
+ - **Number of Entity:** 5
26
 
27
  ### Dataset Summary
28
  BioNLP2004 NER dataset formatted in a part of [TNER](https://github.com/asahi417/tner) project.
29
+ BioNLP2004 dataset contains training and test only, so we randomly sample a half size of test instances from the training set to create validation set.
 
30
 
31
+ - Entity Types: `DNA`, `protein`, `cell_type`, `cell_line`, `RNA`
32
 
33
  ## Dataset Structure
34
 
 
37
 
38
  ```
39
  {
40
+ 'tags': [0, 0, 0, 0, 3, 0, 9, 10, 0, 0, 0, 0, 0, 7, 8, 0, 3, 0, 0, 9, 10, 10, 0, 0],
41
+ 'tokens': ['In', 'the', 'presence', 'of', 'Epo', ',', 'c-myb', 'mRNA', 'declined', 'and', '20', '%', 'of', 'K562', 'cells', 'synthesized', 'Hb', 'regardless', 'of', 'antisense', 'myb', 'RNA', 'expression', '.']
42
  }
43
  ```
44
 
 
47
  ```python
48
  {
49
  "O": 0,
50
+ "B-DNA": 1,
51
+ "I-DNA": 2,
52
+ "B-protein": 3,
53
+ "I-protein": 4,
54
+ "B-cell_type": 5,
55
+ "I-cell_type": 6,
56
+ "B-cell_line": 7,
57
+ "I-cell_line": 8,
58
+ "B-RNA": 9,
59
+ "I-RNA": 10
60
  }
61
  ```
62
 
 
64
 
65
  | name |train|validation|test|
66
  |---------|----:|---------:|---:|
67
+ |fin |16619 | 1927| 3856|
68
 
69
  ### Citation Information
70