Tagged Questions
Suite of Java libraries for natural language processing (NLP) from Stanford University.
6
votes
3answers
615 views
How do I manipulate parse trees?
I've been playing around with natural language parse trees and manipulating them in various ways. I've been using Stanford's Tregex and Tsurgeon tools but the code is a mess and doesn't fit in well ...
4
votes
1answer
131 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 ...
3
votes
1answer
79 views
Multitask learning
Can anybody please explain multitask learning in simple and intuitive way? May be some real
world problem would be useful.Mostly, these days i am seeing many people are using it for natural language ...
3
votes
2answers
301 views
Is NER necessary for Coreference resolution?
... or is gender information enough?
More specifically, I'm interested in knowing if I can reduce the number of models loaded by the Stanford Core NLP to extract coreferences. I am not interested in ...
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 ...
3
votes
3answers
1k views
Difference between feature selection, feature extraction, feature weights
I am slightly confused as to what "feature selection / extractor / weights" mean and the difference between them. As I read the literature sometimes I feel lost as I find the term used quite loosely, ...
2
votes
1answer
75 views
Extracting clause from a Penn Treebank-formatted text
Say I have a sentence:
After he had eaten the cheese, Bill went to the grocery.
In my program, I get the following output:
---PARSE TREE---
(ROOT
(S
(SBAR (IN After)
(S
(NP ...
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
592 views
Ease of use: Stanford CoreNLP vs. OpenNLP
I looking to use a suite of NLP tools for a personal project, and I was wondering whether Stanford's CoreNLP is easier to use or OpenNLP. Or is there another free package you would reccomend?
I ...
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
1answer
265 views
Paraphrase recognition using sentence level similarity
I'm a new entrant into the NLP(Natural Language processing.As a start up project i'm developing a paraphrase recognizer(a system which can recognize two similar sentences).For that recognizer i'm ...
2
votes
3answers
466 views
about lda inference
not sure if this is the best place to ask this question but here goes..
Right now, I'm using LDA topic modelling tool from the MALLET package to do some topic detection on my documents. Everything's ...
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
2answers
774 views
How to get POS tagging using Stanford Parser
I'm using Stanford Parser to parse the dependence relations between pair of words, but I also need the tagging of words. However, in the ParseDemo.java, the program only output the Tagging Tree. I ...
2
votes
1answer
237 views
stanford tagger - tagging speed
regarding the stanford tagger, I've provided my own labelled corpus for training the model for the stanford tagger. However, I've realised that the tagging speed of my model for the tagger is much ...
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 ...
2
votes
3answers
2k views
Python NLTK code snippet to train a classifier (naive bayes) using feature frequency
I was wondering if anyone could help me through a code snippet that demonstrates how to train Naive Bayes classifier using a feature frequency method as opposed to feature presence.
I presume the ...
1
vote
1answer
94 views
getting started with Stanford Parser in jruby
I'm looking to add some text parsing in my rails app, and have been going in circles for the past few days looking for any tutorials or hints as to how to get this working.
I am completely new to ...
1
vote
1answer
107 views
using Dependency Parser in Stanford coreNLP
I am using the Stanford coreNLP ( http://nlp.stanford.edu/software/corenlp.shtml ) in order to parse sentences and extract dependencies between the words.
I have managed to create the dependencies ...
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
67 views
What do the abbreviations in POS tagging etc mean?
Say I have the following Penn Tree:
(S (NP-SBJ the steel strike)
(VP lasted
(ADVP-TMP (ADVP much longer)
(SBAR than
(S (NP-SBJ he)
...
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
1answer
27 views
Link to list which contains frequnecy ranks of all english language words
Does any body knows link to the list which contains frequency rank of all english language words.
Some sixth months back, I found one list on 'wiki' which contains this list, but unfortunately I did ...
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
1answer
133 views
Am I using the StanfordParser wrapper for ruby properly? It's returning incorrect results
I've installed the latest version of the stanfordparser and the ruby wrapper library for it. When trying to test it with a simple example from the website:
vi test.rb:
require "stanfordparser"
...
1
vote
1answer
126 views
CWB encoding Corpus
According to the Corpus Work Bench, to encode a corpus i need to use the cwb-encode perl script
"encode the corpus, i.e. convert the verticalized text to CWB binary format with the cwb-encode tool. ...
1
vote
0answers
272 views
Stanford Parser: how to extract dependencies?
My work consists in finding a query (can be noun+verb) in a sentence, then extract the object.
exemple: "coding is sometimes a tough work." My query would be: "coding is".
the typed dependencies i ...
1
vote
1answer
165 views
Tagged input to Stanford parser
Can anyone please tell me how I can feed the Stanford Parser my own tagged input sentence? The tagged sentence is, say,
A/NN quick/JJ brown/JJ fox/NN
.
From their documentations, I found that ...
1
vote
2answers
129 views
reading # char in python
can someone help with me reading "#" char in python? i can't seem to get the file. because this is an output from the stanford postagger, is there any scripts available to convert the stanford ...
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
1answer
243 views
how to get relation ship between words with nlp stanford parser
I am trying to get the connections between string and other words like:
the screen is very good
so I want to get
screen good
I just dont know how to get that the subject is screen and the ...
1
vote
1answer
287 views
how to get wanted nodes from Stanford Parser nlp
My mean problem is that I dont know how to extract nodes from GrammaticalStructure.
I am using englishPCFG.ser in java netbeans.
My target is o know the quality of the screen like:
the screen of ...
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
3answers
805 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 ...
1
vote
1answer
138 views
arch options in stanford tagger?
other than the standard arch options like left3words, left5words,bidirectional, bi5words, what do the rest of the options mean? And what arguments are needed for them?
I can't seem to find the ...
1
vote
1answer
227 views
Identifying collocation in Stanford POS Tagger?
Is the Stanford POS tagger able to detect collocation? If so, how do I use it?
If I want to provide my own training file for the Stanford POS Tagger, do I have to tag the words according to the
one ...
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
362 views
Natural Language Processing Package
I have started working on a project which requires Natural Language Processing. We have do the spell checking as well as mapping sentences to phrases and their synonyms. I first thought of using GATE ...
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
1answer
265 views
Stanford NLP Toolkit Parse -Help me find the manual
Would any one help me by sending the URL for the Stanford NLP dependency manual....
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
43 views
Anaphora resolution using Stanford Coref
I have sentences (Text I):
Tom is a smart boy. He know a lot of thing.
I want to change He in the second sentence to Tom, so final sentences will become (Text II):
Tom is a smart boy. Tom ...
0
votes
2answers
72 views
Stanford CoreNLP: Building Error (NoSuchMethodError)
Sorry if this is a newbie's question.
I was trying to use maven in Netbeans to build CoreNLP parser.
I first added dependency of stanford-corenlp 1.2.0. However, I always got an error while compiling ...
0
votes
0answers
45 views
Multitask Learning for classifers which are weakly related
In reference to this question , I would like to add some more question like:
How would be the architecture of multitask learning classifier which learns about n number
of classifier?
Say,i have 3 ...
0
votes
0answers
74 views
Chunking some text with the stanford-nlp
I'm using the stanford core NLP and I use this line to load some modules to process my text:
props.put("annotators", "tokenize, ssplit, pos, lemma, ner, parse, dcoref");
Is ther a module that i can ...