Skip to content
Advertisement

stanford nlp api for java: how to get the name as full not in parts

the aim of my code is to submit a document (be it pdf or doc file) and get all the text in it. give the text to be analysed by stanford nlp. the code works just fine. but suppose there is name in the document eg: “Pardeep Kumar” . the output recieved for it, is as follows:

Pardeep NNP PERSON

Kumar NNP PERSON

but i want it to be like this:

Pardeep Kumar NNP PERSON

how do i do that?how do i check two words placed adjacently that actually make one name or anything similar? how do i not let them be split in different words?

here is my code:

JavaScript

Advertisement

Answer

You want to use the entitymentions annotator.

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement