CoolFace
Datasetpublic

tner/wikiann

[WikiAnn](https://aclanthology.org/P17-1178/)

sourceHugging Faceupdated 4y agoView on Hugging Face
6likes1.7kdownloads
Dataset Card

Dataset Card for "tner/wikiann"

Dataset Description

Dataset Summary

WikiAnn NER dataset formatted in a part of TNER project.

  • Entity Types: LOC, ORG, PER

Dataset Structure

Data Instances

An example of train of ja looks as follows.

{
  'tokens': ['#', '#', 'ユ', 'リ', 'ウ', 'ス', '・', 'ベ', 'ー', 'リ', 'ッ', 'ク', '#', '1', '9','9','9'],
  'tags': [6, 6, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6]
}

Label ID

The label2id dictionary can be found at here.

python
{
    "B-LOC": 0,
    "B-ORG": 1,
    "B-PER": 2,
    "I-LOC": 3,
    "I-ORG": 4,
    "I-PER": 5,
    "O": 6
}

Data Splits

languagetrainvalidationtest
ace100100100
bg200001000010000
da200001000010000
fur100100100
ilo100100100
lij100100100
mzn100100100
qu100100100
su100100100
vi200001000010000
af500010001000
bh100100100
de200001000010000
fy100010001000
io100100100
lmo100100100
nap100100100
rm100100100
sv200001000010000
vls100100100
als100100100
bn1000010001000
diq100100100
ga100010001000
is100010001000
ln100100100
nds100100100
ro200001000010000
sw100010001000
vo100100100
am100100100
bo100100100
dv100100100
gan100100100
it200001000010000
lt100001000010000
ne100100100
ru200001000010000
szl100100100
wa100100100
an100010001000
br100010001000
el200001000010000
gd100100100
ja200001000010000
lv100001000010000
nl200001000010000
rw100100100
ta1500010001000
war100100100
ang100100100
bs1500010001000
eml100100100
gl150001000010000
jbo100100100
map-bms100100100
nn2000010001000
sa100100100
te100010001000
wuu100100100
ar200001000010000
ca200001000010000
en200001000010000
gn100100100
jv100100100
mg100100100
no200001000010000
sah100100100
tg100100100
xmf100100100
arc100100100
cbk-zam100100100
eo150001000010000
gu100100100
ka100001000010000
mhr100100100
nov100100100
scn100100100
th200001000010000
yi100100100
arz100100100
cdo100100100
es200001000010000
hak100100100
kk100010001000
mi100100100
oc100100100
sco100100100
tk100100100
yo100100100
as100100100
ce100100100
et150001000010000
he200001000010000
km100100100
min100100100
or100100100
sd100100100
tl1000010001000
zea100100100
ast100010001000
ceb100100100
eu100001000010000
hi500010001000
kn100100100
mk1000010001000
os100100100
sh200001000010000
tr200001000010000
zh-classical100100100
ay100100100
ckb100010001000
ext100100100
hr200001000010000
ko200001000010000
ml1000010001000
pa100100100
si100100100
tt100010001000
zh-min-nan100100100
az1000010001000
co100100100
fa200001000010000
hsb100100100
ksh100100100
mn100100100
pdc100100100
simple2000010001000
ug100100100
zh-yue200001000010000
ba100100100
crh100100100
fi200001000010000
hu200001000010000
ku100100100
mr500010001000
pl200001000010000
sk200001000010000
uk200001000010000
zh200001000010000
bar100100100
cs200001000010000
fiu-vro100100100
hy1500010001000
ky100100100
ms2000010001000
pms100100100
sl150001000010000
ur2000010001000
bat-smg100100100
csb100100100
fo100100100
ia100100100
la500010001000
mt100100100
pnb100100100
so100100100
uz100010001000
be-x-old500010001000
cv100100100
fr200001000010000
id200001000010000
lb500010001000
mwl100100100
ps100100100
sq500010001000
vec100100100
be1500010001000
cy1000010001000
frr100100100
ig100100100
li100100100
my100100100
pt200001000010000
sr200001000010000
vep100100100

Citation Information

@inproceedings{pan-etal-2017-cross,
    title = "Cross-lingual Name Tagging and Linking for 282 Languages",
    author = "Pan, Xiaoman  and
      Zhang, Boliang  and
      May, Jonathan  and
      Nothman, Joel  and
      Knight, Kevin  and
      Ji, Heng",
    booktitle = "Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
    month = jul,
    year = "2017",
    address = "Vancouver, Canada",
    publisher = "Association for Computational Linguistics",
    url = "https://aclanthology.org/P17-1178",
    doi = "10.18653/v1/P17-1178",
    pages = "1946--1958",
    abstract = "The ambitious goal of this work is to develop a cross-lingual name tagging and linking framework for 282 languages that exist in Wikipedia. Given a document in any of these languages, our framework is able to identify name mentions, assign a coarse-grained or fine-grained type to each mention, and link it to an English Knowledge Base (KB) if it is linkable. We achieve this goal by performing a series of new KB mining methods: generating {``}silver-standard{''} annotations by transferring annotations from English to other languages through cross-lingual links and KB properties, refining annotations through self-training and topic selection, deriving language-specific morphology features from anchor links, and mining word translation pairs from cross-lingual links. Both name tagging and linking results for 282 languages are promising on Wikipedia data and on-Wikipedia data.",
}