joao-luz commited on
Commit
92e00c2
·
verified ·
1 Parent(s): 34421e1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -1
README.md CHANGED
@@ -44,4 +44,37 @@ language:
44
  pretty_name: MariNER
45
  size_categories:
46
  - 1K<n<10K
47
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  pretty_name: MariNER
45
  size_categories:
46
  - 1K<n<10K
47
+ ---
48
+
49
+ This is the MariNER (Mapeamento e Anotações de Registros hIstóricos para NER) dataset, a Named Entity Recognition dataset for Brazilian Portuguese in the historical domain, presented in the paper [MariNER: A Dataset for Historical Brazilian Portuguese Named Entity Recognition](https://arxiv.org/abs/2506.23051). The dataset consists of five documents from early 20th Century on expeditions through Brazil's Northeast region. The documents were manually annotated with four entity types: Person, Location, Date and Organization. They were also divided into sentences and tokenized.
50
+
51
+ The dataset is available in the BIO format, with the following distinct labels and corresponding indices:
52
+
53
+ | Label | Tag |
54
+ |-------|-------------|
55
+ | 0 | O |
56
+ | 1 | B-PESSOA |
57
+ | 2 | I-PESSOA |
58
+ | 3 | B-LOCAL |
59
+ | 4 | I-LOCAL |
60
+ | 5 | B-DATA |
61
+ | 6 | I-DATA |
62
+ | 7 | B-ORGANIZACAO |
63
+ | 8 | I-ORGANIZACAO |
64
+
65
+
66
+
67
+ To cite this work, use:
68
+
69
+ ```
70
+ @misc {
71
+ sarcinelli2025marinerdatasethistoricalbrazilian,
72
+ title={MariNER: A Dataset for Historical Brazilian Portuguese Named Entity Recognition},
73
+ author={João Lucas Luz Lima Sarcinelli and Marina Lages Gonçalves Teixeira and Jade Bortot de Paiva and Diego Furtado Silva},
74
+ year={2025},
75
+ eprint={2506.23051},
76
+ archivePrefix={arXiv},
77
+ primaryClass={cs.CL},
78
+ url={https://arxiv.org/abs/2506.23051},
79
+ }
80
+ ```