Tagged Questions

6
votes
4answers
4k views

Named Entity Recognition Libraries for Java

I am looking for a simple but "good enough" Named Entity Recognition library (and dictionary) for java, I am looking to process emails and documents and extract some "basic information" like: Names, ...
2
votes
1answer
134 views

Generating RDF from unstructured text offline

There are services like Open Calais and Alchemy API that generate RDF from unstructured text. Are there tools that do that offline ? Has anyone tried WebCAT or can OpenCyc be useful for such a ...
2
votes
3answers
158 views

Disambiguating Named Entities in Java

I have a list of strings (company names, in this case), and a Java program that extracts a list of things that look like company names out of mostly-unstructured text. I need to match each element of ...
1
vote
2answers
106 views

unsupervised Named entity recognition (NER) with custom controlled vocabulary for crosslink-suggestions in Java

I'm looking for a Java library that can do Named entity recognition (NER) with a custom controlled vocabulary, without needing labeled training data first. I searched some on SE, but most questions ...
1
vote
1answer
117 views

There is a entity recognizer classifier algorithm that doesn't needs entire texts for training data?

I want to recognize some entities on texts that I have and I found a lot of algorithms (NaiveBayes, Hidden Markov Models, Conditional Random Field, etc.), but seems that almost all needs a huge ...
1
vote
1answer
379 views

How I train an Named Entity Recognizer identifier in OpenNLP?

Ok, I have the following code to train the NER Identifier from OpenNLP FileReader fileReader = new FileReader("train.txt"); ObjectStream fileStream = new PlainTextByLineStream(fileReader); ...
1
vote
2answers
337 views

Does OpenNLP use WordNet under the hood for the Named Entity Recognition

I have tried using OpenNLP Tools 1.5 from SourceForge for getting the Named Entites from a text. I did find a JWNL file in the OpenNLP download. Does that imply that OpenNLP in turn is using WordNet ...
0
votes
3answers
409 views

How I classify an word of a text in things like names, number, money, date,etc?

I did some questions about text-mining a week ago, but I was a bit confused and still, but now I know wgat I want to do. The situation: I have a lot of download pages with HTML content. Some of then ...
0
votes
1answer
168 views

Stanford NER - Extract Multi word entities

How can I tag collocations in Stanford NER? Currently it tags Federal Reserve Bank of New York as <wi num="11" entity="ORGANIZATION">Federal</wi> <wi num="12" ...
0
votes
6answers
917 views

How to define person's names in text (Java)

I have some input text, which contains one or more human person names. I do not have any dictionary for these names. Which Java library can help me to define names from my input text? I looked through ...