Karavet commited on
Commit
3b2dbc9
1 Parent(s): a8d741f

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +56 -0
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ YAML tags:
3
+ languages: [hy]
4
+ task_categories: [named-entity-recognition]
5
+ multilinguality: [monolingual]
6
+ task_ids: [named-entity-recognition]
7
+ licenses: [apache-2.0]
8
+ ---
9
+ ## Table of Contents
10
+ - [Table of Contents](#table-of-contents)
11
+ - [pioNER - named entity annotated datasets and GloVe models for the Armenian language](#pioNER)
12
+ - [Silver-standard dataset](#silver-standard-dataset)
13
+ - [Gold-standard dataset](#gold-standard-dataset)
14
+
15
+
16
+
17
+ # pioNER - named entity annotated datasets and GloVe models for the Armenian language
18
+
19
+ pioNER corpus provides gold-standard and automatically generated named-entity datasets for the Armenian language.
20
+
21
+ Alongside the datasets, we release 50-, 100-, 200-, and 300-dimensional GloVe word embeddings trained on a collection of Armenian texts from Wikipedia, news, blogs, and encyclopedia.
22
+
23
+ ## Silver-standard dataset
24
+
25
+ The generated corpus is automatically extracted and annotated using Armenian Wikipedia. We used a modification of [Nothman et al](https://www.researchgate.net/publication/256660013_Learning_multilingual_named_entity_recognition_from_Wikipedia) and [Sysoev and Andrianov](http://www.dialog-21.ru/media/3433/sysoevaaandrianovia.pdf) approaches to create this corpus. This approach uses links between Wikipedia articles to extract fragments of named-entity annotated texts.
26
+
27
+ The corpus is split into train and development sets.
28
+
29
+ *Table 1. Statistics for pioNER train, development and test sets*
30
+
31
+ | dataset | #tokens | #sents | annotation | texts' source |
32
+ |-------------|:--------:|:-----:|:--------:|:-----:|
33
+ | train | 130719 | 5964 | automatic | Wikipedia |
34
+ | dev | 32528 | 1491 | automatic | Wikipedia |
35
+ | test | 53606 | 2529 | manual | iLur.am |
36
+
37
+ ## Gold-standard dataset
38
+
39
+ This dataset is a collection of over 250 news articles from iLur.am with manual named-entity annotation. It includes sentences from political, sports, local and world news, and is comparable in size with the test sets of other languages (Table 2).
40
+ We aim it to serve as a benchmark for future named entity recognition systems designed for the Armenian language.
41
+
42
+ The dataset contains annotations for 3 popular named entity classes:
43
+ people (PER), organizations (ORG), and locations (LOC), and is released in CoNLL03 format with IOB tagging scheme.
44
+ During annotation, we generally relied on categories and [guidelines assembled by BBN](https://catalog.ldc.upenn.edu/docs/LDC2005T33/BBN-Types-Subtypes.html) Technologies for TREC 2002 question answering track
45
+
46
+ Tokens and sentences were segmented according to the UD standards for the Armenian language from [ArmTreebank project](http://armtreebank.yerevann.com/tokenization/process/).
47
+
48
+ *Table 2. Comparison of pioNER gold-standard test set with test sets for English, Russian, Spanish and German*
49
+
50
+ | test dataset | #tokens | #LOC | #ORG | #PER |
51
+ |-------------|:--------:|:-----:|:--------:|:-----:|
52
+ | Armenian pioNER | 53606 | 1312 | 1338 | 1274 |
53
+ | Russian factRuEval-2016 | 59382 | 1239 | 1595 | 1353 |
54
+ | German CoNLL03 | 51943 | 1035 | 773 | 1195 |
55
+ | Spanish CoNLL02 | 51533 | 1084 | 1400 | 735 |
56
+ | English CoNLL03 | 46453 | 1668 | 1661 | 1671 |