Questions tagged [recommendation-engine]

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

Recommendation engines are systems that suggest (recommend) to users various items for consideration. Some of the best known real world usage occurs at many major internet sites, such as Netflix, Amazon, Google, Yahoo, Pandora, last.fm, and others.

The input of such algorithms are most commonly the past purchases of the user, the rating the user gave to other goods, the items that have been purchased together ("customer who bought this also bought..."), the browsing history, etc.

For this tag, it is recommended that users focus on mathematical or statistical clarity, as it is a particularly advanced topic and implementation can take quite a bit of computational effort.

See also wikipedia.

1468 questions
-2
votes
1 answer

What is needed for a recommendation engine based on word/text input

I'm new to the Machine-Learning (AI) technology. I'm developing a messenger app for Android/IOs where I would like to recommend the users based on the texts/word/conversation a product from a relative small product portfolio. Example 1: In case the…
-2
votes
1 answer

Item to Item recommendation engine on Google Cloud

I found an implementation of the recommendation engine on Google Cloud here, which turned out to be the User to Item recommendation. I was wondering whether there is the similar solution for Google Cloud with Item to Item recommendation.
-2
votes
1 answer

Recommendation system to recommend similar companies

I am trying to build a recommendation system based on which industries they belong and what kind of work they do. eg. Microsoft, Apple and Google should show similar results, Tesla, General Motors, BMW should show similar results where can i find…
-2
votes
1 answer

Matrix Factorization find from which users score is generated

I am building a user based recommendation engine with Python and LightFM and I am trying to figure out how the score of a user to product is generated from the other users. Specifically, I am trying to answer the following questions: 1) Which users…
dapo
  • 697
  • 1
  • 12
  • 22
-2
votes
1 answer

Redis Json parsing error in Ubuntu 16.04

I wanted to implement the recommender system from https://github.com/groveco/content-engine (Look at web.py in that github, I've followed Readme steps) But the Redis server has some problem and throws up JSON parse error. I've added the screenshots…
-2
votes
1 answer

what's the meaning of high precision and very much low recall of a recommender system ?

I have not much knowledge about precision and recall. I have design a recommender system. Its gives me precision value = 0.409 and recall value = 0.067 we know that precision and recall are inversely related though I am not sure about that. Then…
-2
votes
1 answer

How to build a recommender engine from scratch ?

Hi i want to learn how to build a recommender system is there any good books or courses ? i already know about the theory i want to practice ( which langage or framework ) but i dont know where to go ! thanks in advance
Kans
  • 61
  • 5
-2
votes
1 answer

In Python, TypeError: unsupported operand type(s) for -: 'str' and 'int'

I am doing on making Movie Recommender system by collaborative filtering using Movielens dataset. And I follow this : http://blog.ethanrosenthal.com/2015/11/02/intro-to-collaborative-filtering/ but it doesn't work at ln[8]: import numpy as…
-2
votes
1 answer

How to Implement Recommendation system with Weka

I am making a Shopping Cart, it's a fairly small website. I am using Spring Framework with MySQL back-end. I want to implement a recommendation system using Weka. I just want to know how this will work? How the recommendations will actually be…
avs
  • 3
  • 1
  • 3
-2
votes
2 answers

CMS for DJ website

I am in the process of building a website for a DJ. Instead of reinventing the wheel, I thought I would look out there if there are any solution available. My requirements are: Ability to have own domain name & custom design Section for listening…
Olivier Lalonde
  • 19,423
  • 28
  • 76
  • 91
-2
votes
1 answer

Machine learning job recommender

I am new to machine learning and currently trying to build a job recommender system. I would like to know if there are any available data sets for job vacancies that I could use. Thanks
3lwan
  • 15
  • 8
-2
votes
1 answer

Location Based Product Recommendation Service Using Content Based Recommendations with ASP.Net & C#

I am in a bit of a crisis here. I would really appreciate your help on the matter. My Final Year Project is a "Location Based Product Recommendation Service". Now, due to some communication gap, we got stuck with an extremely difficult algorithm.…
-2
votes
1 answer

Suggesting the colours based on the background

What machine learning algorithm can be implemented to train a model that could suggest font colour based on the background colour?
-2
votes
1 answer

Computing similarity score for all user pairs

I have a data set containing 200,000 users, 25000 items, and 5 million ratings. I have to calculate the similarity score (by using either cosine or pearson correlation) of all possible user pairs. I have code written in c# and when ever i run it, I…
1 2 3
97
98