Tagged Questions

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

learn more… | top users | synonyms

21
votes
4answers
6k views

What is “entropy and information gain”?

I am reading this book (NLTK) and it is confusing. Entropy is defined as: Entropy is the sum of the probability of each label times the log probability of that same label How can I apply ...
16
votes
2answers
185 views

Selecting the most fluent text from a set of possibilities via grammar checking (Python)

Some background I am a literature student at New College of Florida, currently working on an overly ambitious creative project. The project is geared towards the algorithmic generation of poetry. ...
16
votes
5answers
6k views

Practical examples of NLTK use

I'm playing about with the Natural Language Toolkit (NLTK). The documentation (Book and HOWTO) and is a little heavy going. Are there any good but basic examples of the use of NLTK? I'm thinking of ...
12
votes
7answers
3k views

Text mining with PHP

I'm doing a project for a college class I'm taking. I'm using PHP to build a simple web app that classify tweets as "positive" (or happy) and "negative" (or sad) based on a set of dictionaries. The ...
11
votes
4answers
4k views

How to extract common / significant phrases from a series of text entries

I have a series of text items- raw HTML from a MYSQL database. I want to find the most common phrases in these entries (not the single most common phrase, and ideally, not enforcing word-for-word ...
10
votes
5answers
1k views

tag generation from a text content

I am curious if there is an algorithm/method exists to generate keywords/tags from a given text, by using some weight calculations, occurrence ratio or other tools. Additionally, I will be grateful ...
8
votes
2answers
709 views

Orange vs NLTK for Content Classification in Python

We need a content classification module. Bayesian classifier seems to be what I am looking for. Should we go for Orange or NLTK ?
8
votes
2answers
491 views

Does PyPy work with NLTK?

Does PyPy work with NLTK, and if so, is there an appreciable performance improvement, say for the bayesian classifier? While we're at it, do any of the other python environments (shedskin, etc) ...
8
votes
2answers
3k views

Sentiment analysis with NLTK python for sentences using sample data or webservice?

I am embarking upon a NLP project for sentiment analysis. I have successfully installed NLTK for python (seems like a great piece of software for this). However,I am having trouble understanding how ...
7
votes
2answers
194 views

What are some good ways of estimating 'approximate' semantic similarity between sentences?

I have been looking at the nlp tag on SO for the past couple of hours and am confident I did not miss anything but if I did, please do point me to the question. In the mean time though, I will ...
7
votes
1answer
172 views

Why are these words considered stopwords?

I do not have a formal background in Natural Language Processing was wondering if someone from the NLP side can shed some light on this. I am playing around with the NLTK library and I was ...
7
votes
1answer
367 views

Lemmatizing POS tagged words with NLTK?

I have POS tagged some words with nltk.pos_tag(), so they are given treebank tags. I would like to lemmatize these words using the known POS tags, but I am not sure how. I was looking at Wordnet ...
7
votes
4answers
2k views

Using the Python NLTK (2.0b5) on the Google App Engine

I have been trying to make the NLTK (Natural Language Toolkit) work on the Google App Engine. The steps I followed are: Download the installer and run it (a .dmg file, as I am using a Mac). copy ...
6
votes
3answers
2k views

Creating a new corpus with NLTK

I reckoned that often the answer to my title is to go and read the documentations. but i ran through the http://www.nltk.org/book but it doesnt give the answer. i'm kind of new to python. I have a ...
6
votes
1answer
721 views

How to create corpus or corpora for classifying text in NLTK?

I'm building a classifier text. 1, Have 10 categories, each category have more relative keywords. 2, Now, I have a text. I need classify it into one category 3, I use NLTK but I don't know how to ...
6
votes
3answers
1k views

Classifying Documents into Categories

I've got about 300k documents stored in a Postgres database that are tagged with topic categories (there are about 150 categories in total). I have another 150k documents that don't yet have ...
6
votes
1answer
452 views

tag generation from a small text content (such as tweets)

I have already asked a similar question earlier but I have notcied that I have big constrain: I am working on small text sets suchs as user Tweets to generate tags(keywords). And it seems like the ...
6
votes
3answers
1k views

Natural language processing - Ideas for beginner's projects

I am a beginner in NLP and NLTK. I am very interested in NLP and hence joined a weekend course on AI in some local institution, which requires me to do a project for completion of the course, and I ...
5
votes
1answer
187 views

NLTK/NLP buliding a many-to-many/multi-label subject classifier

I have a human tagged corpus of over 5000 subject indexed documents in XML. They vary in size from a few hundred kilobytes to a few hundred megabytes. Being short articles to manuscripts. They have ...
5
votes
2answers
149 views

Finding words from Wordnet separated by a fixed Edit Distance from a given word

I am writing a spell checker using nltk and wordnet, I have a few wrongly spelt words say "belive". What I want to do is find all words from wordnet that are separated by a leveshtein's edit distance ...
5
votes
3answers
276 views

RegEx Tokenizer: split text into words, digits, punctuation, and spacing (do not delete anything)

I almost found the answer to this question in this thread (samplebias's answer); however I need to split a phrase into words, digits, punctuation marks, and spaces/tabs. I also need this to preserve ...
5
votes
1answer
193 views

NLTK - when to normalize the text?

I've finished gathering my data I plan to use for my corpus, but I'm a bit confused about whether I should normalize the text. I plan to tag & chunk the corpus in the future. Some of NLTK's ...
5
votes
1answer
517 views

How to incrementally train an nltk classifier

I am working on a project to classify snippets of text using the python nltk module and the naivebayes classifier. I am able to train on corpus data and classify another set of data but would like to ...
5
votes
3answers
1k views

FreqDist with NLTK

NLTK in python has a function which gives you the frequency of words within a text. I am trying to pass my text as an argument but the result is of the form: [' ', 'e', 'a', 'o', 'n', 'i', 't', 'r', ...
5
votes
3answers
486 views

How to identify ideas and concepts in a given text

I'm working on a project at the moment where it would be really useful to be able to detect when a certain topic/idea is mentioned in a body of text. For instance, if the text contained: Maybe if ...
5
votes
4answers
234 views

Java or Python distributed compute job (on a student budget)?

I have a large dataset (c. 40G) that I want to use for some NLP (largely embarrassingly parallel) over a couple of computers in the lab, to which i do not have root access, and only 1G of user space. ...
5
votes
3answers
371 views

How to choose a Feature Selection Algorithm? - advice

Is there a research paper/book that I can read which can tell me for the problem at hand what sort of feature selection algorithm would work best. I am trying to simply identify twitter messages as ...
5
votes
3answers
2k views

NLTK tagging in German

I am using NLTK to extract nouns from a text-string starting with the following command: tagged_text = nltk.pos_tag(nltk.Text(nltk.word_tokenize(some_string))) It works fine in English. Is there ...
5
votes
4answers
504 views

how do i use python libraries in C++?

I want to use the nltk libraries in c++. Is there a glue language/mechanism I can use to do this? Reason: I havent done any serious programming in c++ for a while and want to revise NLP concepts ...
4
votes
1answer
145 views

Some NLP stuff to do with grammar, tagging, stemming, and word sense disambiguation in Python

Background (TLDR; provided for the sake of completion) Seeking advice on an optimal solution to an odd requirement. I'm a (literature) student in my fourth year of college with only my own guidance ...
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 ...
4
votes
2answers
224 views

Identifying important words and phrases in text

I have text stored in a python string. What I Want To identify key words in that text. to identify N-grams in that text (ideally more than just bi and tri grams). Keep in mind... The text might ...
4
votes
1answer
236 views

Using NLTK in C# via IronPython

I'm using Visual Studio 2010. I have an IronPython console project and a C# console project. This IronPython script works fine when I run it by itself: import nltk def Simple(): baconIpsumFile ...
4
votes
2answers
216 views

How do I get a set of grammar rules from Penn Treebank using python & NLTK?

I'm fairly new to NLTK and Python. I've been creating sentence parses using the toy grammars given in the examples but I would like to know if it's possible to use a grammar learned from a portion of ...
4
votes
2answers
122 views

Is POS tagging deterministic?

I have been trying to wrap my head around why this is happening but am hoping someone can shed some light on this. I am trying to tag the following text: ae0.475 X mod ae0.842 X mod ...
4
votes
1answer
449 views

English grammar for parsing in NLTK

Is there a ready-to-use English grammar that I can just load it and use in NLTK? I've searched around examples of parsing with NLTK, but it seems like that I have to manually specify grammar before ...
4
votes
1answer
283 views

Named Entity Recognition using NLTK. Relevance of extracted keywords

I was checking out the Named Entity Recognition feature of NLTK. Is it possible to find out which of the extracted keywords is most relevant to the original text? Also, is it possible to know the type ...
4
votes
2answers
733 views

Python's NLTK vs. related Java Libraries?

I've used LingPipe, Stanford's NER, RiTa and various sentence similarity libraries for my previous Java projects that focused on text (pre)processing (indexing, xml tagging, topic detection, etc.) of ...
4
votes
1answer
259 views

Creating ARFF from word frequencies

I have some code that gives me a list of words with their frequencies that they occur in the text, I'm looking to make it so the code converts the top 10 words automatically into an ARFF with ...
4
votes
4answers
1k views

How to check if a word is an English word with Python?

I want to check in a Python program if a word is in the English dictionary. I believe nltk wordnet interface might be the way to go but I have no clue how to use it for such a simple task. def ...
4
votes
2answers
874 views

Using Nltk and Wordnet how do i convert simple tense verb into its present, past or past participle form?

Using Nltk and Wordnet how do i convert simple tense verb into its present, past or past participle form? For example: I want to write a function which would give me verb in expected form as ...
4
votes
2answers
596 views

Detect English verb tenses using NLTK

I am looking for a way given an English text count verb phrases in it in past, present and future tenses. For now I am using NLTK, do a POS (Part-Of-Speech) tagging, and then count say 'VBD' to get ...
4
votes
1answer
846 views

can NLTK/pyNLTK work “per language” (i.e. non-english), and how?

how can I tell nltk to treat the text in a particular language? BKG: once in a while i write a specialized NLP routine to do POS tagging, tokenizing etc. on a non-english (but still hindo-european) ...
4
votes
3answers
956 views

Python and .NET integration

I'm currently looking at python because I really like the text parsing capabilities and the nltk library, but traditionally I am a .Net/C# programmer. I don't think IronPython is an integration point ...
4
votes
5answers
839 views

what is the true difference between lemmatization vs stemming?

When do I use each ? Also...is the NLTK lemmatization dependent upon Parts of Speech? Wouldn't it be more accurate if it was?
4
votes
13answers
1k views

How to avoid computation every time a python module is reloaded

I have a python module that makes use of a huge dictionary global variable, currently I put the computation code in the top section, every first time import or reload of the module takes more then one ...
3
votes
1answer
133 views

Tweet Classifier Feature-Selection NLTK

I'm currently trying to classify Tweets using the Naive Bayes classifier in NLTK. I'm classifying tweets related to particular stock symbols, using the '$' prefix (eg: $AAPL). I've been basing my ...
3
votes
1answer
99 views

Pip NLTK install issue on Ubuntu using Virtualenv

For reference here is the nltk installation documentation nltk here Is there a way to install nltk using pip and virtualenv? I have installed the dependencies using pip into my virtualenv but when I ...
3
votes
1answer
70 views

Keep python module in memory

I'm using the Natural Language Toolkit for python and in it there is a useful function called pos_tag. You can run nltk.pos_tag() on any a list of words that were tokenized from a sentence and it will ...
3
votes
0answers
97 views

Topic Modelling in MALLET vs NLTK

I just read a fascinating article about how MALLET could be used for topic modelling, but I couldn't find anything online comparing MALLET to NLTK, which I've already had some experience with. What ...

1 2 3 4 5 6