0

Column Name: "Genres" //This will contain the genres of movies User genre: "Action Adventure"

I want to perform cosine similarity on this data, compare user genre with genres of different movies, sort and display the names of movies having similar genre. How should I do it?

Pratik
  • 1

1 Answers1

1

First of all, your question is very general and missing crucial information - you should highlight which language and dataset you are planning to use. You should also include it in tags of the post.

Anyway, I suppose that you are working with one of the IMDB datasets. I can personally recommend this article and this article. The authors explain the basic techniques how to build a recommender system in Python using scikit-learn library including cosine similarity.

xsite
  • 11
  • 1