Skip to content

mimansha98/Movie-Recommendation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Movie-Recommendation

A simple Movie Recommendation using Python

A simple Movie Recommendation Python Recommendation is done using cosine similarity between certain features of the movies.

Instructions: Follow the following steps- Step 1: Read CSV File

Step 2: Select Features

Step 3: Create a column in DF which combines all selected features

Step 4: Create count matrix from this new combined column

Step 5: Compute the Cosine Similarity based on the count_matrix

Step 6: Get index of this movie from its title

Step 7: Get a list of similar movies in descending order of similarity score

Step 8: Print titles of first ** movies