predict {rrecsys} | R Documentation |
Generate predictions.
Description
Generate predictions on any of the previously trained models.
Arguments
model |
A previously trained model, see |
Round |
object of class |
Value
All unrated items are predicted and the entire matrix is returned with the new ratings.
See Also
Examples
data("mlLatest100k")
smallMl <- mlLatest100k[1:50, 1:100]
exExpl <- defineData(smallMl)
model1exp <- rrecsys(exExpl, alg = "funk", k = 10, learningRate = 0.01, regCoef = 0.001)
pre1 <- predict(model1exp, Round = TRUE)
[Package rrecsys version 0.9.7.3.1 Index]