Tagged Questions

For questions relating to recommendation engines, collaborative filtering, and personalization. Questions tend to be algorithmic or statistical in nature.

learn more… | top users | synonyms

17
votes
4answers
3k views

What should be considered when building a Recommendation Engine?

I've read the book Programming Collective Intelligence 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 ...
13
votes
5answers
700 views

Why is the Netflix Prize so challenging?

Having just read the recent article in Wired, I'm curious: what is it about the Netflix Prize that's so challenging? I mean this in the sincerest way possible, I'm just curious about the difficulties ...
13
votes
10answers
5k views

Mathematics for AI/Machine learning?

I intend to build a simple recommendation systems for fun. I read a little on the net and figured being good at math would enable on to build a good recommendation system. My math skills are not ...
11
votes
5answers
631 views

Tag/Keyword based recommendation

Hello I am wondering what algorithm would be clever to use for a tag driven e-commerce enviroment: Each item has several tags. IE: Item name: "Metallica - Black Album CD", Tags: "metallica", ...
10
votes
2answers
1k views

Mahout Plugin for ruby on rails

I want to use Apache Mahout in my project on Ruby on Rails for implementing recommendations and collaborative filtering. In Particular my requirements are: suggesting related tags. suggesting ...
8
votes
6answers
3k views

How to create my own recommendation engine?

I am interested in recommendation engines these days and I want to improve myself in this area. I am currently reading "Programming Collective Intelligence" I think this is the best book about this ...
6
votes
3answers
543 views

How can I implement a recommendation engine?

Pls also be patient with my writing, as my English is not proficient. As a programmer, I wanna learn about the algorithm, or the machine learning intelligence, that are implemented underneath such ...
6
votes
4answers
456 views

Writing a basic recommendation engine

I'm looking to write a basic recommendation engine that will take and store a list of numeric IDs (which relate to books), compare those to other users with a high volume of identical IDs and ...
5
votes
1answer
838 views

Python recommendation engine

Is there a recommendation engine for python similar to Java Taste?
5
votes
3answers
1k views

Recommendation Engines for Java applications

I was wondering to know if there is any open sources recommendation engines available? It should suggest some think like amazon and netflix. I heard a framework "Apache Mahout - Taste". I am trying it ...
4
votes
3answers
62 views

Concerning a recommendation engine

What's a fast "if user A and user B like product C, they might be interested to follow each other" algorithm. I don't think that calculating their similarity at runtime is smart enough, because it ...
4
votes
2answers
95 views

Recommendation engine for Alfresco?

I want to implement Amazon-like recommendations in Alfresco. For instance, if an employee searches for "financial reports 2007", the search UI will show related documents, for instance documents that ...
4
votes
3answers
714 views

collaborative filtering in rails

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 ...
4
votes
4answers
656 views

Neural Network Recommendation Engine

How would one design a neural network for the purpose of a recommendation engine. I assume each user would require their own network, but how would you design the inputs and the outputs for ...
4
votes
5answers
362 views

How to build a 'related questions' engine?

One of our bigger sites has a section where users can send questions to the website owner which get evaluated personally by his staff. When the same question pops up very often they can add this ...
4
votes
2answers
666 views

efficient library to recommend product based on user history

I have a database of which products every user has viewed and I want to recommend a product based on what similar users have viewed. Is there a Python library that can achieve this? I don't need ...
4
votes
2answers
440 views

Where can I learn about recommendation systems?

I'd like to play around with building a recommendations system, and by that I mean an algorithm that looks at preferences and/or reviews posted by a user and then makes recommendations for them, ...
4
votes
2answers
1k views

Open-source full-text article recommendation engines

I'm wondering if there are any good .NET recommendation algorithms available in open source projects, whether attached to a search engine or not. By recommendation I mean something that accepts a ...
3
votes
1answer
160 views

How stumbleupon does recommendation for its users?

I would like to know how stumbleupon recommends articles for its users?. Is it using a neural network or some sort of machine-learning algorithms or is it actually recommending articles based on what ...
3
votes
1answer
153 views

how to group photos with similar faces together

In most face recognition SDK, it only provides two major functions detecting faces and extracting templates from photos, this is called detection. comparing two templates and returning the similar ...
3
votes
3answers
182 views

