vote up 0 vote down star
4

i am intrested in recommendation engines these days and i wanna improve myself in this area.I am currently reading Programming Collective Intelligence (i think this is the best book about this subject) from OReilly (just started).But i dont have any ideas how to implement engine(what i mean by no idea dont know how to start).Lets say i have project like LastFM in my mind

  1. where do (should be implemented on database side or backend side)i start creating recommnedation engine?
  2. what level database knowledge will needed?
  3. is there any open source ones that can be used for help or any resource?
  4. what should be the first steps that i have to do?
flag

67% accept rate
What is your background? Do you already know how to program? In what language? And what is your focus - I would guess the back end logic, but if you also want the pages to look nice that is an extra challgenge ;-) – Simon Groenewolt Sep 10 at 21:37
i am cs student i have good knowledge c,c++,java and also c# on web side i have php on database intermediate mysql and a little oracle. – Burak Dede Sep 10 at 21:40

3 Answers

vote up 1 vote down

I've built up one for a video portal myself. The main idea that I had was about collecting data about everything:

  • Who uploaded a video?
  • Who commented on a video?
  • Which tags where created?
  • Who visited the video? (also tracking anonymous visitors)
  • Who favorited a video?
  • Who rated a video?
  • Which channels was the video assigned to?
  • Text streams of title, description, tags, channels and comments are collected by a fulltext indexer which puts weight on each of the data sources.

Next I created functions which return lists of (id,weight) tuples for each of the above points. Some only consider a limited amount of videos (eg last 50), some modify the weight by eg rating, tag count (more often tagged = less expressive). There are functions that return the following lists:

  • Similar videos by fulltext search
  • Videos uploaded by the same user
  • Other videos the users from these comments also commented on
  • Other videos the users from these favorites also favorited
  • Other videos the raters from these ratings also rated on (weighted)
  • Other videos in the same channels
  • Other videos with the same tags (weighted by "expressiveness" of tags)
  • Other videos played by people who played this video (XY latest plays)
  • Similar videos by comments fulltext
  • Similar videos by title fulltext
  • Similar videos by description fulltext
  • Similar videos by tags fulltext

All these will be combined into a single list by just summing up the weights by video ids, then sorted by weight. This works pretty well for around 1000 videos now. But you need to do background processing or extreme caching for this to be speedy.

I'm hoping that I can reduce this to a generic recommendation engine or similarity calculator soon and release as a rails/activerecord plugin. Currently it's still a well integrated part of my project.

To give a small hint, in ruby code it looks like this:

def related_by_tags
  tag_names.find(:all, :include => :videos).inject([]) { |result,t|
    result + t.video_ids.map { |v|
      [v, TAG_WEIGHT / (0.1 + Math.log(t.video_ids.length) / Math.log(2))]
    }
  }
end

I would be interested on how other people solve such algorithms.

link|flag
vote up 1 vote down

This is really a very big question you are asking, so even if I could give you a detailed answer I doubt I'd have the time.... but I do have a suggestion, take a look at Greg Linden's blog and his papers on item-based collaborative filtering. Greg implemented the idea of recommendations engines at Amazon using the item based approach, he really knows his stuff and his blog and papers are very readable.

Blog: http://glinden.blogspot.com/ Paper: http://www.computer.org/portal/web/csdl/doi/10.1109/MIC.2003.1167344 (I'm afraid you need to log in to read it in full, as you are a CS student this should be possible).

link|flag
vote up 0 vote down

We created a prototype recommendation engine based on the work of Swathi Yerubandi, you might want to contact her. https://twitter.com/SwathiY.

There is no 'basic' Recommendation Engine, it is always specific for the branch and target audience.

link|flag
yes you are right i have to be more specific, music recommendation engines what i am curious about. – Burak Dede Sep 11 at 7:43

Your Answer

Get an OpenID
or

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