Benben
Benben

Reputation: 1455

How to detect named entities

I have a list of named entities. I would like to extract listed named entities from a certain text file with some Java libraries.

What I want to do are;

I tried GATE tools, but it did not work well. How can I do that? If you have any suggestions, please let me know.

Upvotes: 0

Views: 108

Answers (1)

Daniel
Daniel

Reputation: 6039

You can use Illinois-NER but you need to annotate sample training data with your desired annotation and train the model again, since your desired are labels are different from the current labels: http://cogcomp.cs.illinois.edu/page/software_view/4

Upvotes: 1

Related Questions