--- language: - en - it - de - es license: other size_categories: - 1K Rodrigo Agerri, Yiling Chung, Itziar Aldabe, Nora Aranberri, Gorka Labaka and German Rigau (2018). Building Named Entity Recognition Taggers via Parallel Corpora. In Proceedings of the 11th Language Resources and Evaluation Conference (LREC 2018), 7-12 May, 2018, Miyazaki, Japan. You should also consider citing the original Europarl publication: > Europarl: A Parallel Corpus for Statistical Machine Translation, Philipp Koehn, MT Summit 2005. This evaluation corpus was manually annotated by Nora Aranberri. ### Languages The dataset contains 4 languages, one in each of the configuration subsets: - en - English - de - German - es - Spanish - it - Italian ## Dataset Structure ### Data Instances This is an example in the "test" split of the "en" (English language) configuration subset: ```python { 'tokens': ["Thank", "you", ",", "Mr", "Segni", ",", "I", "shall", "do", "so", "gladly", "."], 'ner_tags': [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], } ``` ### Data Fields - `tokens`: a `list` of `string` features. - `ner_tags`: a `list` of classification labels, with possible values including `O` (0), `B-PER` (1), `I-PER` (2), `B-ORG` (3), `I-ORG` (4), `B-LOC` (5), `I-LOC` (6), `B-MISC` (7), `I-MISC` (8), ### Data Splits Every subset contains only a test split with 799 rows. ## Additional Information ### Licensing Information The citation from the original repo: > We follow the original Europarl terms of use which states : "We are not aware of any copyright restrictions of the material." For more details, please visit http://www.statmt.org/europarl/ ### Citation Information Authors ask to cite the following publications: ``` @inproceedings{agerri-etal-2018-building, title = "Building Named Entity Recognition Taggers via Parallel Corpora", author = "Agerri, Rodrigo and Chung, Yiling and Aldabe, Itziar and Aranberri, Nora and Labaka, Gorka and Rigau, German", editor = "Calzolari, Nicoletta and Choukri, Khalid and Cieri, Christopher and Declerck, Thierry and Goggi, Sara and Hasida, Koiti and Isahara, Hitoshi and Maegaard, Bente and Mariani, Joseph and Mazo, H{\'e}l{\`e}ne and Moreno, Asuncion and Odijk, Jan and Piperidis, Stelios and Tokunaga, Takenobu", booktitle = "Proceedings of the Eleventh International Conference on Language Resources and Evaluation ({LREC} 2018)", month = may, year = "2018", address = "Miyazaki, Japan", publisher = "European Language Resources Association (ELRA)", url = "https://aclanthology.org/L18-1557" ``` ``` @inproceedings{koehn2005europarl, title={Europarl: A parallel corpus for statistical machine translation}, author={Koehn, Philipp}, booktitle={Proceedings of machine translation summit x: papers}, pages={79--86}, year={2005} } ```