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
When adding a new items it results in a problem because if the index used for the new item is the same as the dimensions of the item_factors matrix it doesn't update the dimension because in the line 325 (if max_itemid = items:) there should be >= and not only the = sign.
The text was updated successfully, but these errors were encountered:
When trying to update with exactly 1 new item, partial_fit_items would
throw an exception since we had an off-by-one error in allocating
factor storage. Fix and add a unittest that would catch this.
Closes#556
When trying to update with exactly 1 new item, partial_fit_items would
throw an exception since we had an off-by-one error in allocating
factor storage. Fix and add a unittest that would catch this.
Closes#556
When adding a new items it results in a problem because if the index used for the new item is the same as the dimensions of the item_factors matrix it doesn't update the dimension because in the line 325 (if max_itemid = items:) there should be >= and not only the = sign.
The text was updated successfully, but these errors were encountered: