Created
September 30, 2018 22:51
-
-
Save emmagrimaldi/c75c10639341497bcf108703198b017c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| import pandas as pd | |
| from rake_nltk import Rake | |
| import numpy as np | |
| from sklearn.metrics.pairwise import cosine_similarity | |
| from sklearn.feature_extraction.text import CountVectorizer | |
| df = pd.read_csv('https://query.data.world/s/uikepcpffyo2nhig52xxeevdialfl7') | |
| df = df[['Title','Genre','Director','Actors','Plot']] | |
| df.head() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment