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
410 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
2answers
340 views
Stanford NER toolkit - lowercase entities recognition
I am a newbie to NLP and trying to figure out how a Named Entity Recognizer annotates named entities. I am experimenting with Stanford NER toolkit. When I use the NER on standard more formal datasets ...
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
2answers
184 views
How do I split sentences?
So, I found and am currently using Stanford Parser and it works GREAT for splitting sentences. Most of our sentences are from AP so it works very well for that task.
Here's the problems:
it eats a ...
1
vote
2answers
149 views
IncompatibleClassChangeError while running Stanford NER and Stanford POS tagger
I am trying to use Stanford NER and Stanford POS tagger in one application. I am getting IncompatibleClassChangeError when I try to run POS tagger method.
I have jar files of both NER and POS tagger ...
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
494 views
Stanford POS tagger in Java usage
Mar 9, 2011 1:22:06 PM edu.stanford.nlp.process.PTBLexer next
WARNING: Untokenizable: � (U+FFFD, decimal: 65533)
Mar 9, 2011 1:22:06 PM edu.stanford.nlp.process.PTBLexer next
WARNING: Untokenizable: � ...
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
433 views
Using the Stanford postagger in java, getting java.lang.IncompatibleClassChangeError
I am trying to initialize the Stanford NLP Part of Speech tagger and I keep getting a java.lang.IncompatibleClassChangeError. When I print the cause of the error, I get null, when I print the message ...
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
78 views
how can I obtain the value of subject of the Stanford Dependencies “nsubj” of a tree?
NEW
thanks, Bart Kiers.
adding the following lines of your code I get what I wanted:
System.out.println(td.dep());
System.out.println(td.gov());
which will print:
dog-2
likes-4
now how do I ...
0
votes
1answer
67 views
Java, StanfordNLP Parser: How to stop tokenizing angle brackets as markup / tokenize angle brackets as punctuation?
I'm parsing a dataset in which people are using angle brackets simply as punctuation, and never (ever) does actual markup occur.
Is there a means of changing the parser's functionality such that ...
0
votes
1answer
104 views
Extracting Sub-Trees Using Stanford Tregex
I have made a class to extract subtrees using Tregex. I used some code snips from "TregexPattern.java", as i don't want to let the program use the console commands.
In general, having a tree for a ...
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
1answer
163 views
Forcing the stanford parser to accept POS tags not licensed by the parser's lexicon
I have a file of pretokenized sentences, some of which are in the imperative (implicit subject, verb first, etc.). Without any partial tagging, the stanford parser wrongly tags the first word (a verb) ...
0
votes
0answers
95 views
How to use arabicfactored.ser.gz in my java application using NetBeans IDE?
Greetings All;
I am new to stanford parser, and I would like to use the parser with some arabic sentences.
I have tried the getting started tutorial here inside my Netbeans IDE and it worked fine ...
0
votes
1answer
104 views
How can I reduce Stanford parser time of execution?
Good Morning,
I am using Stanford part of speech for my application, and I need to parse many text files (can go to 20 files). However I noticed that stanford takes a lot of time (sometimes 30min or ...
0
votes
1answer
152 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
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
193 views
illegal argument exception - stanford parser
I tried to parse a sentence using stanford parser, but i get the exception please help me. the input file, code and exception are specified below
I think the problem is because the penn tree in input ...
0
votes
1answer
345 views
Stanford parser - typed dependencies
The typed dependencies given by stanford parser online
http://nlp.stanford.edu:8080/parser/ and the dependencies generated by the sourcecode given aren't same
The versions of source codes available ...
0
votes
1answer
463 views
How to use Stanford NLP API to retrieve phrases or tokens from NL query?
I need phrases returned from Stanford parser to use to in my program.
0
votes
1answer
155 views
Serializing Stanford Parser objects
I've run into an issue that is requiring me to serialize Stanford Parser objects (all different sorts) to a file for later use. As far as I know, none of the Stanford Parser objects implement a ...
0
votes
2answers
1k views
Stanford POS tagger in Java
I'm trying this:
Sentence<TaggedWord> taggedString = MaxentTagger.tagStringTokenized("here is a string to tag");
which gives me:
Error:
...
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
847 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 ...