vesteinn commited on
Commit
399efde
·
1 Parent(s): 7a686d5

Updated meta

Browse files
Files changed (2) hide show
  1. dataset_infos.json +3 -3
  2. icelandic-ner-MIM-GOLD-NER.py +26 -22
dataset_infos.json CHANGED
@@ -1,8 +1,8 @@
1
  {
2
  "mim-gold-ner": {
3
- "description": "The shared task of CoNLL-2003 concerns language-independent named entity recognition. We will concentrate on\nfour types of named entities: persons, locations, organizations and names of miscellaneous entities that do\nnot belong to the previous three groups.\n\nThe CoNLL-2003 shared task data files contain four columns separated by a single space. Each word has been put on\na separate line and there is an empty line after each sentence. The first item on each line is a word, the second\na part-of-speech (POS) tag, the third a syntactic chunk tag and the fourth the named entity tag. The chunk tags\nand the named entity tags have the format I-TYPE which means that the word is inside a phrase of type TYPE. Only\nif two phrases of the same type immediately follow each other, the first word of the second phrase will have tag\nB-TYPE to show that it starts a new phrase. A word with tag O is not part of a phrase. Note the dataset uses IOB2\ntagging scheme, whereas the original dataset uses IOB1.\n\nFor more details see https://www.clips.uantwerpen.be/conll2003/ner/ and https://www.aclweb.org/anthology/W03-0419\n",
4
- "citation": "@inproceedings{tjong-kim-sang-de-meulder-2003-introduction,\n title = \"Introduction to the {C}o{NLL}-2003 Shared Task: Language-Independent Named Entity Recognition\",\n author = \"Tjong Kim Sang, Erik F. and\n De Meulder, Fien\",\n booktitle = \"Proceedings of the Seventh Conference on Natural Language Learning at {HLT}-{NAACL} 2003\",\n year = \"2003\",\n url = \"https://www.aclweb.org/anthology/W03-0419\",\n pages = \"142--147\",\n}\n",
5
- "homepage": "https://www.aclweb.org/anthology/W03-0419/",
6
  "license": "",
7
  "features": {
8
  "id": {
 
1
  {
2
  "mim-gold-ner": {
3
+ "description": "This Icelandic named entity (NE) corpus, MIM-GOLD-NER, is a version of the MIM-GOLD corpus tagged for NEs. Over 48 thousand NEs are tagged in this corpus of one million tokens, which can be used for training named entity recognizers for Icelandic.\nThe MIM-GOLD-NER corpus was developed at Reykjavik University in 2018–2020, funded by the Strategic Research and Development Programme for Language Technology (LT). Two LT students were in charge of the corpus annotation and of training named entity recognizers using machine learning methods.\nA semi-automatic approach was used for annotating the corpus. Lists of Icelandic person names, location names, and company names were compiled and used for extracting and classifying as many named entities as possible. Regular expressions were then used to find certain numerical entities in the corpus. After this automatic pre-processing step, the whole corpus was reviewed manually to correct any errors. \nThe Named Entity Corpus corpus is distributed with the same special user license as MIM-GOLD, which is based on the MIM license, since the texts in MIM-GOLD were sampled from the MIM corpus.",
4
+ "citation": "@misc{20.500.12537/42,\n title = {{MIM}-{GOLD}-{NER} named entity recognition corpus},\n author = {Ing{\\'o}lfsd{\\'o}ttir, Svanhv{\\'{\\i}}t and Gu{\\dh}j{\\'o}nsson, {\\'A}smundur Alma and Loftsson, Hrafn},\nurl = {http://hdl.handle.net/20.500.12537/42},\nnote = {{CLARIN}-{IS}},\ncopyright = {Icelandic Gigaword Corpus Part1},\nyear = {2020} }\n",
5
+ "homepage": "http://hdl.handle.net/20.500.12537/42",
6
  "license": "",
7
  "features": {
8
  "id": {
icelandic-ner-MIM-GOLD-NER.py CHANGED
@@ -25,30 +25,34 @@ logger = datasets.logging.get_logger(__name__)
25
 
26
 
27
  _CITATION = """\
28
- @inproceedings{tjong-kim-sang-de-meulder-2003-introduction,
29
- title = "Introduction to the {C}o{NLL}-2003 Shared Task: Language-Independent Named Entity Recognition",
30
- author = "Tjong Kim Sang, Erik F. and
31
- De Meulder, Fien",
32
- booktitle = "Proceedings of the Seventh Conference on Natural Language Learning at {HLT}-{NAACL} 2003",
33
- year = "2003",
34
- url = "https://www.aclweb.org/anthology/W03-0419",
35
- pages = "142--147",
36
- }
37
  """
38
 
39
  _DESCRIPTION = """\
40
- The shared task of CoNLL-2003 concerns language-independent named entity recognition. We will concentrate on
41
- four types of named entities: persons, locations, organizations and names of miscellaneous entities that do
42
- not belong to the previous three groups.
43
- The CoNLL-2003 shared task data files contain four columns separated by a single space. Each word has been put on
44
- a separate line and there is an empty line after each sentence. The first item on each line is a word, the second
45
- a part-of-speech (POS) tag, the third a syntactic chunk tag and the fourth the named entity tag. The chunk tags
46
- and the named entity tags have the format I-TYPE which means that the word is inside a phrase of type TYPE. Only
47
- if two phrases of the same type immediately follow each other, the first word of the second phrase will have tag
48
- B-TYPE to show that it starts a new phrase. A word with tag O is not part of a phrase. Note the dataset uses IOB2
49
- tagging scheme, whereas the original dataset uses IOB1.
50
- For more details see https://www.clips.uantwerpen.be/conll2003/ner/ and https://www.aclweb.org/anthology/W03-0419
51
- """
 
 
 
 
 
 
52
 
53
  _URL = "https://vesteinn.is/"
54
  _TRAINING_FILE = "train.txt"
@@ -107,7 +111,7 @@ class MIMGoldNER(datasets.GeneratorBasedBuilder):
107
  }
108
  ),
109
  supervised_keys=None,
110
- homepage="https://www.aclweb.org/anthology/W03-0419/",
111
  citation=_CITATION,
112
  )
113
 
 
25
 
26
 
27
  _CITATION = """\
28
+ @misc{20.500.12537/42,
29
+ title = {{MIM}-{GOLD}-{NER} named entity recognition corpus},
30
+ author = {Ing{\'o}lfsd{\'o}ttir, Svanhv{\'{\i}}t and Gu{\dh}j{\'o}nsson, {\'A}smundur Alma and Loftsson, Hrafn},
31
+ url = {http://hdl.handle.net/20.500.12537/42},
32
+ note = {{CLARIN}-{IS}},
33
+ copyright = {Icelandic Gigaword Corpus Part1},
34
+ year = {2020} }
 
 
35
  """
36
 
37
  _DESCRIPTION = """\
38
+ This Icelandic named entity (NE) corpus, MIM-GOLD-NER, is a version of the MIM-GOLD corpus tagged for NEs. Over 48 thousand NEs are tagged in this corpus of one million tokens, which can be used for training named entity recognizers for Icelandic.
39
+
40
+ The MIM-GOLD-NER corpus was developed at Reykjavik University in 2018–2020, funded by the Strategic Research and Development Programme for Language Technology (LT). Two LT students were in charge of the corpus annotation and of training named entity recognizers using machine learning methods.
41
+
42
+ A semi-automatic approach was used for annotating the corpus. Lists of Icelandic person names, location names, and company names were compiled and used for extracting and classifying as many named entities as possible. Regular expressions were then used to find certain numerical entities in the corpus. After this automatic pre-processing step, the whole corpus was reviewed manually to correct any errors. The corpus is tagged for eight named entity types:
43
+
44
+ PERSON names of humans, animals and other beings, real or fictional.
45
+ LOCATION names of locations, real or fictional, i.e. buildings, street and place names, both real and fictional. All geographical and geopolitical entities such as cities, countries, counties and regions, as well as planet names and other outer space entities.
46
+ ORGANIZATION companies and other organizations, public or private, real or fictional. Schools, churches, swimming pools, community centers, musical groups, other affiliations.
47
+ MISCELLANEOUS proper nouns that don’t belong to the previous three categories, such as products, books and movie titles, events, such as wars, sports tournaments, festivals, concerts, etc.
48
+ DATE absolute temporal units of a full day or longer, such as days, months, years, centuries, both written numerically and alphabetically.
49
+ TIME – absolute temporal units shorter than a full day, such as seconds, minutes, or hours, both written numerically and alphabetically.
50
+ MONEY – exact monetary amounts in any currency, both written numerically and alphabetically.
51
+ PERCENT – percentages, both written numerically and alphabetically
52
+
53
+ MIM-GOLD-NER is intended for training of named entity recognizers for Icelandic. It is in the CoNLL format, and the position of each token within the NE is marked using the BIO tagging format. The corpus can be used in its entirety or by training on subsets of the text types that best fit the intended domain.
54
+
55
+ The Named Entity Corpus corpus is distributed with the same special user license as MIM-GOLD, which is based on the MIM license, since the texts in MIM-GOLD were sampled from the MIM corpus."""
56
 
57
  _URL = "https://vesteinn.is/"
58
  _TRAINING_FILE = "train.txt"
 
111
  }
112
  ),
113
  supervised_keys=None,
114
+ homepage="http://hdl.handle.net/20.500.12537/42",
115
  citation=_CITATION,
116
  )
117