(poor man's )product recommendation implementation

I am trying to build a poor man's recommendation system for a online store. I want to realize that kind of Amazon "Customers Who Bought This Item Also Bought" feature and I read a lot about it. I know ...
3
votes
3answers
317 views

Beyond item-to-item recommendations

Simple item-to-item recommendation systems are well-known and frequently implemented. An example is the Slope One algorithm. This is fine if the user hasn't rated many items yet, but once they have, I ...
3
votes
4answers
1k views

Recommendation Engine

I was wondering is ther any open-source Recommendation Engine thats good. I need it for my Food Review site
3
votes
2answers
495 views

Datasets for Apache Mahout

I am looking for datasets that can be used for implementing recommendation system usecase of Apache Mahout. I know of only MovieLens Data Sets from GroupLens Research group. Anyone knows any other ...
3
votes
6answers
597 views

What do I need in a database for “Customers Who Bought This Item Also Bought”?

Amazon has "Customers Who Bought This Item Also Bought". I am wondering and want to add this to my shopping cart which I made. What fields do I need in a database? Any website, blog or resources for ...
3
votes
6answers
737 views

Suggestion needed to learn Machine Learning and Information Retrieval

I want lo learn about Information Retrieval and Machine Learning. Which books do you recommend and in what order do you think is better to read them? The idea is to reach a good understanding of ...
2
votes
3answers
105 views

Recommendation algorithm (and implementation) for finding similar items and users

I have a database of about 700k users along with items they have watched/listened to/read/bought/etc. I would like to build a recommendation engine that recommends new items based on what users with ...
2
votes
1answer
42 views

Candidate Strategy for GenericUserBasedRecommender in Mahout

In mahout you can define a CandidateItemsStrategy for GenericItemBasedRecommender such that specific items e.g. of a certain category are excluded. When using a GenericUserBasedRecommender this is not ...
2
votes
2answers
164 views

Recommendation engine in Rails

I would like to have a recommendation functionality for my Rails web app. In particular, I want to recommend a newly signed-up user other users he may want to follow. Is there an engine/gem for this ...
2
votes
1answer
132 views

Recommendation engine for push information delivery

I want to develop a system that involves a recommendation engine for a push information delivery. I have seen plenty of explanations about using some engines, like Mahout Taste and Duine. Yet by using ...
2
votes
4answers
374 views

Developing a web application in python with neo4j

I'm planning to implement a recommendation engine, of which details are given here. 'Python' is my preferred choice along with 'neo4j' Database. Can anyone please point out, how integration of 'neo4j' ...
2
votes
3answers
177 views

Getting a steady flow of messages from twitter

I'd like to try to make a simple twitter client that learns my tastes and automatically finds friends and interesting tweets to provide me with relevant information. To get started, I would need to ...
2
votes
1answer
653 views

Recommender system: simple user-based collaborative filtering to evaluate with precision and recall

I'm looking for a very simple implementation in Java of a user-based collaborative filtering. I would like to evaluate the precision and recall of this CF with the movielens dataset. I've seen that ...
2
votes
1answer
270 views

How to implement this recommendation algorithm?

Most recommendation algorithm articles I've read are focused on the Netflix model where users rate items. What I want to do is slightly different (I think). Let's say that instead, I want to create a ...
2
votes
5answers
415 views

how to solve product recommendation problem like: User __bought__ XXX also __viewed__ YYY

I am currently learning recommender system, learned something about collaborative filtering, User CF, Item CF, it is obvious to use these algorithm to solve problem like: 1) User bought XXX also ...
2
votes
2answers
656 views

Basic Pseudocode for using SVD with Movielens/Netflix type data set

I'm struggling to figure out how exactly to begin using SVD with a MovieLens/Netflix type data set for rating predictions. I'd very much appreciate any simple samples in python/java, or basic ...
2
votes
1answer
142 views

How to continually filter interesting data to the user?

Take an example of a question/answer site with a 'browse' slideshow that will show one question/answer page at a time. The user clicks the 'next' button and a new question/answer is presented to him. ...
2
votes
2answers
81 views

What are some ways for a reccomendation engine to deal with one time, novel and potentially important content?

Say you built a recommendation engine that would recommend you live TV shows for you to watch. For regular shows, you could do a pretty good job using collaborative filtering and the like. But say it ...
2
votes
1answer
369 views

Movies recommendation engine conceptual database design

I am working at an movie recommendations engine and i'm facing a DB design issue. My actual database looks like this: MOVIES [ID,TITLE] KEYWORDS_TABLE [ID,KEY_ID] where ID is Foreign Key for ...
2
votes
1answer
310 views

Mahout Recommendations on Binary data

I'm a newbie to mahout.My aim is to produce recommendations on binary user purchased data.So i applied item-item similarity model in computing top N recommendations for movie lens data assuming 1-3 ...
2
votes
2answers
1k views

SOLR and Natural Language Parsing - Can I use it?

hey guys, my requirements are pretty similar to this: Requirements http://stackoverflow.com/questions/90580/word-frequency-algorithm-for-natural-language-processing Using Solr While the answer for ...
2
votes
2answers
367 views

Google App Engine Database Index

I need to store a undirected graph in a Google App Engine database. For optimization purposes, I am thinking to use database indexes. Using Google App Engine, is there any way to define the columns of ...
2
votes
3answers
334 views

How do you add recommendations to your ecommerce site?

Every ecommerce website would love to have a full featured recommendation engine like Amazon but how do you get one started? I found one open source project (Taste) but what other resources would you ...
1
vote
1answer
35 views

Mahout - JPA integration. Do I need a CSV file?

I have an existing data model using openJPA and I am trying to integrate a CF system using Mahout. Forgive me if this is a bone head question, but I just started researching mahout. Mahout in action ...
1
vote
1answer
56 views

Apache Mahout, to use or not to use

I am implementing a simple recommendation system for a collection of user created components. I was planning on doing this with JPA and a few dedicated EJB. My entities would have extra couple of ...
1
vote
1answer
30 views

Integrating content information with factorization-based collaborative filtering

I'm reading some papers in CF and noticed that most state-of-the-art methods are based on different factorization methods on the rating matrix only. I'd like to know if there are some representative ...
1
vote
0answers
41 views

What kind of content store Stumbleupon and Hunch? And how they get it? [closed]

Right now I am working on my master thesis. The topic is "Recommendation engine". It will be based on Hadoop, Hbase, Mahout etc. So i am prepared for big data mining but the most important thing in ...
1
vote
3answers
225 views

Apache Mahout Performance Issues

I have been working with Mahout in the past few days trying to create a recommendation engine. The project I'm working on has the following data: 12M users 2M items 18M user-item boolean ...
1
vote
2answers
80 views

How does one write a recommended item system? [closed]

Possible Duplicate: Where can I learn about recommendation systems? I am always interested in how web sites recommend articles and users to me, based on what I "like", what I follow, what I ...
1
vote
3answers
151 views

How to check my item based collaborative filtering algo is correct?

I have just created an algorithm for item based collaborative filtering, that can take an array of data in the form [username]=>[item]=>[rating] and recommend other items based on the current ...

1 2