File size: 3,124 Bytes
6c5796c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a97a12a
6c5796c
a97a12a
6c5796c
a97a12a
6c5796c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bd75dd1
6c5796c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
---
language:
- ro
license: cc-by-4.0
task_categories:
- token-classification
task_ids:
- named-entity-recognition
tags:
- ner
- romanian
- biomedical
- simonero
configs:
- config_name: default
  data_files:
  - split: train
    path: train.parquet
  - split: validation
    path: validation.parquet
  - split: test
    path: test.parquet
dataset_info:
  features:
  - name: id
    dtype: int32
  - name: tokens
    sequence: string
  - name: ner_tags
    sequence:
      class_label:
        names:
          '0': O
          '1': B-ANAT
          '2': B-CHEM
          '3': B-DISO
          '4': B-PROC
          '5': I-ANAT
          '6': I-CHEM
          '7': I-DISO
          '8': I-PROC
  splits:
  - name: train
    num_examples: 3747
  - name: validation
    num_examples: 443
  - name: test
    num_examples: 491
---

# SiMoNERo

Romanian biomedical Named Entity Recognition dataset, converted to HuggingFace format.

Entity types: **ANAT** (body parts), **CHEM** (chemicals & drugs), **DISO** (disorders), **PROC** (procedures).

## Splits

| Split | Sentences |
|-------|-----------|
| train | 3,747 |
| validation | 443 |
| test | 491 |

## NER Tags

| ID | Tag |
|----|-----|
| 0 | `O` |
| 1 | `B-ANAT` |
| 2 | `B-CHEM` |
| 3 | `B-DISO` |
| 4 | `B-PROC` |
| 5 | `I-ANAT` |
| 6 | `I-CHEM` |
| 7 | `I-DISO` |
| 8 | `I-PROC` |

## Usage

```python
from datasets import load_dataset

ds = load_dataset("xd-br0/SiMoNERo")

print(ds["train"][0])
print(ds["train"].features["ner_tags"].feature.names)
# ['O', 'B-ANAT', 'B-CHEM', 'B-DISO', 'B-PROC', 'I-ANAT', 'I-CHEM', 'I-DISO', 'I-PROC']
```

## Citation

```bibtex
@inproceedings{mititelu-mitrofan-2020-simonero,
    title     = "The {R}omanian Medical Treebank -- {SiMoNERo}",
    author    = "Mititelu, Verginica Barbu and Mitrofan, Maria",
    booktitle = "Proceedings of the 15th International Conference on Linguistic
                 Resources and Tools for Natural Language Processing (ConsILR-2020)",
    year      = "2020",
    pages     = "7--16",
    ISSN      = "1843-911X"
}

@inproceedings{mitrofan-etal-2019-monero,
    title     = "{M}o{NER}o: a Biomedical Gold Standard Corpus for the {R}omanian Language",
    author    = "Mitrofan, Maria and Barbu Mititelu, Verginica and Mitrofan, Grigorina",
    booktitle = "Proceedings of the 18th BioNLP Workshop and Shared Task",
    month     = aug,
    year      = "2019",
    address   = "Florence, Italy",
    publisher = "Association for Computational Linguistics",
    url       = "https://aclanthology.org/W19-5008/",
    pages     = "71--79"
}

@inproceedings{mitrofan-pais-2022-improving,
    title     = "Improving {R}omanian {B}io{NER} Using a Biologically Inspired System",
    author    = "Mitrofan, Maria and Pais, Vasile",
    booktitle = "Proceedings of the 21st Workshop on Biomedical Language Processing",
    month     = may,
    year      = "2022",
    address   = "Dublin, Ireland",
    publisher = "Association for Computational Linguistics",
    url       = "https://aclanthology.org/2022.bionlp-1.30/",
    doi       = "10.18653/v1/2022.bionlp-1.30",
    pages     = "316--322"
}
```