Apache's libraries for natural language processing (NLP).
5
votes
2answers
87 views
Text processing in Java
Now this is a tricky problem for which I'm not able to figure out a good solution. Suppose we have a String in Java:- "He ate 3 apples today." Now the digit 3 can be easily identified in Java using ...
4
votes
1answer
156 views
Sentence compression using NLP
Using Machine translation, can I obtain a very compressed version of a sentence,
eg. I would really like to have a delicious tasty cup of coffee would be translated to I want coffee
Does any of the ...
4
votes
1answer
1k views
How to use openNLP with java
I want to POStag an English sentence and do some processing. I would like to use openNLP. I have it installed
When I execute the command
...
3
votes
4answers
167 views
Sentence detection using NLP
I am trying to parse out sentences from a huge amount of text. using java I started off with NLP tools like OpenNLP and Stanford's Parser.
But here is where i get stuck. though both these parsers are ...
3
votes
1answer
490 views
Entity Extraction/Recognition with free tools while feeding Lucene Index
I'm current investigating the options to extract person names, locations, tech words and categories from text (a lot articles from the web) which will then feeded into a Lucene/ElasticSearch index. ...
3
votes
2answers
90 views
How to recognise a particular user in a long multi-user internet chat log?
Here is an online programming contest we are planning to have.
What could be possible approaches to solving the same?
From a random IRC (Internet Relay Chat) log, a small percentage of the user ...
3
votes
2answers
536 views
(OpenNLP) Is there a way to get the subject of a sentence using OpenNLP?
Is there a way to get the subject of a sentence using OpenNLP?
I'm trying to identify the most important part of a users sentence. Generally, users will be submitting sentences to our "engine" and ...
2
votes
4answers
170 views
Pure statistical, or Natural Language Processing engine?
What are the statistical engines that yield better results than the OpenNLP suite of tools, if any? What I'm looking for is an engine that picks keywords from texts and provides stemming on those ...
2
votes
1answer
442 views
OpenNLP parser training
I've tried asking this before on the OpenNLP sourceforge page, but it is still sadly languishing in the Help forums:
I have a treebank and I would like to train a model based on it. There was some ...
1
vote
0answers
106 views
Coreference Resolution using OpenNLP
I want to do "coreference resolution" using OpenNLP. Documentation from Apache (Coreference Resolution) doesn't cover how to do "coreference resolution". Does anybody have any docs/tutorial how to do ...
1
vote
1answer
32 views
Where can I find the expansions for the short codes used by POS taggers?
All of the Parts of Speech (POS) Taggers give the tags in the form of shortcodes like (NNS,VBZ etc).
This/DT page/NN is/VBZ about/IN the/DT Brill-tagger/NNP
Like the above example which is from ...
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
1answer
90 views
Most efficient way to generate a list of Unigrams from a text field in MongoDB
I need to generate a vector of unigrams, i.e. a vector of all the unique words which appear in a specific text field that I have stored as part of a broader JSON object in MongoDB.
I'm not really ...
1
vote
1answer
177 views
OpenNLP HeadRules
I'm trying to train a parser for a new model using the openNLP tutorial http://sourceforge.net/apps/mediawiki/opennlp/index.php?title=Parser#Training . The only problem is that is requires a ...
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 ...
1
vote
1answer
674 views
How to use OpenNLP? Please help!
I'm trying to use OpenNLP for tokenization. I don't know what's the problem. Following is the exception, please help:
opennlp.tools.util.InvalidFormatException: Missing the manifest.properties!
...
1
vote
1answer
363 views
Speeding up OpenNLP's POSTagging when using it for several texts
I'm currently working on a keyphrase extraction tool, which should provide tag suggestions for texts or documents on a website. As I am following the method proposed in this paper: A New Approach to ...
1
vote
3answers
867 views
opennlp vs stanford nlptools vs berkeley
Hi the aim is to parse a sizeable corpus like wikipedia to generate the most probable parse tree,and named entity recognition. Which is the best library to achieve this in terms of performance and ...
0
votes
1answer
134 views
TextRank Run time
I implemented textrank in java but it seems pretty slow. Does anyone know about its expected performance?
If it's not expected to be slow, could any of the following be the problem:
1) It didn't ...
0
votes
0answers
79 views
How to split English word
I'm facing a problem to split concatenated English text, more specifically, domain name.
For example:
boysandgirls.com -> boy(s)|and|girl(s)|.com
haveaniceday.net -> have|a|nice|day|.net
...
0
votes
1answer
93 views
Should a Chunker find the head of a phrase?
My application requires that I point the head of a phrase (noum or verb). I have this kind of info in my Portuguese corpus:
Me pron-pers *B-NP
pergunto v-fin B-VP
sempre adv *B-ADVP
quem pron-indp ...
0
votes
0answers
79 views
Getting type of NE out of POS Tagger (OpenNLP)
When using the german POS set, all named entities where marked with NE. The thing is to get the type of the named entity, like Person, Location or Organization. Is there a way to get this?
0
votes
1answer
211 views
Problem with OpenNLP NameFinderME
I am using OpenNLP to extract named entities from a given text.
It gives me the following error while running the code on large data. When I run it on small data it works fine.
...
0
votes
0answers
93 views
OpenNLP is unable to identify dates of the format “January 10th, 2009”
OpenNLP(in Java) is unable to identify dates of the format "January 10th, 2010" or "January 10, 2010". I replaced all ','s in the text with an empty string "" before using OpenNLP tokenizer and it ...
0
votes
2answers
340 views
What tag set is used in OpenNLP's german maxent model?
currently I am using the OpenNLP tools to PoS-tag german sentences, with the maxent model listed on their download-site:
de POS Tagger Maxent model trained on tiger corpus. ...
0
votes
2answers
488 views
Opennlp 1.5 for SentenceDetector?
Now I have the following code:
SentenceModel sd_model = null;
try {
sd_model = new SentenceModel(new FileInputStream(
"opennlp/models/english/sentdetect/en-sent.bin"));
} catch ...
-2
votes
0answers
7 views
I would like to find an italian language bundle for openNLP
I would like to find italian language bundle for opennlp