diff --git a/movierecommendation1.ipynb b/movierecommendation1.ipynb new file mode 100644 index 000000000..60beee520 --- /dev/null +++ b/movierecommendation1.ipynb @@ -0,0 +1,3760 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Movie Recommendation System" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "id": "eRn6QKqOqLJS" + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\srija\\AppData\\Local\\Temp\\ipykernel_24728\\1662815981.py:2: DeprecationWarning: \n", + "Pyarrow will become a required dependency of pandas in the next major release of pandas (pandas 3.0),\n", + "(to allow more performant data types, such as the Arrow string type, and better interoperability with other libraries)\n", + "but was not found to be installed on your system.\n", + "If this would cause problems for you,\n", + "please provide us feedback at https://github.com/pandas-dev/pandas/issues/54466\n", + " \n", + " import pandas as pd\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 217 + }, + "id": "Zppld355rFRM", + "outputId": "0e0e9934-526b-412c-b471-b21a37187308" + }, + "outputs": [], + "source": [ + "movies = pd.read_csv('tmdb_5000_movies.csv')\n", + "credits = pd.read_csv('tmdb_5000_credits.csv')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Data Preprocessing" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "id": "s2aA_IWx703n" + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(4803, 4)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "credits.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "id": "kNTnWQqUrFPD" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + " | budget | \n", + "genres | \n", + "homepage | \n", + "id | \n", + "keywords | \n", + "original_language | \n", + "original_title | \n", + "overview | \n", + "popularity | \n", + "production_companies | \n", + "production_countries | \n", + "release_date | \n", + "revenue | \n", + "runtime | \n", + "spoken_languages | \n", + "status | \n", + "tagline | \n", + "title | \n", + "vote_average | \n", + "vote_count | \n", + "
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | \n", + "237000000 | \n", + "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... | \n", + "http://www.avatarmovie.com/ | \n", + "19995 | \n", + "[{\"id\": 1463, \"name\": \"culture clash\"}, {\"id\":... | \n", + "en | \n", + "Avatar | \n", + "In the 22nd century, a paraplegic Marine is di... | \n", + "150.437577 | \n", + "[{\"name\": \"Ingenious Film Partners\", \"id\": 289... | \n", + "[{\"iso_3166_1\": \"US\", \"name\": \"United States o... | \n", + "2009-12-10 | \n", + "2787965087 | \n", + "162.0 | \n", + "[{\"iso_639_1\": \"en\", \"name\": \"English\"}, {\"iso... | \n", + "Released | \n", + "Enter the World of Pandora. | \n", + "Avatar | \n", + "7.2 | \n", + "11800 | \n", + "
\n", + " | movie_id | \n", + "title | \n", + "cast | \n", + "crew | \n", + "
---|---|---|---|---|
0 | \n", + "19995 | \n", + "Avatar | \n", + "[{\"cast_id\": 242, \"character\": \"Jake Sully\", \"... | \n", + "[{\"credit_id\": \"52fe48009251416c750aca23\", \"de... | \n", + "
\n", + " | budget | \n", + "genres | \n", + "homepage | \n", + "id | \n", + "keywords | \n", + "original_language | \n", + "original_title | \n", + "overview | \n", + "popularity | \n", + "production_companies | \n", + "... | \n", + "runtime | \n", + "spoken_languages | \n", + "status | \n", + "tagline | \n", + "title | \n", + "vote_average | \n", + "vote_count | \n", + "movie_id | \n", + "cast | \n", + "crew | \n", + "
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | \n", + "237000000 | \n", + "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... | \n", + "http://www.avatarmovie.com/ | \n", + "19995 | \n", + "[{\"id\": 1463, \"name\": \"culture clash\"}, {\"id\":... | \n", + "en | \n", + "Avatar | \n", + "In the 22nd century, a paraplegic Marine is di... | \n", + "150.437577 | \n", + "[{\"name\": \"Ingenious Film Partners\", \"id\": 289... | \n", + "... | \n", + "162.0 | \n", + "[{\"iso_639_1\": \"en\", \"name\": \"English\"}, {\"iso... | \n", + "Released | \n", + "Enter the World of Pandora. | \n", + "Avatar | \n", + "7.2 | \n", + "11800 | \n", + "19995 | \n", + "[{\"cast_id\": 242, \"character\": \"Jake Sully\", \"... | \n", + "[{\"credit_id\": \"52fe48009251416c750aca23\", \"de... | \n", + "
1 rows × 23 columns
\n", + "\n", + " | movie_id | \n", + "title | \n", + "overview | \n", + "genres | \n", + "keywords | \n", + "cast | \n", + "crew | \n", + "
---|---|---|---|---|---|---|---|
0 | \n", + "19995 | \n", + "Avatar | \n", + "In the 22nd century, a paraplegic Marine is di... | \n", + "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... | \n", + "[{\"id\": 1463, \"name\": \"culture clash\"}, {\"id\":... | \n", + "[{\"cast_id\": 242, \"character\": \"Jake Sully\", \"... | \n", + "[{\"credit_id\": \"52fe48009251416c750aca23\", \"de... | \n", + "
1 | \n", + "285 | \n", + "Pirates of the Caribbean: At World's End | \n", + "Captain Barbossa, long believed to be dead, ha... | \n", + "[{\"id\": 12, \"name\": \"Adventure\"}, {\"id\": 14, \"... | \n", + "[{\"id\": 270, \"name\": \"ocean\"}, {\"id\": 726, \"na... | \n", + "[{\"cast_id\": 4, \"character\": \"Captain Jack Spa... | \n", + "[{\"credit_id\": \"52fe4232c3a36847f800b579\", \"de... | \n", + "
2 | \n", + "206647 | \n", + "Spectre | \n", + "A cryptic message from Bond’s past sends him o... | \n", + "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... | \n", + "[{\"id\": 470, \"name\": \"spy\"}, {\"id\": 818, \"name... | \n", + "[{\"cast_id\": 1, \"character\": \"James Bond\", \"cr... | \n", + "[{\"credit_id\": \"54805967c3a36829b5002c41\", \"de... | \n", + "
3 | \n", + "49026 | \n", + "The Dark Knight Rises | \n", + "Following the death of District Attorney Harve... | \n", + "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 80, \"nam... | \n", + "[{\"id\": 849, \"name\": \"dc comics\"}, {\"id\": 853,... | \n", + "[{\"cast_id\": 2, \"character\": \"Bruce Wayne / Ba... | \n", + "[{\"credit_id\": \"52fe4781c3a36847f81398c3\", \"de... | \n", + "
4 | \n", + "49529 | \n", + "John Carter | \n", + "John Carter is a war-weary, former military ca... | \n", + "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... | \n", + "[{\"id\": 818, \"name\": \"based on novel\"}, {\"id\":... | \n", + "[{\"cast_id\": 5, \"character\": \"John Carter\", \"c... | \n", + "[{\"credit_id\": \"52fe479ac3a36847f813eaa3\", \"de... | \n", + "
\n", + " | movie_id | \n", + "title | \n", + "overview | \n", + "genres | \n", + "keywords | \n", + "cast | \n", + "crew | \n", + "
---|---|---|---|---|---|---|---|
0 | \n", + "19995 | \n", + "Avatar | \n", + "In the 22nd century, a paraplegic Marine is di... | \n", + "[Action, Adventure, Fantasy, Science Fiction] | \n", + "[{\"id\": 1463, \"name\": \"culture clash\"}, {\"id\":... | \n", + "[{\"cast_id\": 242, \"character\": \"Jake Sully\", \"... | \n", + "[{\"credit_id\": \"52fe48009251416c750aca23\", \"de... | \n", + "
1 | \n", + "285 | \n", + "Pirates of the Caribbean: At World's End | \n", + "Captain Barbossa, long believed to be dead, ha... | \n", + "[Adventure, Fantasy, Action] | \n", + "[{\"id\": 270, \"name\": \"ocean\"}, {\"id\": 726, \"na... | \n", + "[{\"cast_id\": 4, \"character\": \"Captain Jack Spa... | \n", + "[{\"credit_id\": \"52fe4232c3a36847f800b579\", \"de... | \n", + "
2 | \n", + "206647 | \n", + "Spectre | \n", + "A cryptic message from Bond’s past sends him o... | \n", + "[Action, Adventure, Crime] | \n", + "[{\"id\": 470, \"name\": \"spy\"}, {\"id\": 818, \"name... | \n", + "[{\"cast_id\": 1, \"character\": \"James Bond\", \"cr... | \n", + "[{\"credit_id\": \"54805967c3a36829b5002c41\", \"de... | \n", + "
3 | \n", + "49026 | \n", + "The Dark Knight Rises | \n", + "Following the death of District Attorney Harve... | \n", + "[Action, Crime, Drama, Thriller] | \n", + "[{\"id\": 849, \"name\": \"dc comics\"}, {\"id\": 853,... | \n", + "[{\"cast_id\": 2, \"character\": \"Bruce Wayne / Ba... | \n", + "[{\"credit_id\": \"52fe4781c3a36847f81398c3\", \"de... | \n", + "
4 | \n", + "49529 | \n", + "John Carter | \n", + "John Carter is a war-weary, former military ca... | \n", + "[Action, Adventure, Science Fiction] | \n", + "[{\"id\": 818, \"name\": \"based on novel\"}, {\"id\":... | \n", + "[{\"cast_id\": 5, \"character\": \"John Carter\", \"c... | \n", + "[{\"credit_id\": \"52fe479ac3a36847f813eaa3\", \"de... | \n", + "
\n", + " | movie_id | \n", + "title | \n", + "overview | \n", + "genres | \n", + "keywords | \n", + "cast | \n", + "crew | \n", + "
---|---|---|---|---|---|---|---|
0 | \n", + "19995 | \n", + "Avatar | \n", + "In the 22nd century, a paraplegic Marine is di... | \n", + "[Action, Adventure, Fantasy, Science Fiction] | \n", + "[culture clash, future, space war, space colon... | \n", + "[{\"cast_id\": 242, \"character\": \"Jake Sully\", \"... | \n", + "[{\"credit_id\": \"52fe48009251416c750aca23\", \"de... | \n", + "
1 | \n", + "285 | \n", + "Pirates of the Caribbean: At World's End | \n", + "Captain Barbossa, long believed to be dead, ha... | \n", + "[Adventure, Fantasy, Action] | \n", + "[ocean, drug abuse, exotic island, east india ... | \n", + "[{\"cast_id\": 4, \"character\": \"Captain Jack Spa... | \n", + "[{\"credit_id\": \"52fe4232c3a36847f800b579\", \"de... | \n", + "
2 | \n", + "206647 | \n", + "Spectre | \n", + "A cryptic message from Bond’s past sends him o... | \n", + "[Action, Adventure, Crime] | \n", + "[spy, based on novel, secret agent, sequel, mi... | \n", + "[{\"cast_id\": 1, \"character\": \"James Bond\", \"cr... | \n", + "[{\"credit_id\": \"54805967c3a36829b5002c41\", \"de... | \n", + "
3 | \n", + "49026 | \n", + "The Dark Knight Rises | \n", + "Following the death of District Attorney Harve... | \n", + "[Action, Crime, Drama, Thriller] | \n", + "[dc comics, crime fighter, terrorist, secret i... | \n", + "[{\"cast_id\": 2, \"character\": \"Bruce Wayne / Ba... | \n", + "[{\"credit_id\": \"52fe4781c3a36847f81398c3\", \"de... | \n", + "
4 | \n", + "49529 | \n", + "John Carter | \n", + "John Carter is a war-weary, former military ca... | \n", + "[Action, Adventure, Science Fiction] | \n", + "[based on novel, mars, medallion, space travel... | \n", + "[{\"cast_id\": 5, \"character\": \"John Carter\", \"c... | \n", + "[{\"credit_id\": \"52fe479ac3a36847f813eaa3\", \"de... | \n", + "
\n", + " | movie_id | \n", + "title | \n", + "overview | \n", + "genres | \n", + "keywords | \n", + "cast | \n", + "crew | \n", + "
---|---|---|---|---|---|---|---|
0 | \n", + "19995 | \n", + "Avatar | \n", + "In the 22nd century, a paraplegic Marine is di... | \n", + "[Action, Adventure, Fantasy, Science Fiction] | \n", + "[culture clash, future, space war, space colon... | \n", + "[Sam Worthington, Zoe Saldana, Sigourney Weaver] | \n", + "[{\"credit_id\": \"52fe48009251416c750aca23\", \"de... | \n", + "
1 | \n", + "285 | \n", + "Pirates of the Caribbean: At World's End | \n", + "Captain Barbossa, long believed to be dead, ha... | \n", + "[Adventure, Fantasy, Action] | \n", + "[ocean, drug abuse, exotic island, east india ... | \n", + "[Johnny Depp, Orlando Bloom, Keira Knightley] | \n", + "[{\"credit_id\": \"52fe4232c3a36847f800b579\", \"de... | \n", + "
2 | \n", + "206647 | \n", + "Spectre | \n", + "A cryptic message from Bond’s past sends him o... | \n", + "[Action, Adventure, Crime] | \n", + "[spy, based on novel, secret agent, sequel, mi... | \n", + "[Daniel Craig, Christoph Waltz, Léa Seydoux] | \n", + "[{\"credit_id\": \"54805967c3a36829b5002c41\", \"de... | \n", + "
3 | \n", + "49026 | \n", + "The Dark Knight Rises | \n", + "Following the death of District Attorney Harve... | \n", + "[Action, Crime, Drama, Thriller] | \n", + "[dc comics, crime fighter, terrorist, secret i... | \n", + "[Christian Bale, Michael Caine, Gary Oldman] | \n", + "[{\"credit_id\": \"52fe4781c3a36847f81398c3\", \"de... | \n", + "
4 | \n", + "49529 | \n", + "John Carter | \n", + "John Carter is a war-weary, former military ca... | \n", + "[Action, Adventure, Science Fiction] | \n", + "[based on novel, mars, medallion, space travel... | \n", + "[Taylor Kitsch, Lynn Collins, Samantha Morton] | \n", + "[{\"credit_id\": \"52fe479ac3a36847f813eaa3\", \"de... | \n", + "
\n", + " | movie_id | \n", + "title | \n", + "overview | \n", + "genres | \n", + "keywords | \n", + "cast | \n", + "crew | \n", + "
---|---|---|---|---|---|---|---|
0 | \n", + "19995 | \n", + "Avatar | \n", + "In the 22nd century, a paraplegic Marine is di... | \n", + "[Action, Adventure, Fantasy, Science Fiction] | \n", + "[culture clash, future, space war, space colon... | \n", + "[Sam Worthington, Zoe Saldana, Sigourney Weaver] | \n", + "[James Cameron] | \n", + "
1 | \n", + "285 | \n", + "Pirates of the Caribbean: At World's End | \n", + "Captain Barbossa, long believed to be dead, ha... | \n", + "[Adventure, Fantasy, Action] | \n", + "[ocean, drug abuse, exotic island, east india ... | \n", + "[Johnny Depp, Orlando Bloom, Keira Knightley] | \n", + "[Gore Verbinski] | \n", + "
2 | \n", + "206647 | \n", + "Spectre | \n", + "A cryptic message from Bond’s past sends him o... | \n", + "[Action, Adventure, Crime] | \n", + "[spy, based on novel, secret agent, sequel, mi... | \n", + "[Daniel Craig, Christoph Waltz, Léa Seydoux] | \n", + "[Sam Mendes] | \n", + "
3 | \n", + "49026 | \n", + "The Dark Knight Rises | \n", + "Following the death of District Attorney Harve... | \n", + "[Action, Crime, Drama, Thriller] | \n", + "[dc comics, crime fighter, terrorist, secret i... | \n", + "[Christian Bale, Michael Caine, Gary Oldman] | \n", + "[Christopher Nolan] | \n", + "
4 | \n", + "49529 | \n", + "John Carter | \n", + "John Carter is a war-weary, former military ca... | \n", + "[Action, Adventure, Science Fiction] | \n", + "[based on novel, mars, medallion, space travel... | \n", + "[Taylor Kitsch, Lynn Collins, Samantha Morton] | \n", + "[Andrew Stanton] | \n", + "
\n", + " | movie_id | \n", + "title | \n", + "overview | \n", + "genres | \n", + "keywords | \n", + "cast | \n", + "crew | \n", + "
---|---|---|---|---|---|---|---|
0 | \n", + "19995 | \n", + "Avatar | \n", + "[In, the, 22nd, century,, a, paraplegic, Marin... | \n", + "[Action, Adventure, Fantasy, Science Fiction] | \n", + "[culture clash, future, space war, space colon... | \n", + "[Sam Worthington, Zoe Saldana, Sigourney Weaver] | \n", + "[James Cameron] | \n", + "
1 | \n", + "285 | \n", + "Pirates of the Caribbean: At World's End | \n", + "[Captain, Barbossa,, long, believed, to, be, d... | \n", + "[Adventure, Fantasy, Action] | \n", + "[ocean, drug abuse, exotic island, east india ... | \n", + "[Johnny Depp, Orlando Bloom, Keira Knightley] | \n", + "[Gore Verbinski] | \n", + "
2 | \n", + "206647 | \n", + "Spectre | \n", + "[A, cryptic, message, from, Bond’s, past, send... | \n", + "[Action, Adventure, Crime] | \n", + "[spy, based on novel, secret agent, sequel, mi... | \n", + "[Daniel Craig, Christoph Waltz, Léa Seydoux] | \n", + "[Sam Mendes] | \n", + "
3 | \n", + "49026 | \n", + "The Dark Knight Rises | \n", + "[Following, the, death, of, District, Attorney... | \n", + "[Action, Crime, Drama, Thriller] | \n", + "[dc comics, crime fighter, terrorist, secret i... | \n", + "[Christian Bale, Michael Caine, Gary Oldman] | \n", + "[Christopher Nolan] | \n", + "
4 | \n", + "49529 | \n", + "John Carter | \n", + "[John, Carter, is, a, war-weary,, former, mili... | \n", + "[Action, Adventure, Science Fiction] | \n", + "[based on novel, mars, medallion, space travel... | \n", + "[Taylor Kitsch, Lynn Collins, Samantha Morton] | \n", + "[Andrew Stanton] | \n", + "
\n", + " | movie_id | \n", + "title | \n", + "overview | \n", + "genres | \n", + "keywords | \n", + "cast | \n", + "crew | \n", + "
---|---|---|---|---|---|---|---|
0 | \n", + "19995 | \n", + "Avatar | \n", + "[In, the, 22nd, century,, a, paraplegic, Marin... | \n", + "[Action, Adventure, Fantasy, ScienceFiction] | \n", + "[cultureclash, future, spacewar, spacecolony, ... | \n", + "[SamWorthington, ZoeSaldana, SigourneyWeaver] | \n", + "[JamesCameron] | \n", + "
1 | \n", + "285 | \n", + "Pirates of the Caribbean: At World's End | \n", + "[Captain, Barbossa,, long, believed, to, be, d... | \n", + "[Adventure, Fantasy, Action] | \n", + "[ocean, drugabuse, exoticisland, eastindiatrad... | \n", + "[JohnnyDepp, OrlandoBloom, KeiraKnightley] | \n", + "[GoreVerbinski] | \n", + "
2 | \n", + "206647 | \n", + "Spectre | \n", + "[A, cryptic, message, from, Bond’s, past, send... | \n", + "[Action, Adventure, Crime] | \n", + "[spy, basedonnovel, secretagent, sequel, mi6, ... | \n", + "[DanielCraig, ChristophWaltz, LéaSeydoux] | \n", + "[SamMendes] | \n", + "
3 | \n", + "49026 | \n", + "The Dark Knight Rises | \n", + "[Following, the, death, of, District, Attorney... | \n", + "[Action, Crime, Drama, Thriller] | \n", + "[dccomics, crimefighter, terrorist, secretiden... | \n", + "[ChristianBale, MichaelCaine, GaryOldman] | \n", + "[ChristopherNolan] | \n", + "
4 | \n", + "49529 | \n", + "John Carter | \n", + "[John, Carter, is, a, war-weary,, former, mili... | \n", + "[Action, Adventure, ScienceFiction] | \n", + "[basedonnovel, mars, medallion, spacetravel, p... | \n", + "[TaylorKitsch, LynnCollins, SamanthaMorton] | \n", + "[AndrewStanton] | \n", + "
\n", + " | movie_id | \n", + "title | \n", + "overview | \n", + "genres | \n", + "keywords | \n", + "cast | \n", + "crew | \n", + "tags | \n", + "
---|---|---|---|---|---|---|---|---|
0 | \n", + "19995 | \n", + "Avatar | \n", + "[In, the, 22nd, century,, a, paraplegic, Marin... | \n", + "[Action, Adventure, Fantasy, ScienceFiction] | \n", + "[cultureclash, future, spacewar, spacecolony, ... | \n", + "[SamWorthington, ZoeSaldana, SigourneyWeaver] | \n", + "[JamesCameron] | \n", + "[In, the, 22nd, century,, a, paraplegic, Marin... | \n", + "
1 | \n", + "285 | \n", + "Pirates of the Caribbean: At World's End | \n", + "[Captain, Barbossa,, long, believed, to, be, d... | \n", + "[Adventure, Fantasy, Action] | \n", + "[ocean, drugabuse, exoticisland, eastindiatrad... | \n", + "[JohnnyDepp, OrlandoBloom, KeiraKnightley] | \n", + "[GoreVerbinski] | \n", + "[Captain, Barbossa,, long, believed, to, be, d... | \n", + "
2 | \n", + "206647 | \n", + "Spectre | \n", + "[A, cryptic, message, from, Bond’s, past, send... | \n", + "[Action, Adventure, Crime] | \n", + "[spy, basedonnovel, secretagent, sequel, mi6, ... | \n", + "[DanielCraig, ChristophWaltz, LéaSeydoux] | \n", + "[SamMendes] | \n", + "[A, cryptic, message, from, Bond’s, past, send... | \n", + "
3 | \n", + "49026 | \n", + "The Dark Knight Rises | \n", + "[Following, the, death, of, District, Attorney... | \n", + "[Action, Crime, Drama, Thriller] | \n", + "[dccomics, crimefighter, terrorist, secretiden... | \n", + "[ChristianBale, MichaelCaine, GaryOldman] | \n", + "[ChristopherNolan] | \n", + "[Following, the, death, of, District, Attorney... | \n", + "
4 | \n", + "49529 | \n", + "John Carter | \n", + "[John, Carter, is, a, war-weary,, former, mili... | \n", + "[Action, Adventure, ScienceFiction] | \n", + "[basedonnovel, mars, medallion, spacetravel, p... | \n", + "[TaylorKitsch, LynnCollins, SamanthaMorton] | \n", + "[AndrewStanton] | \n", + "[John, Carter, is, a, war-weary,, former, mili... | \n", + "
\n", + " | movie_id | \n", + "title | \n", + "tags | \n", + "
---|---|---|---|
0 | \n", + "19995 | \n", + "Avatar | \n", + "[In, the, 22nd, century,, a, paraplegic, Marin... | \n", + "
1 | \n", + "285 | \n", + "Pirates of the Caribbean: At World's End | \n", + "[Captain, Barbossa,, long, believed, to, be, d... | \n", + "
2 | \n", + "206647 | \n", + "Spectre | \n", + "[A, cryptic, message, from, Bond’s, past, send... | \n", + "
3 | \n", + "49026 | \n", + "The Dark Knight Rises | \n", + "[Following, the, death, of, District, Attorney... | \n", + "
4 | \n", + "49529 | \n", + "John Carter | \n", + "[John, Carter, is, a, war-weary,, former, mili... | \n", + "
... | \n", + "... | \n", + "... | \n", + "... | \n", + "
4804 | \n", + "9367 | \n", + "El Mariachi | \n", + "[El, Mariachi, just, wants, to, play, his, gui... | \n", + "
4805 | \n", + "72766 | \n", + "Newlyweds | \n", + "[A, newlywed, couple's, honeymoon, is, upended... | \n", + "
4806 | \n", + "231617 | \n", + "Signed, Sealed, Delivered | \n", + "[\"Signed,, Sealed,, Delivered\", introduces, a,... | \n", + "
4807 | \n", + "126186 | \n", + "Shanghai Calling | \n", + "[When, ambitious, New, York, attorney, Sam, is... | \n", + "
4808 | \n", + "25975 | \n", + "My Date with Drew | \n", + "[Ever, since, the, second, grade, when, he, fi... | \n", + "
4806 rows × 3 columns
\n", + "\n", + " | movie_id | \n", + "title | \n", + "tags | \n", + "
---|---|---|---|
0 | \n", + "19995 | \n", + "Avatar | \n", + "In the 22nd century, a paraplegic Marine is di... | \n", + "
1 | \n", + "285 | \n", + "Pirates of the Caribbean: At World's End | \n", + "Captain Barbossa, long believed to be dead, ha... | \n", + "
2 | \n", + "206647 | \n", + "Spectre | \n", + "A cryptic message from Bond’s past sends him o... | \n", + "
3 | \n", + "49026 | \n", + "The Dark Knight Rises | \n", + "Following the death of District Attorney Harve... | \n", + "
4 | \n", + "49529 | \n", + "John Carter | \n", + "John Carter is a war-weary, former military ca... | \n", + "