Tagged Questions

6
votes
3answers
617 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
132 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
412 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 ...
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
594 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
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
776 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
109 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
1answer
28 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
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
273 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
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
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
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
394 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
365 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
560 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
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
74 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
1answer
74 views

add a language in the Stanford parser

I started to use the Stanford parser a few weeks ago and it surely is a great tool. However, I would like using it in another language not already implemented. I looked on the website but found ...
0
votes
0answers
325 views

Labeled LDA inference in Stanford Topic Modeling Toolbox

I am using Stanford Topic Modeling Toolbox v.0.3 for doing LabeledLDA. I was able to train a LabeledLDA model using the documentation (example-6-llda-learn.scala) provided. How can I predict labels ...
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
111 views

How to make a language parser [closed]

I would like to make a natural language parsor that could know the question you are asking. How should I start this? I would like to be able to type a question on a screen, and the computer answers ...
0
votes
1answer
107 views

how to get specific elements from Collection tdl with stanford nlp parser

I am using the nlp parser stanord. I want to extract some elements like nsubj and more from Collection tdl. My code is: TreebankLanguagePack tlp = new PennTreebankLanguagePack(); ...
0
votes
1answer
517 views

getting corefrences from corenlp package of stanford

am new to corenlp package.. I tried running this program please tell me what program to use to get coreferences in a text.. please help me please tell me if there's any other way to resolve ...
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
611 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
1answer
173 views

identifying cataphora and anaphora in stanford parser

Can stanford parser find cataphora and anaphora for given set of sentences? Can any other opensource/non open-source software can do that? please help me
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
849 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 2