-
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
How to do incremental training? #31
Comments
You have to maintain your own item/user matrix and manage new/expired users or items. |
@leodesigner |
You can actually reuse last results as an initialization - this is better than starting from random initialization. In this case only new item/users should be initialized randomly or as an average of similar items/users. |
@leodesigner |
I am using implicit to do calculations once a 10-60 minutes. However the results are used in realtime web app (client browser side item sorting based on cousine distance). |
Like @leodesigner was saying - this isn't supported in this library right now, but you can build this on top of implicit with some effort. Adding support for incremental training would be a good feature for this library. |
If you update the You can also get recommendations for new users by passing a column vector as It's still not incremental training because item factors are not recalculated, but maybe it's helpful. |
Setting One could speed this up by the conjugate gradient method, detailed here: https://www.benfrederickson.com/fast-implicit-matrix-factorization/. The relevant part of that page would give something like this. def factor_user_cg(Cui, X, Y, regularization, cg_steps=3):
users, factors = X.shape
# we could cache this
YtY = Y.T.dot(Y) + regularization * np.eye(factors)
# random start
x = np.random.rand(factors) * 0.01
# calculate residual r = (YtCuPu - (YtCuY.dot(Xu), without computing YtCuY
r = -YtY.dot(x)
for i, confidence in nonzeros(Cui, u):
r += (confidence - (confidence - 1) * Y[i].dot(x)) * Y[i]
p = r.copy()
rsold = r.dot(r)
for _ in range(cg_steps):
# calculate Ap = YtCuYp - without actually calculating YtCuY
Ap = YtY.dot(p)
for i, confidence in nonzeros(Cui, u):
Ap += (confidence - 1) * Y[i].dot(p) * Y[i]
# standard CG update
alpha = rsold / p.dot(Ap)
x += alpha * p
r -= alpha * Ap
rsnew = r.dot(r)
p = r + (rsnew / rsold) * p
rsold = rsnew
return x |
generator new data and new user every day,how to do incremental training
The text was updated successfully, but these errors were encountered: