Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 bunch of .txt files and i want to be able to use the corpus functions that NLTK provides for the corpus nltk_data.

i've tried PlaintextCorpusReader but i couldn't get further than:

>>>import nltk
>>>from nltk.corpus import PlaintextCorpusReader
>>>corpus_root = './'
>>>newcorpus = PlaintextCorpusReader(corpus_root, '.*')
>>>newcorpus.words()

How do i segment the newcorpus sentences using punkt? i tried using the punkt functions but the punkt functions couldn't read PlaintextCorpusReader class?

Can you also lead me to how i can write the segmented data into textfiles?

share|improve this question
sorry, see my comments below =) – Krolique Feb 25 '11 at 4:08

3 Answers

up vote 11 down vote accepted
+150

I think the PlaintextCorpusReader already segments the input with a punkt tokenizer, at least if your input language is english.

Documentation of PlainTextCorpusReader's __init__

__init__(
    self,
    root,
    fileids,
    word_tokenizer=WordPunctTokenizer(pattern='\\w+|[^\\w\\s]+', gaps=False, disc...,  
    sent_tokenizer=nltk.data.LazyLoader('tokenizers/punkt/english.pickle'),
    para_block_reader=<function read_blankline_block at 0x1836d30>,
    encoding=None
)

You can pass the reader a word and sentence tokenizer, but for the latter the default already is nltk.data.LazyLoader('tokenizers/punkt/english.pickle').

For a single string, a tokenizer would be used as follows (explained here, see section 5 for punkt tokenizer).

>>> import nltk.data
>>> text = """
... Punkt knows that the periods in Mr. Smith and Johann S. Bach
... do not mark sentence boundaries.  And sometimes sentences
... can start with non-capitalized words.  i is a good variable
... name.
... """
>>> tokenizer = nltk.data.load('tokenizers/punkt/english.pickle')
>>> tokenizer.tokenize(text.strip())
share|improve this answer
thanks for the explanation. Got it. but how do i output the segmented sentences into a separated txt file? – 2er0 Feb 10 '11 at 8:22
 >>>import nlkt
    >>>from nlkt.corpus import PlaintextCorpusReader
    >>>corpus_root = './'
    >>>newcorpus = PlaintextCorpusReader(corpus_root, '.*')
    """
      if the ./ dir contains the file my_corpus.txt, then you 
      can view say all the words it by doing this 
    """
    >>>newcorpus.words('my_corpus.txt')
share|improve this answer

There's a bunch of corpus examples in an extract from my book on creating custom corpora. None of them are specifically for PlaintextCorpusReader, but should point you in the general direction. I think you're pretty close already based on the code above.

share|improve this answer
Yep, Jacob. i've got the book and am reading it. how do i go about adding it as an nltk corpus like the rest available in nltk.download()? – 2er0 Feb 10 '11 at 8:22
I usually create my own corpus module to hold corpus readers. Or you could monkey-patch nltk.corpus. – Jacob Feb 10 '11 at 15:08
Hi Jacob, i've went through parts of your book. so now i've a bunch of txt files separated by newline for sentences. what do i do with them so that it's nltk readerable. i've copied the .txt files to the ~/nltk_data/corpora/<corpusname>, does that mean the corpus is readerable by any nltk corpus reader? how do i print out the tokenized text on a seperate file? – 2er0 Feb 18 '11 at 6:14
You're original code should work with the new corpus root. Then you just need to define the PlaintextCorpusReader in your own module, and you can start calling methods on it like sents() or paras() or whatever. – Jacob Feb 20 '11 at 1:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.