Welcome to ClientVPS Mirrors

Non-personalized Recommendation in rrecsys

Non-personalized Recommendation in rrecsys

The included baseline recommendation methods are the global mean rating (Global Average), item’s mean rating (Item Average), user's mean rating (User Average), as well as an the Most Popular Item Recommendation method that recommends to all users the items that are most popular.

To train a model for the rating prediction task we use the following commands:

data("ml100k")
d <- defineData(ml100k)
e <- evalModel(d, folds = 2)

globAv <- evalPred(e, alg = "globalaverage")
globAv

# Algorithm names might be matched on the registry partially.
itemAv <- evalPred(e,  "itemAver")
itemAv
userAv <- evalPred(e,  "useraverage")
userAv

Please notice that the baseline recommenders do not require any other argument.

The returned object are of type algAverageClass.

To get more details about the slots read the reference manual.

Need a high-speed mirror for your open-source project?
Contact our mirror admin team at info@clientvps.com.

This archive is provided as a free public service to the community.
Proudly supported by infrastructure from VPSPulse , RxServers , BuyNumber , UnitVPS , OffshoreName and secure payment technology by ArionPay.