On 04/04/2012 10:45 PM, Jörn Kottmann wrote:
Our coreferencer can link noun phrases together. To train this I used our name finder and parser to produce a parse tree with named entities and then merged the mentions from the MUC training file into the parse tree. But I wonder what is the best/right way to do that?
Actually it does the following: - Parsing - Merging the mentions with DefaultParse.addMention - Inserting named entities via Parse.addNames This seems to be a bit unlucky since the insertion of named entities can create new noun phrases. So I will change it and insert the mentions at the end. Jörn
