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?
