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

learn more… | top users | synonyms

0
votes
0answers
19 views

NLP with Python chap 1 .dispersion_plot returns nothing

I'm in the first chapter of Natural Language Processing with Python and am trying to run the example .dispersion_plot. I am using Python 2.7.4 (Anaconda) on Mac OSX 10.8. When I load all of the ...
1
vote
0answers
24 views

Getting NLTK running w/NumPY and matplotlib on OS 10.8

Just to be honest at the beginning here: I have no experience installing Python and its various modules. I am trying to work through Natural Language Processing with Python to learn a bit about how ...
0
votes
0answers
6 views

LazeyCorpusLoader with simplified tags

i'm using nltk.corpus.utli.LazeyCorpusLoader to load treebank in pyhton2.7, with tag_mapping_function=simplify_wsj_tag, even after doing so im getting non-terminals like "NP-SBJ-78" is it normal? But ...
2
votes
1answer
32 views

How to reverse use a nlp parser to generate sentences

I am trying to develop a Sinhala (My native language) to English translator. Still I am thinking for an approach. If I however parse a sentence of my language, then can I use that for generating ...
0
votes
0answers
9 views

How to train chunked sentences in NLTK

I have multiple *.ptb files containing chunked sentences as shown below. (S (NP (NP (NP (DT A)(NN mechanism))(PP (IN for)(NP (NP (DT the)(JJ antiinflammatory)(NNS effects)) (PP (IN of)(NP (NNS ...
0
votes
0answers
18 views

Very Large Tree Node

I am dealing with a very large set of data that I need to visualize through a Tree Node (or Tree Map or whatever it is called). I have about 10 keys or headers and about 1800 values per key or header. ...
0
votes
1answer
29 views

Getting the closest noun from a stemmed word

Short version: If I have a stemmed word: Say 'comput' for 'computing', or 'sugari' for 'sugary' Is there a way to construct it's closest noun form? That is 'computer', or 'sugar' respectively ...
-1
votes
0answers
19 views

nltk in Ruby on Rails

I checked out the gem called 'treat', source: https://github.com/louismullie/treat/ I use the stanford parser with this gem.. now is there any way for me to emulate the nltk.RegexpParser(grammar) ...
1
vote
0answers
25 views

NLTK add sections to corpus

I am going to process scientific papers using nltk. To begin with, I would like to store the raw text of the papers as text files. The text file would have a few sections, like this: paper-1.txt: ...
-2
votes
2answers
17 views

How to get wordnet domains heirarchy in python?

I have a keyword like 'SPORTS'. I need to have all its first childs i.e next heirarchial level. So i should get something like [cricket,football,tennis,hockey].
0
votes
1answer
20 views

TypeError: 'map' object is not subscriptable - NLTK book with Python 3.3

I am repeaing examples from NLTK book "Natural Language Processing with Python" in Python console. (i use Pycharm 2.7.2, Windows 7, Python 3.3.2). I am new to Python and dont know how to fix. I ...
0
votes
2answers
23 views

remove unwanted symbols in tagged_sents

I'm using nltk brown corpus to get simplified tag set import nltk from nltk.corpus import brown brown_tags = [] for sent in brown.tagged_sents(categories = 'news', simplify_tags = True): ...
0
votes
1answer
35 views

Python: Better way to search and collect text strings from html. Strip off markdowns, tags, etc

There are many modules like lxml, Beautiful soup, nltk and pyenchant to correctly filter out proper english words. But then what is the cleanest shortest way like html2text offers, also if markdowns ...
2
votes
1answer
20 views

I have installed virtualenv 1.9 which includes pip, but cannot install nltk

I have installed virtualenv 1.9 which includes pip, but cannot install nltk on my Mac. First it does not recognize pip as a command. Second how do I install nltk?
0
votes
1answer
21 views

Using NLTK to find morphologically related verbs to some given noun

How would I go about extracting the morphologically related verb(s) for some noun. So, for example, I would like to be able to build some function like this (using nltk): related_verb('decision') ...
3
votes
2answers
39 views

How to add compound words to the tagger in NLTK?

So, I was wondering if anyone had any idea how to combine multiple terms to create a single term in the taggers in NLTK.. For example, when I do: nltk.pos_tag(nltk.word_tokenize('Apple Incorporated ...
0
votes
1answer
20 views

Install nltk training data manually in python

I have installed python and nltk toolkit and I need to install the training data. The web proxy is not allowing me to use nltk.download() method. I tried the suggested web proxy option given in ...
0
votes
0answers
28 views

How can I train NLTK on the entire Penn Treebank corpus?

I was originally using the following Penn Treebank tagger from NLTK: POS_Tagger = UnigramTagger(treebank.tagged_sents(), backoff=DefaultTagger('NN')) However, this falls short on spoken text. For ...
-1
votes
0answers
35 views

NLTK - Filtering sentences based on grammar

I have set of data which I need to parse and filter sentences whichever matches the grammar I define. Eg: Adverb followed by Adjective etc. grammar = """ M1:{<VBZ>*<JJ>*} ...
0
votes
2answers
41 views

Compare similarity of terms/expressions using NLTK?

I'm trying to compare terms/expressions which would (or not) be semantically related - these are not full sentences, and not necessarily single words; e.g. - 'Social networking service' and 'Social ...
-1
votes
1answer
28 views

Unable to follow the NLTK corpus structure [closed]

I'm started with NLTK & Python but Im really confused with the NLTK corpus structure. For instance Im unable to follow why do we need to append words twice to the nltk.corpus module , ...
3
votes
1answer
56 views

Python Stemming words in a File

I want to do stemming in a file. When I use it in terminal it works fine, but when I apply it in a text file, it does not work. Terminal code: print PorterStemmer().stem_word('complications') ...
0
votes
5answers
72 views

Counting words in a text file

I have .txt file(example): A professional is a person who is engaged in a certain activity, or occupation, for gain or compensation as means of livelihood; such as a permanent career, not as ...
0
votes
0answers
27 views

NLTK: Classifying multi-class with Multinomial NB using own data

I recently switched over from Java to Python to take advantage of NLTK that I need to work with. I have tried with NLTK's NB Classifier and it worked well. But now, I would like to try to use ...
1
vote
1answer
41 views

How to change smothing method of Naive Bayes classifier in NLTK?

I have trained a spam classifier using NLTK Naive Bayes method. Both the spam set and not spam set have 20,000 instances of words in training. I have noticed that when encountering an unknown ...
3
votes
1answer
57 views

Python Context Free Grammar and PCFG generation benchmarks?

I know there are various functions to use to general CFGs and PCFGs in Python; however they all seem to differ in speed. E.g.: NLTK, PyParsing. Are there any recent benchmarks comparing various ...
2
votes
2answers
51 views

Reduce redundant block of text

How do you reduce a redundant piece of text? For example, I have 2 inputs and I need to reduce them to the following outputs Input1: The Toyota is red. The Honda is red. The BMW is red. The ...
0
votes
1answer
62 views

change and pass a global variable to function Python

I have a recursive function as below which changes the global variable but it seems that i cannot pass the changed global variable to the recursive function since the error exceptions says: File ...
0
votes
0answers
86 views

Convert words into their noun / adjective / verb form in Java

Is it possible to hava a Java alternative to NLTK in order to 'verbify' words as can be seen in this question? Convert words between verb/noun/adjective forms For example I would like to convert ...
0
votes
0answers
49 views

How to use methods of classes that require initial training on datasets within a django app

I have a django app that needs to access methods from a class that was previously trained on some data. To put things into context, the django app needs to access a classifier for classifying text. ...
0
votes
1answer
41 views

Google App Engine import NLTK error

I am trying to import NLTK library in Google App Engine it gives error, I created another module "testx.py" and this module works without error but I dont know why NLTK does not work. My code ...
1
vote
1answer
48 views

Python NLTK snowball stemmer UnicodeDecodeError in terminal but not Eclipse PyDev

I'm using the snowball stemmer to stem words in documents as shown in below code snippet. stemmer = EnglishStemmer() # Stem, lowercase, substitute all punctuations, remove stopwords. ...
3
votes
2answers
245 views

How to create a word cloud from a corpus in Python?

From Creating a subset of words from a corpus in R, the answerer can easily convert a term-document matrix into a word cloud easily. Is there a similar function from python libraries that takes ...
0
votes
2answers
96 views

Can't install numpy with setup.py

I'm on Python 2.7 and I'm trying to use the NLTK part of speech tagger, which generates this error because I don't have numpy installed: > Traceback (most recent call last): File ...
3
votes
1answer
114 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
27 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 ...
2
votes
2answers
95 views

nltk.download() hangs on OS X

nltk.download() is hanging for me on OS X. 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
85 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: ...
0
votes
0answers
23 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
35 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
46 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
44 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
52 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
99 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 ...
-1
votes
1answer
27 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
132 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
26 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! ...
0
votes
0answers
22 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
45 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
33 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 ...

1 2 3 4 5 15