Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes in the Recommender System #3

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
29 changes: 28 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,28 @@
# Movie-Recommender-in-python
# Movie Recommendation System

## Overview
This Movie Recommendation System is built in Python using content filtering techniques to recommend movies similar to those a user has already watched. It utilizes various libraries such as NumPy, Pandas, Matplotlib, Seaborn and FuzzyWuzzy, for data manipulation, analysis, and visualization.

## Features
- Recommends movies based on content filtering
- Utilizes user ratings and movie metadata
- Visualizes data using Matplotlib and Seaborn
- Implements fuzzy matching for better movie title matching

## Libraries Used
- **NumPy**: For numerical operations and data manipulation.
- **Pandas**: For handling and analyzing datasets.
- **Matplotlib**: For plotting and visualizing data.
- **Seaborn**: For enhanced data visualization.
- **FuzzyWuzzy**: For string matching to improve movie title recommendations.

## Datasets
The program uses two datasets:
1. **Ratings Dataset**: Contains columns `user_id`, `item_id`, `rating`, and `timestamp`. This dataset is used to track user preferences.
2. **Movies Dataset**: Contains columns `item_id` and `title`. This dataset provides the titles of the movies to be recommended.

## Installation
To run this program, make sure you have Python installed, along with the required libraries. You can install the necessary libraries using pip:

```bash
pip install numpy pandas matplotlib seaborn fuzzywuzzy
872 changes: 741 additions & 131 deletions Recommender Systems with Python.ipynb

Large diffs are not rendered by default.

File renamed without changes.