Non-Personalized Baselines
Recommendation.CoOccurrenceRecommendation.ItemMeanRecommendation.MostPopularRecommendation.ThresholdPercentageRecommendation.UserMean
Recommendation.CoOccurrence — TypeCoOccurrence(
data::DataAccessor,
item_ref::Integer
)Recommend items which are most frequently co-occurred with a reference item item_ref.
Recommendation.MostPopular — TypeMostPopular(data::DataAccessor)Recommend most popular items.
Recommendation.ThresholdPercentage — TypeThresholdPercentage(
data::DataAccessor,
th::AbstractFloat
)Recommend based on percentage of ratings which are greater than a certain threshold value th.
Recommendation.UserMean — TypeUserMean(data::DataAccessor)Recommend based on global user mean rating.
Recommendation.ItemMean — TypeItemMean(data::DataAccessor)Recommend based on global item mean rating.