I have written a Python code to train Brill Tagger from NLTK library on some 8000 English sentences and tag some 2000 sentences.
The Brill Tagger takes many, many hours to train and finally when it finished training, the last statement of the program had some tiny syntax error and the code, therefore, did not return the output.
Is it possible to retain the tagger in the trained state while correcting the error and getting the program running without having to wait several hours for the tagger to be trained on the very same data?