I am using mahout core to implement several recommender functions. Among others, I want to implement a "trending products" recommendation function. Usually I would use something like Z-score, but I want to stick to things mahout provides and I could not find anything in the libabries.
Does anybody know, how to implement a trending function using mahout?
EDIT: What I try to accomplish: I want to implement a general purpose recommender engine, that should offer a) recommendations based on the the user history and b) recommendations about currently trending products. therefore products that got more clicks in the last N days then usual.
This question is only targeting b)