Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Free Tagged Corpus for Named Entity Recognition [closed]

I am looking for a free tagged corpus for a system to train on to for Named Entity Recognition. Most of the ones I find (like the New York Times one) are expensive and not open. Can anyone help?

like image 690
DantheMan Avatar asked Jul 25 '10 17:07

DantheMan


2 Answers

There's a list of corpora at http://www.cs.technion.ac.il/~gabr/resources/data/ne_datasets.html

The CoNLL 2003 corpus, which is on that list, is free and is available from http://www.cnts.ua.ac.be/conll2003/ner/ (annotations) and NIST (text).

like image 171
Tom Morris Avatar answered Sep 19 '22 05:09

Tom Morris


The Python NLTK has access to the nltk.corpus.conll2000 corpus. Calling conll2000.iob_words() returns a list of (word, part-of-speech, IOB) triples, where IOB is a tag in the Inside-entity/Outside-entity/Beginning-of-entity format.

There are about 250k total words in a newswire-style context.

like image 37
AndreiM Avatar answered Sep 23 '22 05:09

AndreiM