stefan-it commited on
Commit
7c171cf
1 Parent(s): 7059d85

readme: add initial version

Browse files
Files changed (1) hide show
  1. README.md +43 -3
README.md CHANGED
@@ -1,3 +1,43 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - token-classification
5
+ language:
6
+ - ro
7
+ tags:
8
+ - ner
9
+ - flair
10
+ ---
11
+
12
+ # HistNERo (CoNLL)
13
+
14
+ This repository contains the Historical Romanian Named Entity Recognition (HistNERo) dataset in a CoNLL-compatible format.
15
+
16
+ The dataset uses the reference dataset from [`avramandrei/histnero`](https://huggingface.co/datasets/avramandrei/histnero) and introduces the following features:
17
+
18
+ * CoNLL-like dataset splits (see [`train.tsv`](train.tsv), [`dev.tsv`](dev.tsv) and [`test.tsv`](test.tsv)), including metadata
19
+ * Document-wise grouping
20
+ * Flair Dataset Loader, see the [`FlairDatasetExample.ipynb`](FlairDatasetExample.ipynb) example notebook
21
+
22
+ The dataset has 10,026 sentences (i.e. 8,020 train, 1,003 valid and 1,003 train) annotated with five named entities:
23
+
24
+ * `PERSON`
25
+ * `ORGANIZATION`
26
+ * `LOCATION`
27
+ * `PRODUCT`
28
+ * `DATE`
29
+
30
+ More details can be found in the [HistNERo: Historical Named Entity Recognition for the Romanian Language](https://arxiv.org/abs/2405.00155) paper.
31
+
32
+ # Caveats
33
+
34
+ We provide a CoNLL-compatible format of the original HistNERo dataset. Thus, there could still be some errors in the dataset transformation. Please open an issue if you
35
+ find any problems!
36
+
37
+ # License
38
+
39
+ We use the original MIT license from the authors' dataset repository.
40
+
41
+ # Acknowledgements
42
+
43
+ We heavily thank Andrei-Marius Avram, Andreea Iuga, George-Vlad Manolache, Vlad-Cristian Matei, Răzvan-Gabriel Micliuş, Vlad-Andrei Muntean, Manuel-Petru Sorlescu, Dragoş-Andrei Şerban, Adrian-Dinu Urse, Vasile Păiş and Dumitru-Clementin Cercel for releasing this great dataset resource!