Tagged Questions

3
votes
3answers
1k views

finding noun and verb in stanford parser

I need to find whether a word is verb or noun or it is both For example, the word is "search" it can be both noun and a verb but stanford parser gives NN tag to it.. is there any way that stanford ...
2
votes
2answers
103 views

Java query about finding a word in a sentence

I am using Stanford's NLP parser (http://nlp.stanford.edu/software/lex-parser.shtml) to split a block of text into sentences and then see which sentences contain a given word. Here is my code so ...
2
votes
2answers
409 views

Stanford Core NLP - understanding coreference resolution

I'm having some trouble understanding the changes made to the coref resolver in the last version of the Stanford NLP tools. As an example, below is a sentence and the corresponding ...
2
votes
1answer
911 views

calling Stanford POS Tagger maxentTagger from java program

I am new to Stanford POS tagger. I need to call the Tagger from my java program and direct the output to a text file. I have extracted the source files from Stanford-postagger and tried calling the ...
1
vote
0answers
76 views

Error building Stanford CoreNLP

When I build Core-NLP on my own, I get the following message: incompatible types; no instance(s) of type variable(s) VALUE exist so that VALUE conforms to Map<Integer,String> The offending ...
1
vote
3answers
244 views

stanford parse bash script error - linux bash

Can someone help me check my bash script? i'm trying to feed a directory of .txt files to the stanford parser (http://nlp.stanford.edu/software/pos-tagger-faq.shtml) but i can't get it to work. i'm ...
1
vote
2answers
255 views

Cannot import edu.stanford.nlp - Stanford parser with jython problem

Can someone help me out with the stanford parser from http://nlp.stanford.edu/software/lex-parser.shtml? I've only downloaded and unzipped the parser. I've also installed the jython fully but i ...
1
vote
2answers
334 views

Use of Stanford Parser in Web Service

I need to use the Stanford Parser in a web service. As SentenceParser loads a big object, I will make sure it is a singleton, but in this case, is it thread safe (no according to ...
1
vote
2answers
393 views

how do I create my own training corpus for stanford tagger?

I have to analyze informal english text with lots of short hands and local lingo. Hence I was thinking of creating the model for the stanford tagger. How do i create my own set of labelled corpus for ...
1
vote
1answer
1k views

Stanford Parser - Traversing the typed dependencies graph

Basically I want to find a path between two NP tokens in the dependencies graph. However, I can't seem to find a good way to do this in the Stanford Parser. Any help? Thank You Very Much
1
vote
2answers
559 views

Java Stanford NLP: Spell checking

I'm trying to check spelling accuracy of text samples using the Stanford NLP. It's just a metric of the text, not a filter or anything, so if it's off by a bit it's fine, as long as the error is ...
1
vote
3answers
633 views

Limit CPU / Stack for Java method call?

I am using an NLP library (Stanford NER) that throws OOM errors for rare input documents. I plan to eventually isolate these documents and figure out what about them causes the errors, but this is ...
0
votes
1answer
44 views

Using Stanford CoreNLP

I am trying to get around using the Stanford CoreNLP. I used some code from the web to understand what is going on with the coreference tool. I tried running the project in Eclipse but keep ...
0
votes
1answer
150 views

Stanford NLP tools and lots of text

I'm currently using the Stanford CoreNLP tools to extract triplets from text. I've been dealing with relatively small pieces of text, but I need to make it work with larger ones. Also, I need this ...
0
votes
2answers
620 views

Stanford Parser questions

I am writing a project that works with NLP (natural language parser). I am using the stanford parser. I create a thread pool that takes sentences and run the parser with them. When I create one ...
0
votes
2answers
609 views

out of heap space memory error

I am trying to run the coreNLP package with the following program package corenlp; import edu.stanford.nlp.pipeline.*; import java.io.IOException; /** * * @author Karthi */ public class Main { ...
0
votes
2answers
231 views

What should i use to crawl many news articles?

I've a project of natural language processing but for that i need to crawl many web articles from some sources like Yahoo news, Google news or blogs... I'm a java developper (so i'd rather use java ...
0
votes
1answer
282 views

Java Stanford NLP: ArrayIndexOutOfBounds after loading second lexicon

I am using the Stanford Natural Language processing toolkit. I've been trying to find spelling errors with Lexicon's isKnown method, but it produces quite a few false positives. So I thought I'd load ...
0
votes
1answer
846 views

Java Stanford NLP: Find word frequency?

I'm using the Stanford NLP Parsing toolkit. Given a word in the lexicon, how can I find its frequency*? Or, given a frequency rank, how can I determine the corresponding word? *in the entire ...
-1
votes
1answer
460 views

How to get parent node in Stanford's JavaNLP?

Suppose I have such chunk of a sentence: (NP (NP (DT A) (JJ single) (NN page)) (PP (IN in) (NP (DT a) (NN wiki) (NN website)))) At a certain moment of time I have a reference to ...
-2
votes
1answer
145 views

corenlp package of stanford's StaggerDemo

I wanna make a program automatically tagger the text in a directory. Here's my first step. I made a little change to TaggerDemo.java. But it is not working properly as expected. import ...
-3
votes
2answers
86 views

Unable to resolve error on loading Stanford NLP Parser

I keep getting the same error when using the Stanford NLP parser JAR files. Code: import java.io.Reader; import edu.stanford.nlp.ling.*; import edu.stanford.nlp.trees.*; class ...