Please see the tutorial steps for OpenNLP - Named Entity Recognition : Link to tutorial I am using the \"en-ner-person.bin\" model found here In the tutorial, there are inst
There is no way to append to a model unfortunately. But you can use to model to find what it can find, and write the hits it found to a "known entities" file, and also write out the sentences to a file. You can then add the other names you know are not getting recognized to the "known entities" file (and more sentences they might be in to the sentences file). Then you can use an OpenNLP addon called modelbuilder-addon to build a new model using the file of sentences, and the file of "known entities"
see this post for a code example.
OpenNLP: foreign names does not get recognized
it's a very new addon, let me know if how it works.