Can anybody help me ?

If i already recommend some items to some user and suppose that user is not interested in those recommended items and he want to see more recommendations which are different from old one's.

Is there any mechanism or concept available in mahout which helps me to get new recommendation's other than old ones which were already recommended to user ......

link|improve this question
feedback

1 Answer

Yes. One way is to interpret this as like ratings. "Not interested" means a low rating of some kind. This is easy, and mostly works. However I don't like the approach. It depends on your application, but usually "not interested" means "irrelevant". It's best not to treat that as a rating.

The better way is to supply a Rescorer object to recommend() which filters out all item IDs that the user has marked as "not interested".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.