alexbrandsen commited on
Commit
cdc240e
·
verified ·
1 Parent(s): 672a6bf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -1
README.md CHANGED
@@ -94,4 +94,60 @@ language:
94
  tags:
95
  - archaeology
96
  pretty_name: Dutch Archaeology NER Dataset
97
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  tags:
95
  - archaeology
96
  pretty_name: Dutch Archaeology NER Dataset
97
+ ---
98
+
99
+ # Dutch Archaeology NER Dataset
100
+
101
+ A selection of Dutch archaeology field reports, annotated by archaeology students from Leiden University.
102
+
103
+ ## Labels
104
+
105
+ The following labels are included:
106
+
107
+ - ART, artefacts ('bijl', 'pijlpunt')
108
+ - MAT, materials ('vuursteen', 'ijzer')
109
+ - PER, time periods ('Middeleeuwen', '400 v. Chr.')
110
+ - CON, archaeological contexts ('greppel','beerput')
111
+ - LOC, locations ('Amsterdam', 'Oss')
112
+ - SPE, species ('Betula nana', 'koe')
113
+
114
+ ## Folds
115
+
116
+ The reason I supply 5 folds is because I get wildly different F1 scores between folds, and because it's important to keep whole documents in folds: these are long documents, any document that's split between train and test instantly leads to a higher F1, as the model starts recognising specific tokens as entities, leading to overfitting. A micro average F1 over 5 folds with no split documents seems like the fairest evaluation, closest to real-world inference.
117
+
118
+ ### Citation Information
119
+
120
+ ```
121
+ @inproceedings{brandsen-etal-2020-creating,
122
+ title = "Creating a Dataset for Named Entity Recognition in the Archaeology Domain",
123
+ author = "Brandsen, Alex and
124
+ Verberne, Suzan and
125
+ Wansleeben, Milco and
126
+ Lambers, Karsten",
127
+ editor = "Calzolari, Nicoletta and
128
+ B{\'e}chet, Fr{\'e}d{\'e}ric and
129
+ Blache, Philippe and
130
+ Choukri, Khalid and
131
+ Cieri, Christopher and
132
+ Declerck, Thierry and
133
+ Goggi, Sara and
134
+ Isahara, Hitoshi and
135
+ Maegaard, Bente and
136
+ Mariani, Joseph and
137
+ Mazo, H{\'e}l{\`e}ne and
138
+ Moreno, Asuncion and
139
+ Odijk, Jan and
140
+ Piperidis, Stelios",
141
+ booktitle = "Proceedings of the Twelfth Language Resources and Evaluation Conference",
142
+ month = may,
143
+ year = "2020",
144
+ address = "Marseille, France",
145
+ publisher = "European Language Resources Association",
146
+ url = "https://aclanthology.org/2020.lrec-1.562",
147
+ pages = "4573--4577",
148
+ abstract = "In this paper, we present the development of a training dataset for Dutch Named Entity Recognition (NER) in the archaeology domain. This dataset was created as there is a dire need for semantic search within archaeology, in order to allow archaeologists to find structured information in collections of Dutch excavation reports, currently totalling around 60,000 (658 million words) and growing rapidly. To guide this search task, NER is needed. We created rigorous annotation guidelines in an iterative process, then instructed five archaeology students to annotate a number of documents. The resulting dataset contains {\textasciitilde}31k annotations between six entity types (artefact, time period, place, context, species {\&} material). The inter-annotator agreement is 0.95, and when we used this data for machine learning, we observed an increase in F1 score from 0.51 to 0.70 in comparison to a machine learning model trained on a dataset created in prior work. This indicates that the data is of high quality, and can confidently be used to train NER classifiers.",
149
+ language = "English",
150
+ ISBN = "979-10-95546-34-4",
151
+ }
152
+
153
+ ```