Skip to main content

Recommendation Engines - Know How

Recommendation Engines perform a variety of tasks - but the most important one is to find products that are most relevant to the user. Content based filtering, collaborative filtering and Association rules are common approaches to do so.

So let's first Understand basics of Recommendation Engines and then we'll later on Build Our Own Recommendation Engine !!!

HIGH QUALITY, PERSONALIZED ARE THE HOLY GRAIL FOR EVERY ONLINE STORE.
UNLIKE OFFLINE STORES, ONLINE STORES HAVE NO SALES PEOPLE.
USERS ON THE OTHER HAND HAVE LIMITED TIME AND PATIENCE, ARE NOT SURE WHAT THEY ARE LOOKING FOR ONLINE STORES HAVE A HUGE NUMBER OF PRODUCTS.
RECOMMENDATIONS HELP USERS NAVIGATE THE MAZE OF ONLINE STORES FIND WHAT THEY ARE LOOKING FOR FIND THINGS THEY MIGHT LIKE, BUT DIDN’T KNOW OF.
RECOMMENDATIONS HELP ONLINE STORES SOLVE THE PROBLEM OF DISCOVERY.
BUT HOW? Lets Explain this.

ONLINE STORES HAVE DATA
1) WHAT USERS BOUGHT
2) WHAT USERS BROWSED
3) WHAT USERS CLICKED
4) WHAT USERS RATED

All these DATA IS FED into Recommendation Engine to derive below:
TOP PICKS FOR YOU!!
IF YOU LIKE THIS, YOU’LL LOVE THAT!
IF YOU BUY THIS, YOU’LL NEED THAT!



Tasks Performed by Recommendation Engine

Filter Relevant Products

Sub Tasks: 1.1) PREDICT WHAT RATING THE USER WOULD GIVE A PRODUCT
1.2) PREDICT WHETHER A USER WOULD BUY A PRODUCT
1.3) RANK PRODUCTS BASED ON THEIR RELEVANCE TO THE USER

HOW TO FIND RELEVANT PRODUCTS
1) “SIMILAR” TO THE ONES THE USER “LIKED” (Content Based Filtering)
2) “LIKED”BY “SIMILAR” USERS (Collaborative Filtering)
3) PURCHASED ALONG WITH THE ONES THE USER “LIKED” (Association Rules)

RECOMMENDATION ENGINES NORMALLY USE ONE OR MORE OF THESE TECHNIQUES.

BEFORE WE GO AHEAD, LET’S JUST CLARIFY -
HOW DO WE KNOW THAT A USER “LIKES” A PRODUCT?
Ans) THESE ARE PRODUCTS THE USER
              PURCHASED
              CLICKED ON
              ADDED TO CART
              RATED HIGHLY
(IF THE USER RATES SOMETHING LOW, THAT’S IMPORTANT DATA TOO!)
SOMETIMES, STORES ALSO ASK FOR EXPLICIT INPUT FROM USERS.

Comments

Popular posts from this blog

Automatic Builds With GCP Cloud Build

Automatic Builds With GCP Cloud Build If you are looking for an easy way to automatically build your application in the cloud, then maybe Google Cloud Platform (GCP) Cloud Build is for you. In this post, we will build a Spring Boot Maven project with Cloud Build, create a Docker image for it, and push it to GCP Container Registry. 1. Introduction Cloud Build is the build server tooling of GCP, something similar as Jenkins. But, Cloud Build is available out-of-the-box in your GCP account and that is a major advantage. The only thing you will need is a build configuration file in your git repository containing the build steps. Each build step is running in its own Docker container. Several cloud builders which can be used as a build step are generally available. You can read more about Cloud Build on the  overview  and  concepts  website of GCP. There are three categories of build steps: Official  cloud builders provided by GCP; Community  cloud ...

EVENT DRIVEN MICROSERVICES

EVENT BASED MICROSERVICES - Event Sourcing In a Microservice Architecture, especially with Database per Microservice, the Microservices need to exchange data. For resilient, highly scalable, and fault-tolerant systems, they should communicate asynchronously by exchanging Events. In such a case, you may want to have Atomic operations, e.g., update the Database and send the message. If you have SQL databases and want to have distributed transactions for a high volume of data, you cannot use the two-phase locking (2PL) as it does not scale. If you use NoSQL Databases and want to have a distributed transaction, you cannot use 2PL as many NoSQL databases do not support two-phase locking. In such scenarios, use Event based Architecture with Event Sourcing. In traditional databases, the Business Entity with the current “state” is directly stored. In Event Sourcing, any state-changing event or other significant events are stored instead of the entities. It means the modifications of a Busines...

Introduction to Customer Segmentation in Python !!!

Introduction to Customer Segmentation in Python In this tutorial, you're going to learn how to implement customer segmentation using RFM(Recency, Frequency, Monetary) analysis from scratch in Python. In the Retail sector, the various chain of hypermarkets generating an exceptionally large amount of data. This data is generated on a daily basis across the stores. This extensive database of customers transactions needs to analyze for designing profitable strategies. All customers have different-different kind of needs. With the increase in customer base and transaction, it is not easy to understand the requirement of each customer. Identifying potential customers can improve the marketing campaign, which ultimately increases the sales. Segmentation can play a better role in grouping those customers into various segments. In this tutorial, you will cover the following topics: What is Customer Segmentation? Need of Customer Segmentation Types of Segmentation Customer...