What should be considered when building a Recommendation Engine? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T05:36:37Z http://stackoverflow.com/feeds/question/54179 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54179/what-should-be-considered-when-building-a-recommendation-engine 11 What should be considered when building a Recommendation Engine? Allain Lalonde 2008-09-10T14:23:16Z 2008-11-23T15:48:39Z <p>I've read the book <a href="http://oreilly.com/catalog/9780596529321/" rel="nofollow" title="Programming Collective Intelligence">Programming Collective Intelligence</a> and found it fascinating. I'd recently heard about a challenge amazon had posted to the world to come up with a better recommendation engine for their system.</p> <p>The winner apparently produced the best algorithm by limiting the amount of information that was being fed to it.</p> <p>As a first rule of thumb I guess... "<strong>More information is not necessarily better when it comes to fuzzy algorithms."</strong></p> <p>I know's it's subjective, but ultimately it's a measurable thing (clicks in response to recommendations).</p> <p>Since most of us are dealing with the web these days and search can be considered a form of recommendation... I suspect I'm not the only one who'd appreciate other peoples ideas on this. </p> <p>In a nutshell, <strong>"What is the best way to build a recommendation ?"</strong></p> http://stackoverflow.com/questions/54179/what-should-be-considered-when-building-a-recommendation-engine/54206#54206 4 Answer by Jason Cohen for What should be considered when building a Recommendation Engine? Jason Cohen 2008-09-10T14:31:42Z 2008-09-10T14:31:42Z <p>You don't want to use "overall popularity" unless you have no information about the user. Instead, you want to align this user with similar users and weight accordingly.</p> <p>This is exactly what <a href="http://en.wikipedia.org/wiki/Bayesian_inference" rel="nofollow">Bayesian Inference</a> does. In English, it means adjusting the overall probability you'll like something (the average rating) with ratings from other people <em>who generally vote your way as well</em>.</p> <p>Another piece of advice, but this time ad hoc: I find that there are people where if they like something I will almost assuredly <em>not</em> like it. I don't know if this effect is real or imagined, but it might be fun to build in a kind of "negative effect" instead of just clumping people by similarity.</p> <p>Finally there's a company specializing in exactly this called <a href="http://sensearray.com/" rel="nofollow">SenseArray</a>. The owner (<a href="http://en.wikipedia.org/wiki/Ian_Clarke_(computer_scientist)" rel="nofollow">Ian Clarke</a> of <a href="http://freenetproject.org/" rel="nofollow">freenet fame</a>) is very approachable. You can use my name if you call him up.</p> http://stackoverflow.com/questions/54179/what-should-be-considered-when-building-a-recommendation-engine/312643#312643 1 Answer by Ricardo Cabral for What should be considered when building a Recommendation Engine? Ricardo Cabral 2008-11-23T15:48:39Z 2008-11-23T15:48:39Z <p>There is an entire research area in computer science devoted to this subject. I'd suggest reading <a href="http://scholar.google.com/scholar?q=recommendation+engine&amp;hl=en&amp;lr=&amp;btnG=Search" rel="nofollow">some articles</a>.</p>