Closed
Description
@dselivanov I’m not so sure it’s something desirable to have actually. I tried playing with centering and biases with implicit-feedback data, and I see that adding user biases usually gives a very small lift in metrics like HR@5, but item biases makes them much worse.
You can play with cmfrec
(version from git, the one from CRAN has bugs for this use-case) like this with e.g. the lastFM data or similar, which would fit the same model as WRMF
with feedback="implicit"
:
library(cmfrec)
Xvalues <- Xcoo@x
Xcoo@x <- rep(1, length(Xcoo@x))
model <- CMF(Xcoo, weight=Xvalues, NA_as_zero=TRUE,
center=TRUE, user_bias=TRUE, item_bias=TRUE)
Originally posted by @david-cortes in #44 (comment)
Metadata
Metadata
Assignees
Labels
No labels