The Natural Language Toolkit is a Python library for computational linguistics.

learn more… | top users | synonyms

0
votes
1answer
33 views

Removing Stop words from NLTK

I'm trying to read one text file (foo1.txt), remove all the nltk defined stopwords and write in another file (foo2.txt). Code is as following: Require import: from nltk.corpus import stopwords def ...
0
votes
1answer
13 views

“import nltk” - Not working on xampp

I'm new to python and nltk. I have problem on import nltk. I installed python in xampp on windows under the path C:\xampp\Python. And I installed nltk under the path C:\xampp\Python. After this I ...
0
votes
0answers
15 views

nltp.download() hangs on MAC OS 10.8.3

I couldn't find anything on the web. Please help. Here is what happens: python >>> Python 2.7.2 (default, Oct 11 2012, 20:14:37) >>> [GCC 4.2.1 Compatible Apple Clang 4.0 ...
0
votes
0answers
17 views

Filtering the tree structure of Stanford tagged sentences to get first noun from sibling of verb phrase

New to StackOverflow. I am trying to extract subject-verb-object from a sentence and many people has recommended Python with NLTK ..still a newbie with Python but loving it so far! I'm trying my hands ...
0
votes
0answers
33 views

NLTK pos_tag ImportError from mtrand import *

When I run this code I get an error (below): import nltk sentence = """At eight o'clock on Thursday morning""" tokens = nltk.word_tokenize(sentence) nltk.pos_tag(tokens) The traceback is: ...
-1
votes
0answers
13 views

punkt is out of date while downloading packages for nltk [closed]

I am new to nltk. While downloading packages of nltk, the nltk downloader says punkt module is out of date. I searched many times and not sure if I need to update this package and how to update it. ...
0
votes
0answers
16 views

RTE corpus for nltk with wikipedia and framenet

I want to create an rte corpus for nltk using wikipedia and frames. Is there any tool available to aid in this process?
0
votes
1answer
23 views

Polysemy count: return senses rather than # of senses. (Wordnet NLTK)

I know how to get the number of different senses a word has with polysemy count in Wordnet (via NLTK). But I was wondering if it is also possible to return these different senses, rather than just the ...
0
votes
0answers
29 views

FrameNet and NLTK

I have to classify semantic relation of words in sentences. I am thinking to use FrameNet but I am not sure if it can be sue with NLTK (Python). Anyone know if it possible to use FrameNet with NLTK? ...
0
votes
0answers
18 views

Ngram model and perplexity in NLTK

To put my question in context, I would like to train and test/compare several (neural) language models. In order to focus on the models rather than data preparation I chose to use the Brown corpus ...
0
votes
0answers
40 views

Finding phrases in sentences

I am trying to work on NLTK. I need to find out phrases in the sentences. Is there any common grammar or pattern available to achieve this?
0
votes
1answer
66 views

NLTK Naive bayes Classifier wierd results

i'm trying to use a nltk naive classifier to classify genres of movies. I am however getting some wierd results. Currently it only guesses based on amount of genre inputted. If i input two action ...
0
votes
1answer
20 views

How to find likelihood in NLTK

http://www.laurentluce.com/posts/twitter-sentiment-analysis-using-python-and-nltk/comment-page-1/#comment-73511 I am trying to understand NLTK using this link. I cannot understand how the values of ...
2
votes
3answers
111 views

Machine Learning in Python - Get the best possible feature-combination for a label

My Question is as follows: I know a little bit about ML in Python (using NLTK), and it works ok so far. I can get predictions given certain features. But I want to know, is there a way, to display ...
0
votes
1answer
20 views

Using of nltk for chunking arabic text

I have a project about chunking of Arabic text I want to know if it is possible to use NLTK to extract the chunks NP, VP, PP of arabic Text and how I can use an Arabic corpus. Please any one help me! ...
-1
votes
0answers
14 views

the difference between NLTK's three tagged corpora: treebank and brown and conll2000

I am using NLTK.pos_tag to do pos tagging. And I found that the default tagger is based on treebank. However, I found there are three tagged corpora: brown, conll2000, treebank. I don't know their ...
0
votes
0answers
14 views

how to use maxentropie with megam algorithm on python under windows

