Hacker News new | ask | show | jobs
by hmrmaxwell 5009 days ago
What algorithm are you using to make recommendations? I've been looking around in the recommendable source but can't seem to find it.
1 comments

That's under `lib/recommendable/acts_as_recommended_to.rb` towards the bottom. It's a combination of the `similarity_with(rater)` and `predict(object)` methods. Additionally, I detail the algorithm here: http://davidcelis.com/blog/2012/02/07/collaborative-filterin...
Thanks!