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

this question is quite connected with my the other one from earlier (http://stackoverflow.com/questions/11814474/nltk-corpusreader-tokenize-one-file-at-the-time) but is different so I've started a new topic.

I have a large plaintext corpus which needs to be processed without losing the context of words and also I need to be able distinguish between different documents. The problem is how to store and read from this corpus?

I have tried to save the corpus with gensim and Mm.serialize function but the context and the order of words gets lost.

Another options I am currently thinking about are:

1) save all the documents to a single file, content of each document per line and iterate over the lines with use of NLTK PlainText corpus reader

2) create copy of the corpus tree and store in every file its content but with 1 word on the line. Then process it with NLTK WordList corpus reader

I still hope there is some faster and more efficient way, I would really appreciate the help .

Thank you

share|improve this question
I think Option 1) is reasonable for a few reasons: 1) you preserve the order of words in a sentence and of sentences in the collection 2) writing to many small files creates an overhead Also, think about whether it is worth optimising this particular part of your code. Input is read just once, and the things that follow are usually the slower part. Focus on them – mbatchkarov Aug 6 '12 at 16:10

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.