xap commited on
Commit
d6ad20a
1 Parent(s): 03f628a

Upload 6 files

Browse files
EverestNER-test-bio.txt ADDED
The diff for this file is too large to render. See raw diff
 
EverestNER-test-char.txt ADDED
The diff for this file is too large to render. See raw diff
 
EverestNER-train-bio.txt ADDED
The diff for this file is too large to render. See raw diff
 
EverestNER-train-char.txt ADDED
The diff for this file is too large to render. See raw diff
 
Nepali-NER.pdf ADDED
Binary file (465 kB). View file
 
README.md ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # EverestNER - The Benchmark Data Set for Nepali NER
2
+ We have created the largest human annotated Named Entity Recognition (NER) data set for Nepali available to date. Highlights:
3
+
4
+ * EverestNER covers five named entities - Person Name, Location, Organization, Event and Date.
5
+ * EverestNER produces high quality annotations through clear annotation guidelines.
6
+ * EverestNER has 24,587 entities, 308,353 tokens corresponding to 15,798 sentences.
7
+ * We split the EverestNER data set into EverestNER-train and EverestNER-test. These standard data sets, therefore, become the first benchmark data sets for evaluating Nepali NER systems.
8
+ * We report a comprehensive evaluation of state-of-the-art Neural and Transformer models using these data sets. This is the first study to apply BERT model for mining Named Entities for Nepali.
9
+ * We also discuss the remaining challenges for discovering NEs for Nepali (see our paper below).
10
+
11
+ ## Data Set Stats
12
+ |Data |Articles |Sentences |Tokens |Avg. Sent.Len| LOC| ORG| PER| EVT| DAT|
13
+ | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
14
+ | Train | 847| 13,848| 268,741| 19.40| 5,148| 4,756| 7,707| 312| 3,394|
15
+ |Test| 149| 1,950| 39,612| 20.31| 809| 715| 1,115| 59| 572|
16
+ |Total| 996| 15,798| 308,353| 19.51| 5,957| 5,471| 8,822| 371| 3,966|
17
+
18
+
19
+ ## Data Format
20
+ The EverestNER data set is divided into train (EverestNER-train) and test (EverestNER-test) sets. Each data set has character level as well as token leven annotations. Please read [our paper](https://journals.flvc.org/FLAIRS/article/view/130725/133879) to get more information on this.
21
+ * Character Level
22
+ * Train: [EverestNER-train-char.txt](EverestNER-train-char.txt)
23
+ * Test: [EverestNER-test-char.txt](EverestNER-train-char.txt)
24
+
25
+ * Token Level
26
+ * Train: [EverestNER-train-bio.txt](EverestNER-train-bio.txt)
27
+ * Test: [EverestNER-test-bio.txt](EverestNER-train-bio.txt)
28
+
29
+ ## Our Results
30
+ Model comparision on EverestNER-test. Models (a) baseline (rule-based), (b) BLSTM CRF, and (c) multilingual BERT:
31
+ |Model |Pre. |Rec. |F1-micro|
32
+ | --- | --- | --- | --- |
33
+ |Baseline (Rule-based)|0.71 |0.55| 0.62|
34
+ |BLSTM-CRF-wc.ft|**0.89**| 0.74| 0.81|
35
+ |BERT-bbmu|0.87 |**0.84** |**0.85**|
36
+
37
+ Performance evaluation of the best performing model (BERT-bbmu) per named entities:
38
+ |Model|Pre. |Rec. |F1| Support|
39
+ | --- | --- | --- | --- |--- |
40
+ |PER|0.90|0.85|0.88|1115|
41
+ |LOC|0.85|0.80|0.82|809|
42
+ |ORG|0.85|0.83|0.84|715|
43
+ |EVT|0.46|0.42|0.44|59|
44
+ |DAT|0.91|0.91|0.91|572|
45
+
46
+
47
+ # License
48
+ Non-commercial purposes only. For commercial usages, permissions must be taken from the authors and the relevant parties. See the contact address below.
49
+
50
+ Unless required by applicable law or agreed to in writing, software and data distributed here is on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
51
+
52
+ # Cite Our Work
53
+ If you use the EverestNER data set, please cite [our publication](https://journals.flvc.org/FLAIRS/article/view/130725/133879):
54
+ ```bibtex
55
+ @inproceedings{niraula2022named,
56
+ title={Named Entity Recognition for Nepali: Data Sets and Algorithms},
57
+ author={Niraula, Nobal and Chapagain, Jeevan},
58
+ booktitle={The International FLAIRS Conference Proceedings},
59
+ volume={35},
60
+ year={2022}
61
+ }
62
+ ```
63
+ # Contact
64
+ Feel free to contact nobal @AT nowalab .DOT com for any inquiries regarding this work.
65
+
66
+ # Acknowledgments
67
+ Nepali Shabdakosh - https://nepalishabdakosh.com
68
+
69
+