You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just create a new corpus of X + X', and train on that. This is wasteful, because we'll be training a new model every time.
Implement a linked list of corpuses. So model points to a corpus, and the corpus contains a reference to the prior corpus. The child corpus derives it's vocabulary from the parent. And the model (already trained on the parent) can be trained on just the child.
e.g. Train on set of kernels X. Train. Add additional set of kernels X'. Train on X'.
The text was updated successfully, but these errors were encountered: