Mardiyyah commited on
Commit
38b1103
·
verified ·
1 Parent(s): 2db5987

Add repo card

Browse files
Files changed (1) hide show
  1. README.md +87 -0
README.md CHANGED
@@ -1,4 +1,9 @@
1
  ---
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: tags
@@ -27,3 +32,85 @@ configs:
27
  - split: validation
28
  path: data/validation-*
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ task_categories:
4
+ - token-classification
5
+ task_ids:
6
+ - named-entity-recognition
7
  dataset_info:
8
  features:
9
  - name: tags
 
32
  - split: validation
33
  path: data/validation-*
34
  ---
35
+
36
+ ---
37
+ pretty_name: BioNLP2004 Filtered
38
+ ---
39
+
40
+ # Dataset Card for BioNLP2004 Filtered
41
+
42
+ This dataset is an adaptation of the original [tner/bionlp2004](https://huggingface.co/datasets/tner/bionlp2004) dataset, specifically tailored for projects focusing on `CellLine` and `CellType` entities.
43
+
44
+ ## Dataset Description
45
+
46
+ The original BioNLP2004 dataset is a named entity recognition (NER) dataset in the biomedical domain, annotated with various entity types such as DNA, Protein, Cell_type, Cell_line, and RNA.
47
+
48
+ This adapted version, `OTAR3088/BioNLP_Filtered`, has undergone the following modifications:
49
+
50
+ 1. **Entity Filtering**: The dataset has been filtered to retain only `CellLine` and `CellType` entities. All other original entity types (DNA, Protein, RNA) have been converted to the 'O' (Outside) tag.
51
+ 2. **Nomenclature Change**: The naming convention for the retained entities has been updated to align with project-specific styling. For instance, `cell_line` entities from the original dataset are now represented as `CellLine`, and `cell_type` as `CellType`.
52
+
53
+ ## Dataset Structure
54
+
55
+ The dataset consists of three splits: `train`, `test`, and `validation`.
56
+
57
+ Each example in the dataset contains:
58
+
59
+ * `tokens`: A list of strings representing the tokens in a sentence.
60
+ * `tags`: A list of strings representing the IOB (Inside, Outside, Beginning) tags for each token. The tags are now limited to 'O', 'B-CellLine', 'I-CellLine', 'B-CellType', and 'I-CellType'.
61
+
62
+ ### Example
63
+
64
+ ```json
65
+ {
66
+ "tags": [
67
+ "O",
68
+ "B-CellLine",
69
+ "O",
70
+ "O",
71
+ "O",
72
+ "O",
73
+ "O",
74
+ "O",
75
+ "O",
76
+ "O",
77
+ "O",
78
+ "O",
79
+ "O",
80
+ "O",
81
+ "O",
82
+ "O",
83
+ "O",
84
+ "O",
85
+ "O",
86
+ "O",
87
+ "O",
88
+ "O",
89
+ "O"
90
+ ],
91
+ "tokens": [
92
+ "Since",
93
+ "HUVECs",
94
+ "released",
95
+ "superoxide",
96
+ "anions",
97
+ "in",
98
+ "response",
99
+ "to",
100
+ "TNF",
101
+ ",",
102
+ "and",
103
+ "H2O2",
104
+ "induces",
105
+ "VCAM-1",
106
+ ",",
107
+ "PDTC",
108
+ "may",
109
+ "act",
110
+ "as",
111
+ "a",
112
+ "radical",
113
+ "scavenger",
114
+ "."
115
+ ]
116
+ }