We've been working with the NLTK library in a recent project where we're mainly interested in the named entities part.
In general we're getting good results using the NEChunkParser class. However, we're trying to find a way to provide our own terms to the parser, without success.
For example, we have a test document where my name (Shay) appears in several places. The library finds me as GPE while I'd like it to find me as PERSON...
Is there a way to provide some kind of a custom file/ code so the parser will be able to interpret the named entity as I want it to?
Thanks!