Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

collaborative filtering in rails [closed]

I'm looking for a solution for collaborative filtering in rails or even possible examples. So far I have only found acts_as_recommendable which looks useful but I noticed it hasn't had any updates in the last 2 years.

Does anyone know of any other solutions and/or examples?

like image 433
holden Avatar asked Mar 15 '10 23:03

holden


3 Answers

Have you evaluated Apache Mahout? It is a Java based solution, with HTTP access to recommendation engine.

Reference:

Introducing Mahout

like image 110
Harish Shetty Avatar answered Nov 18 '22 01:11

Harish Shetty


This pertains to the examples part of your question, as both the libraries mentioned below are in Java.

The article referenced in above answer, written by Apache Mahout-Taste library author, has neat examples, source code of the examples( using 2.5GB wikipedia data) , and an excellent packaging to run and see those examples in action, in a few minutes.

Apache Mahout-Taste

The specific section is Building a recommendation engine

Here is another open source recommendation engine. easyrec

like image 34
so_mv Avatar answered Nov 18 '22 01:11

so_mv


In 2013, there's the ActiveRecord Reputation System gem by Twitter. There's also a free RailsCast on the topic.

like image 1
Thomas Klemm Avatar answered Nov 18 '22 03:11

Thomas Klemm