Tagged Questions

0
votes
4answers
91 views

How to make words into a category. (NLP)

I love to eat chicken. Today I went running, swimming and played basketball. My objective is to return FOOD and SPORTS just by analyzing these two sentences. How can you do that …
0
votes
1answer
64 views

chunking/text parsing using NLTK

I am trying to parse some text and diagram it, like you would a sentence. I am new to NLTK and am trying to find something in NLTK that will help me accomplish this. So far, I have …
0
votes
2answers
44 views

What is the default chunker for NLTK toolkit in Python?

I am using their default POS tagging and default tokenization..and it seems sufficient. I'd like their default chunker too. I am reading the NLTK toolkit book, but it does not se …
-3
votes
0answers
86 views

how to use NLTK in python [closed]

i want to use nltk . give me a example how can i use nltk......... i am unable to understand that nltk book.. so give me a example that uses nltk
0
votes
2answers
32 views

tokenizer errors with nltk

I'm very new to Python, and am trying to learn in conjunction with using nltk. I've been following some examples and testing things out, but it seems I am very limited in what I c …
2
votes
2answers
114 views

Which word stemmer should I use in nltk?

My goal is to analyze some corpus (twitter for the now) for emotional content. Just today I realized it would make a bit of sense to search for word stems as opposed to having an e …
1
vote
2answers
61 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 i …
0
votes
3answers
119 views

What is the best artificial-intelligence library for Python?

I know of NLTK. What else is there that complements this library? Or can do AI? NLTK is great because I can learn it with the book that it came out. Is there a library for AI just …
8
votes
4answers
667 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 NLT …
0
votes
5answers
386 views

Generating random sentences from custom text in Python’s NLTK?

I'm having trouble with the NLTK under Python, specifically the .generate() method. generate(self, length=100) Print random text, generated using a trigram language model. …
1
vote
3answers
268 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 u …
4
votes
12answers
646 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 …
1
vote
4answers
646 views

Python: Replace string with prefixStringSuffix keeping original case, but ignoring case when searching for match

So what I'm trying to do is replace a string "keyword" with "<b>keyword</b>" in a larger string. Example: myString = "HI there. You should higher that person for …
4
votes
4answers
306 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 …