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
I use the model to suggest recommendations. But, when there is new data, the entire model needs to be retrained from the start. Is there an option to use continuous learning, and only the new data to be added, for training the model?
The text was updated successfully, but these errors were encountered:
You can't do that with implicit out of the box because you need a way to construct a user_items matrix for new data, also set up a tool to provide previously trained factors. Also you might not want to overfit on new data if you construct user_items matrix only on new streaming data
I've added support for incremental retraining in this PR #527 .
Having said that, you'll still need to maintain the list of items for each users you want to retrain like @gazon1 mentioned - so there are some complexities here that you'd have to implement. (for instance only retraining users/items after the number of liked items changes by some percentage, and then having some code to construct the user_items matrix for those users etc).
I use the model to suggest recommendations. But, when there is new data, the entire model needs to be retrained from the start. Is there an option to use continuous learning, and only the new data to be added, for training the model?
The text was updated successfully, but these errors were encountered: