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

learn more… | top users | synonyms

0
votes
0answers
3 views

Mahout Recommender - How to override or look into the code?

I'm creating an Mahout recommender system now. I would like to know how can I optimize the code. I read on some guides on how to optimize the recommender, but I don't know how to do it on the Mahout ...
-2
votes
0answers
19 views

What is latent factor model [closed]

From google I know that latent factor model is frequently used in recommendation system, and it seems that latent factor model has some relation to matrix factoring, but what is latent factor model on ...
-1
votes
0answers
7 views

Which off-the-shelf recommendation/personalization engine offer recommendations using both MC and Manual input? [closed]

I want to run a manual+machine learning engine for recommending TV shows. I should also be able to manually add certain recommendations like 'User who watches Show X is likely to watch Show Y as well ...
0
votes
1answer
14 views

Does mahout work real time or does it pre-process the data based on the algorithm rules?

I am trying to build a recommendation engine, for that I am thinking of using apache mahout but I am unable to make out if mahout process the data in real time or does it pre-process the data when the ...
0
votes
0answers
29 views

Real time recommendations with graph databases [closed]

I was browsing through stuff related to item recommendations and I came across a hybrid solution that used Mahout, Hadoop and S4 (Hadoop for precomputed data and S4 for real time data). However I ...
0
votes
1answer
23 views

Mahout Datamodel with duplicate user,item enteries but different preference values

I was wondering how the distributed mahout recommender job org.apache.mahout.cf.taste.hadoop.item.RecommenderJob handled csv files where duplicate and triplicate user,item entries exist but with ...
1
vote
1answer
18 views

Apache Mahout. Limit or Offset for recommendations

I wanted to implement a pagination with mahout(specfying, offset and max result) how do I achieve that with Mahout? so let's say I have this code that generates recommendations File ratingsFile = ...
-2
votes
1answer
41 views

How to use mahout in a java project in eclipse [closed]

I am making a web project on recommendations . Now i have made dynamic web project in which user is asked to enter his name,movie name,genre and these all things enter into database.I will be ...
1
vote
0answers
35 views

Giving relative weight to items in recommendation engine

I am trying to build an item-item recommendation engine. I have classify my item in different categories.But I am facing problem as how to give weight to each category taking other categories in ...
0
votes
1answer
83 views

Using machine learning to de-duplicate data

I have the following problem and was thinking I could use machine learning but I'm not completely certain it will work for my use case. I have a data set of around a hundred million records ...
0
votes
2answers
78 views

Algorithm for Keyword based Recommendation

I am currently creating a web application that allows users to upload photos, then add tags to them(around 5 tags) what I ideally want is to generate a recommendation based on the tags used by the ...
0
votes
1answer
60 views

What is the most effective method for handling large scale dynamic data for recommendation system?

We re thinking on a recommendation system based on large scale data but also looking for a professional way to keeping a dynamic DB structure for working in faster manner. We consider some of the ...
0
votes
1answer
29 views

How to calculate correlation if one value is 0

For calculation the pearsons coefficient between two arrays I use the following : double[] arr1 = new double[4]; arr1[0] = 1; arr1[1] = 1; arr1[2] = 1; arr1[3] = 1; double[] ...
0
votes
0answers
42 views

Large scale recommender

I am dealing with a recommendation problem, which involves 3 million users and 500,000 products. The purpose of the recommendation is to recommend 5-10 more products to the particular user when ...
0
votes
0answers
31 views

Best way to deliver recommendations online using Python and Crab?

I've begun experimenting with the Crab recommender. My plan is to do item based recommendations and do the calculations overnight. What is the best way to achieve memory persistence for the ...
1
vote
1answer
58 views

How can we combine multiple data types in Myrrix for recommendation?

In our case, we have users' click stream, items' attributes (like category, tags and so on), favorites about item, and collections for items. How can we combine these data as Myrrix's input data?
1
vote
1answer
44 views

Get user neighborhood from additional data in collaborative filtering

I wanted to do recommendation based on multiple datasets like in Utilizing multiple, weighed data models for a Mahout recommender But my problem is that additional data sets does not translate well ...
1
vote
2answers
110 views

Mongodb find best match

I would like to build a query that returns the best matching document in the DB. i.e I would like to find a document with the following fields - "animal":"dog" "color":"brown" "pattern":"dots" ...
2
votes
1answer
139 views

Utilizing multiple, weighed data models for a Mahout recommender

I have a boolean preference recommender based on user similarity. My data set essentially contains relations where ItemId are articles the user has decided to read. I'd like to add a second data ...
1
vote
1answer
36 views

Combining UserSimilarity and ItemSimilarity for a recommendation in Mahout

I have two separate Mahout recommenders set up, one providing recommendations based on user similarity and one based on item similarity. What I really want is a recommender that would base its ...
0
votes
0answers
25 views

Recommendation/Suitability engine design pattern

I'm looking for a design pattern/algorithm for building a recommendation/suitability engine similar to that of a dating website. Assume that we want to find the most suitable car given a specific set ...
0
votes
1answer
34 views

New system cold start: Recommender systems

I have built a recommender systems which has tens of thousands of items and their feature descriptions, but no user profiles as of now. I am looking for pointers to approaches that can help me ...
0
votes
0answers
48 views

How can i access users google search history?

using this link: https://history.google.com/history/lookup?q=&output=rss&num=1000 we can access our google search history in xml format. All want to do is access this xml file of different ...
0
votes
1answer
32 views

Group recommendation system

In our application, we have users who can create or join a group. Currently we want to build a recommendation system in which given a group & the group members compute non-members of the group who ...
1
vote
1answer
95 views

Recommendation system with large amount of data

I'm implementing a movie recommendation system with real user data. I planned to take the collaborative filtering method. However, this kind of methods usually involve a huge matrix storing the users ...
0
votes
1answer
130 views

using mahout: difference between running a .jar and typing console instructions

I am a little bit confused with mahout: I have the impression that there are two ways to use it: executing a .jar, using the Taste recommender using the command line, e.g. mahout recommenditembased ...
0
votes
2answers
85 views

should I use mahout for this?

I want to recommend items that are tagged and are categorized into three price categories (cheap, regular and expensive). I know that with Mahout recommendation could be achieved but here's why I ...
0
votes
0answers
40 views

Create relationship between tags or interests using PHP

I've been searching some articles about creating tag relationships. I'm importing into an app, user interests from facebook API. These interests should be usefull to compare and relate with other ...
0
votes
1answer
67 views

Evaluation of a recommendation system based on similarity criteria

I have built a recommender system that recommends the first 10 items similar to an item, based on a set of a weighted metrics. Right now all one can do is select an item and the system shows the first ...
1
vote
1answer
154 views

Apache Mahout - should I use it to build a custom recommender?

I am iteratively building a custom recommender system based on a frequently changing probabilistic latent factor model. I have already written some Java code that implements the model. It factorises ...
0
votes
2answers
107 views

Fuzzy logic application in recommender system

I was wondering how can I get some kind of advantage with using fuzzy logic in my recommender system? My system basically calculates similarity between users by: tanimoto coefficient cosinus ...
4
votes
1answer
99 views

how to use svd to recommend item based on items

I have trained a SVD model to recommend items based on userId. However, is there any way to recommend items based on items list instead of userId? For example, given a list of items, [1,2,3,4,5], ...
1
vote
1answer
73 views

how to evaluate svd similar items?

for a task like recommending a item for a user, I can split dataset in two: traning and test datasets, and I can evaluate the result by using mean absolute error. However, when I need to find similar ...
0
votes
2answers
52 views

finding minimum number of ratings needed in recommendation systems?

Is there an intelligent way to find out the minimum number of ratings you need from a user to start recommending items (Accurately). Like, say.. rate "x" items before I start recommending anything to ...
1
vote
0answers
100 views

Which recommendation engine can be used for a django site with a postgresql db?

It is for a media site with videos of different genres (quite similar to hulu content) built on Django with a postgresql DB
2
votes
1answer
335 views

Mahout recommender - adding content-based similarity to item-based recommender

I have a pretty standard Mahout item-based recommender for news articles (using click data, so preferences are Boolean): DataModel dataModel = new ReloadFromJDBCDataModel( new ...
0
votes
0answers
140 views

an R interface to mahout

Is there any package or a wrapper (something like Rweka) that can fully or partially link R and Mahout together ? I know we can always use a system() call to Mahout from R, but before getting into ...
0
votes
0answers
50 views

What is the best way to suggest related search terms to a user? [closed]

Similar to the way eBay does.... Like when a user searches "F-150" eBay suggests Related Searches: f250, f 250, f100, ranger, truck, silverado, f150 4x4, ford f150, f350, dodge ram
3
votes
5answers
202 views

How to train a classifier with only positive and neutral data?

My question : How to train a classifier with only positive and neutral data? I am building a personalized article recommendation system for education purposes. The data I use is from Instapaper. ...
1
vote
1answer
78 views

How to generate recommendation with matrix factorization

I've read some papers of Matrix Factorization(Latent Factor Model) in Recommendation System,and I can implement the algorithm.I can get the similar RMSE result like the paper said on the MovieLens ...
1
vote
1answer
267 views

What is the difference between SVD and SVM

I know the abbreviations SVM(Support Vector Machines) and SVD(Singular Value Decomposition) and that both SVM, SVD are used in recommendation engines. In lay man's terms what is the difference ...
0
votes
1answer
189 views

Can I use Apache Mahout Taste for User Preferences matching?

I am trying to match objects based on predefined user preferences. A simple example would be finding best matching vechicle. Lets say a user 'Tom' is offered a rented vehicle for travel based on his ...
0
votes
0answers
49 views

Design a system which suggests people (connections) a user might know (or would want to connect to) [closed]

It was an interview question. Given a user and it's list of connections recommend users he/she would like to connect to. This is what I answered, I'd like to know if this seems to be a reasonable ...
1
vote
1answer
82 views

How can I measure similarity between users who answer to the same questions [closed]

I am working on a project for recommending contents to the users. I want to create a profile from each user so that I can cluster them and offer common recommendations, but before I have to be able to ...
1
vote
2answers
623 views

Recommendation engine using google-prediction-api?

In google's prediction api page, it says we can use it for recommendation of webpages / products... Can someone please show me how, for example: I have 500,000 members purchased history I have ...
0
votes
1answer
85 views

Suggestion/Recommendation engine for processes

I have some tables with several jobs, dependencies and elapsed times. The purpose of the engine is that when you insert the name of the job, it gives you a recommendation about what process to check ...
-2
votes
1answer
113 views

how to build movie recommendation app in ruby on rails [closed]

I wanna build a movie recommendation app,here is what i wanna do pull search result from twitter, example : "best movie ever" , i would create model Tweet , then i pull movie on theater from ...
3
votes
1answer
547 views

Mahout content-based recommendation

I am trying to create a show recommender using the information about the show so I believe this is content based. I want a person to select a show they have watched and be recommended similar shows ...
1
vote
2answers
147 views

Algorithms for Mining Tuples of Data on huge sample space

I read that Apriori algorithm is used to fetch association rules from the dataset like a set of tuples. It helps us to find the most frequent 1-itemsets, 2-itemsets and so-on. My problem is bit ...
3
votes
2answers
866 views

Web page recommender system

I am trying to build a recommender system which would recommend webpages to the user based on his actions(google search, clicks, he can also explicitly rate webpages). To get an idea the way google ...

1 2 3 4