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