I have download the source file megam_src.tgz from http://www.umiacs.umd.edu/~hal/megam/ and I want to implement maxentropie with MEGAM algorithm using NLTK and windows, but I don't know how to ...
0
votes
0answers
34 views

NLTK ambiguities in POS tags

I am trying to write a script that assigns POS tags to my corpus and then picks out the words where there is ambiguity concerning the POS tags. So far I have this, however it brings op errors and to ...
0
votes
1answer
26 views

How to prepare my own dataset to NLTK ConditionalFreqDist function?

NLTK contains the "brown" dataset that contains all the data on the different genres... cfd = nltk.ConditionalFreqDist( (genre, word) for genre in brown.categories() for word in ...
0
votes
2answers
24 views

How to output NLTK tabulate results into CSV?

I have the following: fdist = FreqDist(text) I want to output the following results of tabulate into a CSV (as opposed to python console). fdist.tabulate() How would I do this?
0
votes
2answers
51 views

How to write features in nltk to a txt file?

I trained a naive bayes classifier with nltk. The function show_most_informative_features (source code) can print out the top likelihood features in the training process to python shell, but it has no ...
-2
votes
0answers
17 views

what is the error in the code and how jython installed?

Hi Guys, really need help !!! I have two problems: first one: I am using NLTK python to build my own grammar rules but the problem I face is: the grammar I built is general means: no leave nodes ...
-1
votes
0answers
7 views

where is the best place to save MaltParser to work with NLTK ?

**Hello Guys, I downloaded MaltParser but I do not know where it should saved to work correctly with NLTK!! can any one tell me where should be saved ??**
0
votes
1answer
41 views

Extracting specific leaf value from nltk tree structure with Python

I have some questions about NLTK's tree functions. I am trying to extract a certain word from the tree structure like the one given below. test = Tree.parse('(ROOT(SBARQ(WHADVP(WRB How))(SQ(VBP ...
0
votes
0answers
37 views

How to resolve org.apache.hadoop.streaming.PipeMapRed: java.io.IOException: Stream closed?

I am trying to execute NLTK in Hadoop environment. Following is the command which i used for execution. bin/hadoop jar $HADOOP_HOME/contrib/streaming/hadoop-streaming-1.0.4.jar -input ...
0
votes
0answers
86 views

How to resolve java.lang.RuntimeException: PipeMapRed.waitOutputThreads(): subprocess failed with code 2?

I am trying to execute NLTK in Hadoop environment. Following is the command which i used for execution. bin/hadoop jar $HADOOP_HOME/contrib/streaming/hadoop-streaming-1.0.4.jar -input ...
-1
votes
0answers
73 views

how to perform sentiment analysis on particular blogs [closed]

i am using nltk and python for sentiment analysis, my requirement is to perform sentiment analysis on some blogs amd movie reviw websites, from the url's of some blogs i need to get the sentiment for ...
0
votes
1answer
39 views

NLTK: filter sentences with specific structures

How to filter sentences with specific structures using NLTK? For example, we have the following definition of a context free grammar: 1. S → NP VP 2. S → Aux NP VP 3. S → VP 4. NP → Pronoun ...
0
votes
1answer
32 views

How do I get the definition for a sense in NLTK's senseval module?

In the NLTK senseval module, senses are of the form HARD1, HARD2, etc. (see source here). However, there doesn't seem to be a way to get the actual definition. I'm trying to implement the Lesk ...
0
votes
2answers
82 views

how to use the a 10-fold cross validation with naive bayes classifier and NLTK

I have a small corpus and I want to calculate the accuracy of naive Bayes classifier using 10-fold cross validation, how can do it. thanks
0
votes
0answers
18 views

what is the form of labeled_featuresets input of the nltk.classify.maxent.MaxentClassifier.train?

First , I use NLTK for sentiment analysis in twitter, and I want to use maxentropie for classification. I have seen the code source for this function at ...
0
votes
0answers
20 views

Any FSM/FSA Based Tagger

There are several good taggers around. I even asked a question creating own tagger, I have got another requirement now. In Python I was using topia and it seemed a great choice for job (fast and ...
0
votes
2answers
64 views

pip issue installing almost any library

I'm having a difficult time using pip to install almost anything. I'm new to coding, so I thought maybe this is something I've been doing wrong and have opted out to easy_install to get most of what I ...
0
votes
1answer
29 views

How to integrate NLTK with Hadoop HDFS?

I have a working sentiment analysis program using NLTK which reads the text from a .txt file placed in my local machine. Now i would like to read txt file placed in Hadoop HDFS and perform same ...
0
votes
0answers
23 views

How to compare and find relevance of data using python nltk ?

I want to find the relevance of tweets and rank them. eg: "iphone5 battery drains out fast!" Now this tweet is relevant as battery -> drains. One possible approach would be to use synset and use ...
0
votes
1answer
26 views

Finding the common words between two text corpus in NLTK

I am very new to NLTK and am trying to do something. What would be the best way to find the common words between two bodies of text? Basically, I have one long text file say text1, and another say ...
0
votes
1answer
22 views

Change value of leaf in NLTK

I want to change the value of a leaf in a parsed tree object in NLTK. I use the following code. t = Tree(line) chomsky_normal_form(t, horzMarkov=2, vertMarkov=1, childChar = "|", parentChar = "^") ...
0
votes
0answers
27 views

Bigrams with NLTK: problems with script

I am trying to "calculate" bigrams in my corpus with NLTK. However, there are still bugs in my script it seems. I can't figure out what I am doing wrong, so I hope someone will be able to give me at ...
-3
votes
0answers
49 views

how to perform sentiment analysis on news and movie review websites [closed]

I have performed sentiment analysis on twitter tweets using twitter api and python. But i dont know how to do sentiment analysis on movie reviews sites and news sites. please suggest me how to do this ...
2
votes
0answers
33 views

Match alphanumeric string in nltk grammar

I'm trying to use NTLK grammar and parse algorithms as they seem pretty simple to use. Though, I can't find a way to match an alphanumeric string properly, something like: import nltk grammar = ...
0
votes
2answers
146 views

Python NLTK exercise: chapter 5

Hy guys, I'm starting to study NLTK following the official book from the NLTK team. I'm in chapter 5-"Tagging"- and I can't resolve one of the excercises at page 186 of the PDF version: Given the ...
-3
votes
1answer
105 views

How to represent class labels in Python for training a multi-label classifier with non-binary feature values in NLTK?

You are only considering a single attribute in isolation, e.g. movie genre, and you've already defined your feature extraction function such that it takes a document as input and returns a ...
0
votes
0answers
30 views

Unable to parse english sentences using engmalt of maltparser

I have installed maltparser-1.7.2 from here in drive 'C' of my computer by the name maltparser and set a enviroment variable: name=MALTPARSERHOME value=C:\maltparser I changed the ...
0
votes
0answers
22 views

POS tag my own Corpus

I have the following code import nltk from nltk.corpus.reader import TaggedCorpusReader corpus_root = 'C:/Python27' reader = TaggedCorpusReader(corpus_root, 'test.txt') print reader.words() print ...
1
vote
1answer
44 views

Can NLTK be used in a Postgres Python Stored Procedure

Has anyone done or even no if its possible to use NLTK within a Postgres Python Stored Procedure or trigger
0
votes
1answer
51 views

MAXent classifier NLTK output understand

I am trying to understand the classifier.show_most_informative_features(10) for MAXent classfier. I don't understand is what does the columns indicate, for example in the following output: train on ...
0
votes
1answer
30 views

Outcome doesn't make sense for list of most common POS

I'm trying to get a list of the most frequent POS tags from a collection of posts. I have written the following: text2=corpus text4=nltk.word_tokenize(text2) tags=nltk.pos_tag(text4) ...
0
votes
0answers
12 views

NLTK: *some* commands run on terminal but not from editor

I am having troubles using NLTK with the editor (either Textwrangler or Idle). NLTK gets imported and I can get concordance-s etc, but for example len() won't work (e.g. len(text1) will not return ...
0
votes
2answers
51 views

train nltk classifier for just one label

I am just starting out with nltk, and I am following the book. Chapter six is about text classification, and i am a bit confused about something. In the examples (the names, and movie reviews) the ...
0
votes
0answers
28 views

How can I write the most informative features in nltk classifier?

I have trained a Naive Bayes Classifier, and it has a method named show_most_informative_features which can print the most informative features in python console. I want to write the most informative ...

1 2 3 4 5 15