I have a trained and pickled NLTK tagger (Brill’s transformational rule-based tagger).
I want to use it on GAE. What the best way to do it?
I have a trained and pickled NLTK tagger (Brill’s transformational rule-based tagger). I want
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If your NLTK tagger code and data is of limited size, then carry it along with your GAE code.
If you have to act upon it to retrain the set, then storing the content of the file as a
BLOB in the datastorewould be an option, so that you get, analyze, retrain and put.But that will limit size of dataitem to be less than 1 MB because of GAE hardlimit.