Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Recommender system using pig or mahout

I am building a recommend system on Hadoop in a simple way can u give me an opinion on what to use to build this recommendation system.

I would like to use Apache pig or Apache mahout.

In my data set i am having

book_id,name,publisher
user_id,username
book_id,user_id,rating

i have my data in c.s.v format

so can you please suggest me which technology to use to produce item based and user based recommendation system.

like image 879
vakul Avatar asked Mar 21 '23 11:03

vakul


1 Answers

Apache Mahout will provide you with a off-shelf recommendation engine based on collaborative filtering algorithms.

With Pig you will have to implement those algorithms yourself - in Pig Latin, which may be a rather complex task.

like image 110
Evgeny Benediktov Avatar answered Apr 27 '23 11:04

Evgeny Benediktov