-
Notifications
You must be signed in to change notification settings - Fork 612
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incremental update with old users but new items #700
Comments
it looks like you're passing a (user, items) matrix to the partial_fit_items - but the method expects a (items, users) matrix. Does it work if you create it like
? |
Same error @benfred
Is my assumption correct: is it possible to retrain the model with some new items (so, same users as in the pretrained model, but new items)? If yes, could you please provide a small working example on how this could be done? |
I tried all variations, but it still does not work @benfred |
The best example I have is probably in the unittest here Lines 272 to 301 in cb2a66d
|
I want to use
model.partial_fit_items
for incremental model update. The users pool stays the same, but new items may arrive. This is the code I have:and I get the following error:
If my assumption that what I want to achieve is possible, please help me write correct code.
The text was updated successfully, but these errors were encountered: