Skip to content

tanujdhiman/Post-Recommender-System

Repository files navigation

Post Recommender System

A recommendation system is an extensive class of web applications that involves predicting the user responses to the options. A recommendation system has been a hot topic for a long time.

They are simple algorithms which aim to provide the most relevant and accurate items to the user by filtering useful stuff from of a huge pool of information base. Recommendation engines discovers data patterns in the data set by learning consumers choices and produces the outcomes that co-relates to their needs and interests.

In Real time examples are like Amazon, they have been using a recommendation engine for suggesting the goods or products that customers might also like.

More about Recommendation System Here :- https://en.wikipedia.org/wiki/Recommender_system

How to Design Recommendation System ??

Although machine learning (ML) is commonly used in building recommendation systems, it doesn’t mean it’s the only solution. There are many ways to build a recommendation system? simpler approaches, for example, we may have very few data, or we may want to build a minimal solution fast etc.

Assume that, for simpler video recommendation,In such that case, based on videos a user has watched, we can simply suggest same authors videos or same publications videos.

  • popularity based
  • classification based
  • collaborative filtering

Popularity based:

Easiest way to build a recommendation system is popularity based, simply over all the products that are popular, So how to identify popular products, which could be identified by which are all the products that are bought most, Example, In shopping store we can suggest popular dresses by purchase count.

Classification Based:

Second way to build a recommendation system is classification model , In that use feature of both users as well as products in order to predict whether this product liked or not by the user. When new users come, our classifier will give a binary value of that product liked by this user or not, In such a way that we can recommend a product to the user .

In above example using user features like Age, gender and product features like cost, quality and product history, based on this input our classifier will give a binary value user may like or not , based on that boolean we could recommend product to a customer.

Collaborative filtering:

Collaborative Filtering models which are based on assumption that people like things similar to other things they like, and things that are liked by other people with similar taste. Collaborative Filtering models are two types :

  1. Nearest neighbor
  2. Matrix factorization

Nearest neighbor collaborative filtering:

In these type of recommendation systems are recommending based on nearest neighbors, nearest neighbor approach used to find out either similar users or similar products. It can be looked at two ways,

  1. User based filtering
  2. Item based filtering

User-based collaborative filtering:

Find the users who have similar taste of products as the current user , similarity is based on purchasing behavior of the user, so based on the neighbor purchasing behavior we can recommend items to the current user.

Item-based collaborative filtering :

Recommend Items that are similar to the item user bought,similarity is based on co-occurrences of purchases Item A and B were purchased by both users X and Y then both are similar.

Matrix factorization:

It is basically model based collaborative filtering and matrix factorization is the important technique in recommendation system. When a user gives feed back to a certain movie they saw (say they can rate from one to five), this collection of feedback can be represented in a form of a matrix. Where each row represents each users, while each column represents different movies. Obviously the matrix will be sparse since not everyone is going to watch every movies, (we all have different taste when it comes to movies).

Reference :- https://medium.com/@madasamy/introduction-to-recommendation-systems-and-how-to-design-recommendation-system-that-resembling-the-9ac167e30e95

About

This repository contains the Recommendation System which Recommend post to User based on which type of Post User is interested.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published