Skip to content

Latest commit

 

History

History

Movie-Recommender-System using python

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Movie Recommendation System

Data Set

Data Set : This data set has been taken from Kaggle.com.

Use

This feature will recommend movies on the basis of the searches they did.

Dependencies

  • numpy
  • sklearn
  • difflab
  • pandas

APPROACH

The basic approach was to recommend movies on the basis of keywords rather than rating

  • First of all we gathered all the data from kaggle website

  • Then we kept all the important coloumns like genre, cast, crew, title. And converted all the data inside them into readable format and in the cast and crew section removed most of the names and kept only a few, like main 3 actors in cast and only director in crew.

  • Now we merged all of the coloumns into a single tag.

Screenshot 2022-03-14 at 11 22 36 AM

  • Since all the data is combined, we converted it into vector form using "sklearn.feature_extraction.text". Screenshot 2022-03-14 at 11 22 50 AM

  • Finally, when the search is done by the user, this system prints the closest vector's movie name using "cosine_similarity" Screenshot 2022-03-14 at 11 23 04 AM

Prediction

Screenshot 2022-03-14 at 11 23 21 AM