Saving Spacy's text categorizer model each and every 100th iteration #10253
Answered
by
ljvmiranda921
111kannan
asked this question in
Help: Other Questions
-
I want to save the models each and every 100th iteration during training. Can anyone suggest to me where I should change the configuration in config.cfg file? |
Beta Was this translation helpful? Give feedback.
Answered by
ljvmiranda921
Feb 10, 2022
Replies: 1 comment
-
Hi @111kannan , we don't have a feature for this. The training process only saves the best and last models. If you wish, you might try working around the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
111kannan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @111kannan , we don't have a feature for this. The training process only saves the best and last models. If you wish, you might try working around the
nlp.to_disk
function and write a hook for it, but it's more of a hack.