Popularity
3.6
Stable
Activity
0.0
Stable
263
31
63

Code Quality Rank: L4
Programming language: C
License: BSD 2-clause "Simplified" License
Tags: Machine Learning    

Recommender alternatives and similar libraries

Based on the "Machine Learning" category.
Alternatively, view Recommender alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Recommender or a related project?

Add another 'Machine Learning' Library

README

Recommender Build Status

GitHub stars GitHub license Language grade: C/C++

A C library for product recommendations/suggestions using collaborative filtering (CF).

Recommender analyzes the feedback of some users (implicit and explicit) and their preferences for some items. It learns patterns and predicts the most suitable products for a particular user.

Features

  • Collaborative Filtering
  • User and Item based recommenders
  • No external dependencies
  • Fast running time ~ 81 seconds for 10 million ratings (on MovieLens Data Sets)
  • Memory footprint under 160 MB for 10 million ratings

Webpage

http://ghamrouni.github.com/Recommender/

Building

To compile Recommender:

make

The compilation will produce libRecommender.a

To compile an example:

gcc test/test.c src/libRecommender.a -lm -o test/t1 -I src/

Alternatively you can use clang

clang test/test.c src/libRecommender.a -lm -o test/t1 -I src/

Keywords

Collaborative filtering, recommender system

References

  1. http://en.wikipedia.org/wiki/Recommendation_system
  2. http://public.research.att.com/~volinsky/netflix/kdd08koren.pdf
  3. http://research.yahoo.com/files/ieeecomputer.pdf


*Note that all licence references and agreements mentioned in the Recommender README section above are relevant to that project's source code only.