-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3cd22da
commit edfda9a
Showing
1 changed file
with
6 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,39 @@ | ||
## Movie Recommendation System | ||
|
||
| ||
|
||
* At some point each one of us must have wondered where all the recommendations that Netflix, Amazon, Google give us, come from. We often rate products on the internet and all the preferences we express and data we share (explicitly or not), are used by recommender systems to generate, in fact, recommendations. The two main types of recommender systems are either collaborative or content-based filters: these two names are pretty self-explanatory, but let’s look at a couple of examples to better understand the differences between them. I will use movies as an example (because if I could, I would be watching movies/tv shows all the time), but keep in mind that this type of process can be applied for any kind of product you watch, listen to, buy, and so on. | ||
|
||
| ||
|
||
 | ||
|
||
| ||
|
||
### Why Recommendation System ? | ||
|
||
| ||
|
||
* Here's the list of advantages: | ||
* Increase in sales due to better personalized offers. | ||
* Enhanced customer experience. | ||
* More time spent on the plateform. | ||
* Customer retention. | ||
|
||
| ||
|
||
* A recent study by Epsilon found that 90% of consumers find personalization appealing. Plus, a further 80% claim they are more likely to do business with a company when offered personalized experiences. | ||
|
||
| ||
|
||
* The study also found that these consumers are 10x more likely to become VIP customers, who make more than 15 purchases per year. | ||
|
||
| ||
|
||
* The moral of the story? If you’re interested in cross selling or serving personalized offers, a recommendation system is right for you. | ||
|
||
|
||
| ||
|
||
### Types of Recommendations System | ||
|
||
| ||
|
||
* Content Based Filtering | ||
|
||
| ||
|
||
* Collaborative Filtering | ||
|
||
### Content Based Filtering | ||
|
||
| ||
|
||
 | ||
|
||
| ||
<p align="center"> | ||
<img src="images/cn.png"> | ||
</p> | ||
|
||
### Collaborative Based Filtering | ||
|
||
| ||
|
||
 | ||
|
||
| ||
<p align="center"> | ||
<img src="images/coll.png"> | ||
</p> | ||
|
||
#### The included notebook contains the implementations of content and collaborative filtering based recommendations system. |