├── LICENSE ├── README.md └── MOVIE RECOMMENDATION SYSTEM BASED ON CONTENT BASED LEARNING.ipynb /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Dhruv Sharma 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dive Deeper: Unleash the Power of Content-Based Movie Recommendations 2 | Tired of generic recommendations that miss the mark? This repository houses a content-based movie recommendation system designed to curate personalized suggestions just for you! 3 | 4 | What Makes This Special? 5 | 6 | This system goes beyond ratings and delves into what makes a movie tick. Analyzing genre, cast, director, keywords, and other descriptive elements identifies films with a similar cinematic DNA to the ones you love. So, prepare to discover hidden gems and embark on unexpected movie marathons! 7 | 8 | What You'll Find: 9 | 10 | - Content-Based Recommendation Engine: Built on the foundation of content analysis, this system prioritizes movies that share characteristics with your favorites. 11 | - Clean and Modular Code: Explore well-structured and readable code, making it easy to understand the implementation and potentially contribute your ideas. 12 | - Open to Expansion: This system is designed to grow! Feel free to contribute additional movie data and features to refine the recommendations further. 13 | 14 | This is your chance to actively shape the future of this recommendation system. Here's how you can contribute: 15 | 16 | - Feature Requests: Have an idea for an additional data point or a desired functionality? Open an issue to discuss it! 17 | - Code Contributions: Fork the repository, make your changes, and submit a pull request to share your improvements. 18 | - Spread the Word: Star this repository and share it with fellow movie enthusiasts who crave a more tailored recommendation experience. 19 | 20 | Follow Me for More! 21 | 22 | Stay tuned for further updates and exciting projects by following me (your GitHub username) on GitHub. 23 | 24 | License: 25 | 26 | This repository is licensed under the MIT License. 27 | 28 | By Starring This Project: 29 | 30 | You show your support and help it gain visibility within the developer and movie buff communities. Let's build a recommendation system that truly caters to individual tastes! 31 | -------------------------------------------------------------------------------- /MOVIE RECOMMENDATION SYSTEM BASED ON CONTENT BASED LEARNING.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "code", 5 | "execution_count": 1, 6 | "id": "b62fec74", 7 | "metadata": {}, 8 | "outputs": [], 9 | "source": [ 10 | "import numpy as np #NumPy is mostly used for working with Numerical values as it makes it easy to apply mathematical functions\n", 11 | "import pandas as pd #Pandas is mostly used for data analysis tasks in Python.WITH THE HELP OF THIS LIBRARY USE OF ARRAYS BECOMES POSSIBLE AND EASIER.\n", 12 | " #Pandas is a Python library used for working with data sets. It has functions for analyzing, cleaning, exploring, and manipulating data\n", 13 | "movies=pd.read_csv(\"tmdb_5000_movies.csv\")#from here basically we are variable name movies in which our whole dataset is loaded.\n", 14 | "credits=pd.read_csv(\"tmdb_5000_credits.csv\")\n", 15 | "\n", 16 | "#as we know that we have two datasets.it's gonna be hectic for dealing with the two datasets so let's merge them and make it one.because both datasets contains same imformatiom for the same movies.\n", 17 | "#according to the dataset we can merge them on the basis of the movie_id and title.merge will only happen when there is something same in both of them.\n", 18 | "#so let's merge them on the basis title we can merge with title also.\n", 19 | "\n", 20 | "# movies.merge(credits,on=\"title\")#kisse.merge(merge karna hai)(kiske sath,on(on the basis of which thing)=title)\n", 21 | "# movies.merge(credits,on=\"title\").shape#(.shape) is used for giving me total rows and columns.\n", 22 | "# #we get total columns=23 not 24 because ek comman ke base pe humne merge kiya hai that's why.\n", 23 | "# movies=movies.merge(credits,on=\"title\")#esse basically humne yeh kiya hai ki joh hmara new merge dataset hogaa oska naam humne movies he rakhdiya hai.\n", 24 | "# movies.shape\n", 25 | "# credits.shape" 26 | ] 27 | }, 28 | { 29 | "cell_type": "code", 30 | "execution_count": 2, 31 | "id": "aec15ab7", 32 | "metadata": {}, 33 | "outputs": [ 34 | { 35 | "data": { 36 | "text/html": [ 37 | "
| \n", 55 | " | budget | \n", 56 | "genres | \n", 57 | "homepage | \n", 58 | "id | \n", 59 | "keywords | \n", 60 | "original_language | \n", 61 | "original_title | \n", 62 | "overview | \n", 63 | "popularity | \n", 64 | "production_companies | \n", 65 | "production_countries | \n", 66 | "release_date | \n", 67 | "revenue | \n", 68 | "runtime | \n", 69 | "spoken_languages | \n", 70 | "status | \n", 71 | "tagline | \n", 72 | "title | \n", 73 | "vote_average | \n", 74 | "vote_count | \n", 75 | "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", 80 | "237000000 | \n", 81 | "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... | \n", 82 | "http://www.avatarmovie.com/ | \n", 83 | "19995 | \n", 84 | "[{\"id\": 1463, \"name\": \"culture clash\"}, {\"id\":... | \n", 85 | "en | \n", 86 | "Avatar | \n", 87 | "In the 22nd century, a paraplegic Marine is di... | \n", 88 | "150.437577 | \n", 89 | "[{\"name\": \"Ingenious Film Partners\", \"id\": 289... | \n", 90 | "[{\"iso_3166_1\": \"US\", \"name\": \"United States o... | \n", 91 | "2009-12-10 | \n", 92 | "2787965087 | \n", 93 | "162.0 | \n", 94 | "[{\"iso_639_1\": \"en\", \"name\": \"English\"}, {\"iso... | \n", 95 | "Released | \n", 96 | "Enter the World of Pandora. | \n", 97 | "Avatar | \n", 98 | "7.2 | \n", 99 | "11800 | \n", 100 | "
| \n", 185 | " | budget | \n", 186 | "genres | \n", 187 | "homepage | \n", 188 | "id | \n", 189 | "keywords | \n", 190 | "original_language | \n", 191 | "original_title | \n", 192 | "overview | \n", 193 | "popularity | \n", 194 | "production_companies | \n", 195 | "... | \n", 196 | "runtime | \n", 197 | "spoken_languages | \n", 198 | "status | \n", 199 | "tagline | \n", 200 | "title | \n", 201 | "vote_average | \n", 202 | "vote_count | \n", 203 | "movie_id | \n", 204 | "cast | \n", 205 | "crew | \n", 206 | "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", 211 | "237000000 | \n", 212 | "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... | \n", 213 | "http://www.avatarmovie.com/ | \n", 214 | "19995 | \n", 215 | "[{\"id\": 1463, \"name\": \"culture clash\"}, {\"id\":... | \n", 216 | "en | \n", 217 | "Avatar | \n", 218 | "In the 22nd century, a paraplegic Marine is di... | \n", 219 | "150.437577 | \n", 220 | "[{\"name\": \"Ingenious Film Partners\", \"id\": 289... | \n", 221 | "... | \n", 222 | "162.0 | \n", 223 | "[{\"iso_639_1\": \"en\", \"name\": \"English\"}, {\"iso... | \n", 224 | "Released | \n", 225 | "Enter the World of Pandora. | \n", 226 | "Avatar | \n", 227 | "7.2 | \n", 228 | "11800 | \n", 229 | "19995 | \n", 230 | "[{\"cast_id\": 242, \"character\": \"Jake Sully\", \"... | \n", 231 | "[{\"credit_id\": \"52fe48009251416c750aca23\", \"de... | \n", 232 | "
| 1 | \n", 235 | "300000000 | \n", 236 | "[{\"id\": 12, \"name\": \"Adventure\"}, {\"id\": 14, \"... | \n", 237 | "http://disney.go.com/disneypictures/pirates/ | \n", 238 | "285 | \n", 239 | "[{\"id\": 270, \"name\": \"ocean\"}, {\"id\": 726, \"na... | \n", 240 | "en | \n", 241 | "Pirates of the Caribbean: At World's End | \n", 242 | "Captain Barbossa, long believed to be dead, ha... | \n", 243 | "139.082615 | \n", 244 | "[{\"name\": \"Walt Disney Pictures\", \"id\": 2}, {\"... | \n", 245 | "... | \n", 246 | "169.0 | \n", 247 | "[{\"iso_639_1\": \"en\", \"name\": \"English\"}] | \n", 248 | "Released | \n", 249 | "At the end of the world, the adventure begins. | \n", 250 | "Pirates of the Caribbean: At World's End | \n", 251 | "6.9 | \n", 252 | "4500 | \n", 253 | "285 | \n", 254 | "[{\"cast_id\": 4, \"character\": \"Captain Jack Spa... | \n", 255 | "[{\"credit_id\": \"52fe4232c3a36847f800b579\", \"de... | \n", 256 | "
| 2 | \n", 259 | "245000000 | \n", 260 | "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... | \n", 261 | "http://www.sonypictures.com/movies/spectre/ | \n", 262 | "206647 | \n", 263 | "[{\"id\": 470, \"name\": \"spy\"}, {\"id\": 818, \"name... | \n", 264 | "en | \n", 265 | "Spectre | \n", 266 | "A cryptic message from Bond’s past sends him o... | \n", 267 | "107.376788 | \n", 268 | "[{\"name\": \"Columbia Pictures\", \"id\": 5}, {\"nam... | \n", 269 | "... | \n", 270 | "148.0 | \n", 271 | "[{\"iso_639_1\": \"fr\", \"name\": \"Fran\\u00e7ais\"},... | \n", 272 | "Released | \n", 273 | "A Plan No One Escapes | \n", 274 | "Spectre | \n", 275 | "6.3 | \n", 276 | "4466 | \n", 277 | "206647 | \n", 278 | "[{\"cast_id\": 1, \"character\": \"James Bond\", \"cr... | \n", 279 | "[{\"credit_id\": \"54805967c3a36829b5002c41\", \"de... | \n", 280 | "
| 3 | \n", 283 | "250000000 | \n", 284 | "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 80, \"nam... | \n", 285 | "http://www.thedarkknightrises.com/ | \n", 286 | "49026 | \n", 287 | "[{\"id\": 849, \"name\": \"dc comics\"}, {\"id\": 853,... | \n", 288 | "en | \n", 289 | "The Dark Knight Rises | \n", 290 | "Following the death of District Attorney Harve... | \n", 291 | "112.312950 | \n", 292 | "[{\"name\": \"Legendary Pictures\", \"id\": 923}, {\"... | \n", 293 | "... | \n", 294 | "165.0 | \n", 295 | "[{\"iso_639_1\": \"en\", \"name\": \"English\"}] | \n", 296 | "Released | \n", 297 | "The Legend Ends | \n", 298 | "The Dark Knight Rises | \n", 299 | "7.6 | \n", 300 | "9106 | \n", 301 | "49026 | \n", 302 | "[{\"cast_id\": 2, \"character\": \"Bruce Wayne / Ba... | \n", 303 | "[{\"credit_id\": \"52fe4781c3a36847f81398c3\", \"de... | \n", 304 | "
| 4 | \n", 307 | "260000000 | \n", 308 | "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... | \n", 309 | "http://movies.disney.com/john-carter | \n", 310 | "49529 | \n", 311 | "[{\"id\": 818, \"name\": \"based on novel\"}, {\"id\":... | \n", 312 | "en | \n", 313 | "John Carter | \n", 314 | "John Carter is a war-weary, former military ca... | \n", 315 | "43.926995 | \n", 316 | "[{\"name\": \"Walt Disney Pictures\", \"id\": 2}] | \n", 317 | "... | \n", 318 | "132.0 | \n", 319 | "[{\"iso_639_1\": \"en\", \"name\": \"English\"}] | \n", 320 | "Released | \n", 321 | "Lost in our world, found in another. | \n", 322 | "John Carter | \n", 323 | "6.1 | \n", 324 | "2124 | \n", 325 | "49529 | \n", 326 | "[{\"cast_id\": 5, \"character\": \"John Carter\", \"c... | \n", 327 | "[{\"credit_id\": \"52fe479ac3a36847f813eaa3\", \"de... | \n", 328 | "
| ... | \n", 331 | "... | \n", 332 | "... | \n", 333 | "... | \n", 334 | "... | \n", 335 | "... | \n", 336 | "... | \n", 337 | "... | \n", 338 | "... | \n", 339 | "... | \n", 340 | "... | \n", 341 | "... | \n", 342 | "... | \n", 343 | "... | \n", 344 | "... | \n", 345 | "... | \n", 346 | "... | \n", 347 | "... | \n", 348 | "... | \n", 349 | "... | \n", 350 | "... | \n", 351 | "... | \n", 352 | "
| 4804 | \n", 355 | "220000 | \n", 356 | "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 80, \"nam... | \n", 357 | "NaN | \n", 358 | "9367 | \n", 359 | "[{\"id\": 5616, \"name\": \"united states\\u2013mexi... | \n", 360 | "es | \n", 361 | "El Mariachi | \n", 362 | "El Mariachi just wants to play his guitar and ... | \n", 363 | "14.269792 | \n", 364 | "[{\"name\": \"Columbia Pictures\", \"id\": 5}] | \n", 365 | "... | \n", 366 | "81.0 | \n", 367 | "[{\"iso_639_1\": \"es\", \"name\": \"Espa\\u00f1ol\"}] | \n", 368 | "Released | \n", 369 | "He didn't come looking for trouble, but troubl... | \n", 370 | "El Mariachi | \n", 371 | "6.6 | \n", 372 | "238 | \n", 373 | "9367 | \n", 374 | "[{\"cast_id\": 1, \"character\": \"El Mariachi\", \"c... | \n", 375 | "[{\"credit_id\": \"52fe44eec3a36847f80b280b\", \"de... | \n", 376 | "
| 4805 | \n", 379 | "9000 | \n", 380 | "[{\"id\": 35, \"name\": \"Comedy\"}, {\"id\": 10749, \"... | \n", 381 | "NaN | \n", 382 | "72766 | \n", 383 | "[] | \n", 384 | "en | \n", 385 | "Newlyweds | \n", 386 | "A newlywed couple's honeymoon is upended by th... | \n", 387 | "0.642552 | \n", 388 | "[] | \n", 389 | "... | \n", 390 | "85.0 | \n", 391 | "[] | \n", 392 | "Released | \n", 393 | "A newlywed couple's honeymoon is upended by th... | \n", 394 | "Newlyweds | \n", 395 | "5.9 | \n", 396 | "5 | \n", 397 | "72766 | \n", 398 | "[{\"cast_id\": 1, \"character\": \"Buzzy\", \"credit_... | \n", 399 | "[{\"credit_id\": \"52fe487dc3a368484e0fb013\", \"de... | \n", 400 | "
| 4806 | \n", 403 | "0 | \n", 404 | "[{\"id\": 35, \"name\": \"Comedy\"}, {\"id\": 18, \"nam... | \n", 405 | "http://www.hallmarkchannel.com/signedsealeddel... | \n", 406 | "231617 | \n", 407 | "[{\"id\": 248, \"name\": \"date\"}, {\"id\": 699, \"nam... | \n", 408 | "en | \n", 409 | "Signed, Sealed, Delivered | \n", 410 | "\"Signed, Sealed, Delivered\" introduces a dedic... | \n", 411 | "1.444476 | \n", 412 | "[{\"name\": \"Front Street Pictures\", \"id\": 3958}... | \n", 413 | "... | \n", 414 | "120.0 | \n", 415 | "[{\"iso_639_1\": \"en\", \"name\": \"English\"}] | \n", 416 | "Released | \n", 417 | "NaN | \n", 418 | "Signed, Sealed, Delivered | \n", 419 | "7.0 | \n", 420 | "6 | \n", 421 | "231617 | \n", 422 | "[{\"cast_id\": 8, \"character\": \"Oliver O\\u2019To... | \n", 423 | "[{\"credit_id\": \"52fe4df3c3a36847f8275ecf\", \"de... | \n", 424 | "
| 4807 | \n", 427 | "0 | \n", 428 | "[] | \n", 429 | "http://shanghaicalling.com/ | \n", 430 | "126186 | \n", 431 | "[] | \n", 432 | "en | \n", 433 | "Shanghai Calling | \n", 434 | "When ambitious New York attorney Sam is sent t... | \n", 435 | "0.857008 | \n", 436 | "[] | \n", 437 | "... | \n", 438 | "98.0 | \n", 439 | "[{\"iso_639_1\": \"en\", \"name\": \"English\"}] | \n", 440 | "Released | \n", 441 | "A New Yorker in Shanghai | \n", 442 | "Shanghai Calling | \n", 443 | "5.7 | \n", 444 | "7 | \n", 445 | "126186 | \n", 446 | "[{\"cast_id\": 3, \"character\": \"Sam\", \"credit_id... | \n", 447 | "[{\"credit_id\": \"52fe4ad9c3a368484e16a36b\", \"de... | \n", 448 | "
| 4808 | \n", 451 | "0 | \n", 452 | "[{\"id\": 99, \"name\": \"Documentary\"}] | \n", 453 | "NaN | \n", 454 | "25975 | \n", 455 | "[{\"id\": 1523, \"name\": \"obsession\"}, {\"id\": 224... | \n", 456 | "en | \n", 457 | "My Date with Drew | \n", 458 | "Ever since the second grade when he first saw ... | \n", 459 | "1.929883 | \n", 460 | "[{\"name\": \"rusty bear entertainment\", \"id\": 87... | \n", 461 | "... | \n", 462 | "90.0 | \n", 463 | "[{\"iso_639_1\": \"en\", \"name\": \"English\"}] | \n", 464 | "Released | \n", 465 | "NaN | \n", 466 | "My Date with Drew | \n", 467 | "6.3 | \n", 468 | "16 | \n", 469 | "25975 | \n", 470 | "[{\"cast_id\": 3, \"character\": \"Herself\", \"credi... | \n", 471 | "[{\"credit_id\": \"58ce021b9251415a390165d9\", \"de... | \n", 472 | "
4809 rows × 23 columns
\n", 476 | "| \n", 728 | " | movie_id | \n", 729 | "title | \n", 730 | "overview | \n", 731 | "genres | \n", 732 | "keywords | \n", 733 | "cast | \n", 734 | "crew | \n", 735 | "
|---|---|---|---|---|---|---|---|
| 0 | \n", 740 | "19995 | \n", 741 | "Avatar | \n", 742 | "In the 22nd century, a paraplegic Marine is di... | \n", 743 | "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... | \n", 744 | "[{\"id\": 1463, \"name\": \"culture clash\"}, {\"id\":... | \n", 745 | "[{\"cast_id\": 242, \"character\": \"Jake Sully\", \"... | \n", 746 | "[{\"credit_id\": \"52fe48009251416c750aca23\", \"de... | \n", 747 | "
| 1 | \n", 750 | "285 | \n", 751 | "Pirates of the Caribbean: At World's End | \n", 752 | "Captain Barbossa, long believed to be dead, ha... | \n", 753 | "[{\"id\": 12, \"name\": \"Adventure\"}, {\"id\": 14, \"... | \n", 754 | "[{\"id\": 270, \"name\": \"ocean\"}, {\"id\": 726, \"na... | \n", 755 | "[{\"cast_id\": 4, \"character\": \"Captain Jack Spa... | \n", 756 | "[{\"credit_id\": \"52fe4232c3a36847f800b579\", \"de... | \n", 757 | "
| 2 | \n", 760 | "206647 | \n", 761 | "Spectre | \n", 762 | "A cryptic message from Bond’s past sends him o... | \n", 763 | "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... | \n", 764 | "[{\"id\": 470, \"name\": \"spy\"}, {\"id\": 818, \"name... | \n", 765 | "[{\"cast_id\": 1, \"character\": \"James Bond\", \"cr... | \n", 766 | "[{\"credit_id\": \"54805967c3a36829b5002c41\", \"de... | \n", 767 | "
| 3 | \n", 770 | "49026 | \n", 771 | "The Dark Knight Rises | \n", 772 | "Following the death of District Attorney Harve... | \n", 773 | "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 80, \"nam... | \n", 774 | "[{\"id\": 849, \"name\": \"dc comics\"}, {\"id\": 853,... | \n", 775 | "[{\"cast_id\": 2, \"character\": \"Bruce Wayne / Ba... | \n", 776 | "[{\"credit_id\": \"52fe4781c3a36847f81398c3\", \"de... | \n", 777 | "
| 4 | \n", 780 | "49529 | \n", 781 | "John Carter | \n", 782 | "John Carter is a war-weary, former military ca... | \n", 783 | "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... | \n", 784 | "[{\"id\": 818, \"name\": \"based on novel\"}, {\"id\":... | \n", 785 | "[{\"cast_id\": 5, \"character\": \"John Carter\", \"c... | \n", 786 | "[{\"credit_id\": \"52fe479ac3a36847f813eaa3\", \"de... | \n", 787 | "
| \n", 977 | " | movie_id | \n", 978 | "title | \n", 979 | "overview | \n", 980 | "genres | \n", 981 | "keywords | \n", 982 | "cast | \n", 983 | "crew | \n", 984 | "
|---|---|---|---|---|---|---|---|
| 0 | \n", 989 | "19995 | \n", 990 | "Avatar | \n", 991 | "In the 22nd century, a paraplegic Marine is di... | \n", 992 | "[Action, Adventure, Fantasy, Science Fiction] | \n", 993 | "[{\"id\": 1463, \"name\": \"culture clash\"}, {\"id\":... | \n", 994 | "[{\"cast_id\": 242, \"character\": \"Jake Sully\", \"... | \n", 995 | "[{\"credit_id\": \"52fe48009251416c750aca23\", \"de... | \n", 996 | "
| 1 | \n", 999 | "285 | \n", 1000 | "Pirates of the Caribbean: At World's End | \n", 1001 | "Captain Barbossa, long believed to be dead, ha... | \n", 1002 | "[Adventure, Fantasy, Action] | \n", 1003 | "[{\"id\": 270, \"name\": \"ocean\"}, {\"id\": 726, \"na... | \n", 1004 | "[{\"cast_id\": 4, \"character\": \"Captain Jack Spa... | \n", 1005 | "[{\"credit_id\": \"52fe4232c3a36847f800b579\", \"de... | \n", 1006 | "
| 2 | \n", 1009 | "206647 | \n", 1010 | "Spectre | \n", 1011 | "A cryptic message from Bond’s past sends him o... | \n", 1012 | "[Action, Adventure, Crime] | \n", 1013 | "[{\"id\": 470, \"name\": \"spy\"}, {\"id\": 818, \"name... | \n", 1014 | "[{\"cast_id\": 1, \"character\": \"James Bond\", \"cr... | \n", 1015 | "[{\"credit_id\": \"54805967c3a36829b5002c41\", \"de... | \n", 1016 | "
| 3 | \n", 1019 | "49026 | \n", 1020 | "The Dark Knight Rises | \n", 1021 | "Following the death of District Attorney Harve... | \n", 1022 | "[Action, Crime, Drama, Thriller] | \n", 1023 | "[{\"id\": 849, \"name\": \"dc comics\"}, {\"id\": 853,... | \n", 1024 | "[{\"cast_id\": 2, \"character\": \"Bruce Wayne / Ba... | \n", 1025 | "[{\"credit_id\": \"52fe4781c3a36847f81398c3\", \"de... | \n", 1026 | "
| 4 | \n", 1029 | "49529 | \n", 1030 | "John Carter | \n", 1031 | "John Carter is a war-weary, former military ca... | \n", 1032 | "[Action, Adventure, Science Fiction] | \n", 1033 | "[{\"id\": 818, \"name\": \"based on novel\"}, {\"id\":... | \n", 1034 | "[{\"cast_id\": 5, \"character\": \"John Carter\", \"c... | \n", 1035 | "[{\"credit_id\": \"52fe479ac3a36847f813eaa3\", \"de... | \n", 1036 | "
| \n", 1132 | " | movie_id | \n", 1133 | "title | \n", 1134 | "overview | \n", 1135 | "genres | \n", 1136 | "keywords | \n", 1137 | "cast | \n", 1138 | "crew | \n", 1139 | "
|---|---|---|---|---|---|---|---|
| 0 | \n", 1144 | "19995 | \n", 1145 | "Avatar | \n", 1146 | "In the 22nd century, a paraplegic Marine is di... | \n", 1147 | "[Action, Adventure, Fantasy, Science Fiction] | \n", 1148 | "[culture clash, future, space war, space colon... | \n", 1149 | "[{\"cast_id\": 242, \"character\": \"Jake Sully\", \"... | \n", 1150 | "[{\"credit_id\": \"52fe48009251416c750aca23\", \"de... | \n", 1151 | "
| 1 | \n", 1154 | "285 | \n", 1155 | "Pirates of the Caribbean: At World's End | \n", 1156 | "Captain Barbossa, long believed to be dead, ha... | \n", 1157 | "[Adventure, Fantasy, Action] | \n", 1158 | "[ocean, drug abuse, exotic island, east india ... | \n", 1159 | "[{\"cast_id\": 4, \"character\": \"Captain Jack Spa... | \n", 1160 | "[{\"credit_id\": \"52fe4232c3a36847f800b579\", \"de... | \n", 1161 | "
| 2 | \n", 1164 | "206647 | \n", 1165 | "Spectre | \n", 1166 | "A cryptic message from Bond’s past sends him o... | \n", 1167 | "[Action, Adventure, Crime] | \n", 1168 | "[spy, based on novel, secret agent, sequel, mi... | \n", 1169 | "[{\"cast_id\": 1, \"character\": \"James Bond\", \"cr... | \n", 1170 | "[{\"credit_id\": \"54805967c3a36829b5002c41\", \"de... | \n", 1171 | "
| 3 | \n", 1174 | "49026 | \n", 1175 | "The Dark Knight Rises | \n", 1176 | "Following the death of District Attorney Harve... | \n", 1177 | "[Action, Crime, Drama, Thriller] | \n", 1178 | "[dc comics, crime fighter, terrorist, secret i... | \n", 1179 | "[{\"cast_id\": 2, \"character\": \"Bruce Wayne / Ba... | \n", 1180 | "[{\"credit_id\": \"52fe4781c3a36847f81398c3\", \"de... | \n", 1181 | "
| 4 | \n", 1184 | "49529 | \n", 1185 | "John Carter | \n", 1186 | "John Carter is a war-weary, former military ca... | \n", 1187 | "[Action, Adventure, Science Fiction] | \n", 1188 | "[based on novel, mars, medallion, space travel... | \n", 1189 | "[{\"cast_id\": 5, \"character\": \"John Carter\", \"c... | \n", 1190 | "[{\"credit_id\": \"52fe479ac3a36847f813eaa3\", \"de... | \n", 1191 | "
| \n", 1300 | " | movie_id | \n", 1301 | "title | \n", 1302 | "overview | \n", 1303 | "genres | \n", 1304 | "keywords | \n", 1305 | "cast | \n", 1306 | "crew | \n", 1307 | "
|---|---|---|---|---|---|---|---|
| 0 | \n", 1312 | "19995 | \n", 1313 | "Avatar | \n", 1314 | "In the 22nd century, a paraplegic Marine is di... | \n", 1315 | "[Action, Adventure, Fantasy, Science Fiction] | \n", 1316 | "[culture clash, future, space war, space colon... | \n", 1317 | "[Sam Worthington, Zoe Saldana, Sigourney Weaver] | \n", 1318 | "[{\"credit_id\": \"52fe48009251416c750aca23\", \"de... | \n", 1319 | "
| 1 | \n", 1322 | "285 | \n", 1323 | "Pirates of the Caribbean: At World's End | \n", 1324 | "Captain Barbossa, long believed to be dead, ha... | \n", 1325 | "[Adventure, Fantasy, Action] | \n", 1326 | "[ocean, drug abuse, exotic island, east india ... | \n", 1327 | "[Johnny Depp, Orlando Bloom, Keira Knightley] | \n", 1328 | "[{\"credit_id\": \"52fe4232c3a36847f800b579\", \"de... | \n", 1329 | "
| 2 | \n", 1332 | "206647 | \n", 1333 | "Spectre | \n", 1334 | "A cryptic message from Bond’s past sends him o... | \n", 1335 | "[Action, Adventure, Crime] | \n", 1336 | "[spy, based on novel, secret agent, sequel, mi... | \n", 1337 | "[Daniel Craig, Christoph Waltz, Léa Seydoux] | \n", 1338 | "[{\"credit_id\": \"54805967c3a36829b5002c41\", \"de... | \n", 1339 | "
| 3 | \n", 1342 | "49026 | \n", 1343 | "The Dark Knight Rises | \n", 1344 | "Following the death of District Attorney Harve... | \n", 1345 | "[Action, Crime, Drama, Thriller] | \n", 1346 | "[dc comics, crime fighter, terrorist, secret i... | \n", 1347 | "[Christian Bale, Michael Caine, Gary Oldman] | \n", 1348 | "[{\"credit_id\": \"52fe4781c3a36847f81398c3\", \"de... | \n", 1349 | "
| 4 | \n", 1352 | "49529 | \n", 1353 | "John Carter | \n", 1354 | "John Carter is a war-weary, former military ca... | \n", 1355 | "[Action, Adventure, Science Fiction] | \n", 1356 | "[based on novel, mars, medallion, space travel... | \n", 1357 | "[Taylor Kitsch, Lynn Collins, Samantha Morton] | \n", 1358 | "[{\"credit_id\": \"52fe479ac3a36847f813eaa3\", \"de... | \n", 1359 | "
| \n", 1494 | " | movie_id | \n", 1495 | "title | \n", 1496 | "overview | \n", 1497 | "genres | \n", 1498 | "keywords | \n", 1499 | "cast | \n", 1500 | "crew | \n", 1501 | "
|---|---|---|---|---|---|---|---|
| 0 | \n", 1506 | "19995 | \n", 1507 | "Avatar | \n", 1508 | "In the 22nd century, a paraplegic Marine is di... | \n", 1509 | "[Action, Adventure, Fantasy, Science Fiction] | \n", 1510 | "[culture clash, future, space war, space colon... | \n", 1511 | "[Sam Worthington, Zoe Saldana, Sigourney Weaver] | \n", 1512 | "[James Cameron] | \n", 1513 | "
| 1 | \n", 1516 | "285 | \n", 1517 | "Pirates of the Caribbean: At World's End | \n", 1518 | "Captain Barbossa, long believed to be dead, ha... | \n", 1519 | "[Adventure, Fantasy, Action] | \n", 1520 | "[ocean, drug abuse, exotic island, east india ... | \n", 1521 | "[Johnny Depp, Orlando Bloom, Keira Knightley] | \n", 1522 | "[Gore Verbinski] | \n", 1523 | "
| 2 | \n", 1526 | "206647 | \n", 1527 | "Spectre | \n", 1528 | "A cryptic message from Bond’s past sends him o... | \n", 1529 | "[Action, Adventure, Crime] | \n", 1530 | "[spy, based on novel, secret agent, sequel, mi... | \n", 1531 | "[Daniel Craig, Christoph Waltz, Léa Seydoux] | \n", 1532 | "[Sam Mendes] | \n", 1533 | "
| 3 | \n", 1536 | "49026 | \n", 1537 | "The Dark Knight Rises | \n", 1538 | "Following the death of District Attorney Harve... | \n", 1539 | "[Action, Crime, Drama, Thriller] | \n", 1540 | "[dc comics, crime fighter, terrorist, secret i... | \n", 1541 | "[Christian Bale, Michael Caine, Gary Oldman] | \n", 1542 | "[Christopher Nolan] | \n", 1543 | "
| 4 | \n", 1546 | "49529 | \n", 1547 | "John Carter | \n", 1548 | "John Carter is a war-weary, former military ca... | \n", 1549 | "[Action, Adventure, Science Fiction] | \n", 1550 | "[based on novel, mars, medallion, space travel... | \n", 1551 | "[Taylor Kitsch, Lynn Collins, Samantha Morton] | \n", 1552 | "[Andrew Stanton] | \n", 1553 | "
| \n", 1644 | " | movie_id | \n", 1645 | "title | \n", 1646 | "overview | \n", 1647 | "genres | \n", 1648 | "keywords | \n", 1649 | "cast | \n", 1650 | "crew | \n", 1651 | "
|---|---|---|---|---|---|---|---|
| 0 | \n", 1656 | "19995 | \n", 1657 | "Avatar | \n", 1658 | "[In, the, 22nd, century,, a, paraplegic, Marin... | \n", 1659 | "[Action, Adventure, Fantasy, Science Fiction] | \n", 1660 | "[culture clash, future, space war, space colon... | \n", 1661 | "[Sam Worthington, Zoe Saldana, Sigourney Weaver] | \n", 1662 | "[James Cameron] | \n", 1663 | "
| 1 | \n", 1666 | "285 | \n", 1667 | "Pirates of the Caribbean: At World's End | \n", 1668 | "[Captain, Barbossa,, long, believed, to, be, d... | \n", 1669 | "[Adventure, Fantasy, Action] | \n", 1670 | "[ocean, drug abuse, exotic island, east india ... | \n", 1671 | "[Johnny Depp, Orlando Bloom, Keira Knightley] | \n", 1672 | "[Gore Verbinski] | \n", 1673 | "
| 2 | \n", 1676 | "206647 | \n", 1677 | "Spectre | \n", 1678 | "[A, cryptic, message, from, Bond’s, past, send... | \n", 1679 | "[Action, Adventure, Crime] | \n", 1680 | "[spy, based on novel, secret agent, sequel, mi... | \n", 1681 | "[Daniel Craig, Christoph Waltz, Léa Seydoux] | \n", 1682 | "[Sam Mendes] | \n", 1683 | "
| 3 | \n", 1686 | "49026 | \n", 1687 | "The Dark Knight Rises | \n", 1688 | "[Following, the, death, of, District, Attorney... | \n", 1689 | "[Action, Crime, Drama, Thriller] | \n", 1690 | "[dc comics, crime fighter, terrorist, secret i... | \n", 1691 | "[Christian Bale, Michael Caine, Gary Oldman] | \n", 1692 | "[Christopher Nolan] | \n", 1693 | "
| 4 | \n", 1696 | "49529 | \n", 1697 | "John Carter | \n", 1698 | "[John, Carter, is, a, war-weary,, former, mili... | \n", 1699 | "[Action, Adventure, Science Fiction] | \n", 1700 | "[based on novel, mars, medallion, space travel... | \n", 1701 | "[Taylor Kitsch, Lynn Collins, Samantha Morton] | \n", 1702 | "[Andrew Stanton] | \n", 1703 | "
| \n", 1801 | " | movie_id | \n", 1802 | "title | \n", 1803 | "overview | \n", 1804 | "genres | \n", 1805 | "keywords | \n", 1806 | "cast | \n", 1807 | "crew | \n", 1808 | "
|---|---|---|---|---|---|---|---|
| 0 | \n", 1813 | "19995 | \n", 1814 | "Avatar | \n", 1815 | "[In, the, 22nd, century,, a, paraplegic, Marin... | \n", 1816 | "[Action, Adventure, Fantasy, ScienceFiction] | \n", 1817 | "[cultureclash, future, spacewar, spacecolony, ... | \n", 1818 | "[SamWorthington, ZoeSaldana, SigourneyWeaver] | \n", 1819 | "[JamesCameron] | \n", 1820 | "
| 1 | \n", 1823 | "285 | \n", 1824 | "Pirates of the Caribbean: At World's End | \n", 1825 | "[Captain, Barbossa,, long, believed, to, be, d... | \n", 1826 | "[Adventure, Fantasy, Action] | \n", 1827 | "[ocean, drugabuse, exoticisland, eastindiatrad... | \n", 1828 | "[JohnnyDepp, OrlandoBloom, KeiraKnightley] | \n", 1829 | "[GoreVerbinski] | \n", 1830 | "
| 2 | \n", 1833 | "206647 | \n", 1834 | "Spectre | \n", 1835 | "[A, cryptic, message, from, Bond’s, past, send... | \n", 1836 | "[Action, Adventure, Crime] | \n", 1837 | "[spy, basedonnovel, secretagent, sequel, mi6, ... | \n", 1838 | "[DanielCraig, ChristophWaltz, LéaSeydoux] | \n", 1839 | "[SamMendes] | \n", 1840 | "
| 3 | \n", 1843 | "49026 | \n", 1844 | "The Dark Knight Rises | \n", 1845 | "[Following, the, death, of, District, Attorney... | \n", 1846 | "[Action, Crime, Drama, Thriller] | \n", 1847 | "[dccomics, crimefighter, terrorist, secretiden... | \n", 1848 | "[ChristianBale, MichaelCaine, GaryOldman] | \n", 1849 | "[ChristopherNolan] | \n", 1850 | "
| 4 | \n", 1853 | "49529 | \n", 1854 | "John Carter | \n", 1855 | "[John, Carter, is, a, war-weary,, former, mili... | \n", 1856 | "[Action, Adventure, ScienceFiction] | \n", 1857 | "[basedonnovel, mars, medallion, spacetravel, p... | \n", 1858 | "[TaylorKitsch, LynnCollins, SamanthaMorton] | \n", 1859 | "[AndrewStanton] | \n", 1860 | "
| \n", 1938 | " | movie_id | \n", 1939 | "title | \n", 1940 | "overview | \n", 1941 | "genres | \n", 1942 | "keywords | \n", 1943 | "cast | \n", 1944 | "crew | \n", 1945 | "tags | \n", 1946 | "
|---|---|---|---|---|---|---|---|---|
| 0 | \n", 1951 | "19995 | \n", 1952 | "Avatar | \n", 1953 | "[In, the, 22nd, century,, a, paraplegic, Marin... | \n", 1954 | "[Action, Adventure, Fantasy, ScienceFiction] | \n", 1955 | "[cultureclash, future, spacewar, spacecolony, ... | \n", 1956 | "[SamWorthington, ZoeSaldana, SigourneyWeaver] | \n", 1957 | "[JamesCameron] | \n", 1958 | "[In, the, 22nd, century,, a, paraplegic, Marin... | \n", 1959 | "
| 1 | \n", 1962 | "285 | \n", 1963 | "Pirates of the Caribbean: At World's End | \n", 1964 | "[Captain, Barbossa,, long, believed, to, be, d... | \n", 1965 | "[Adventure, Fantasy, Action] | \n", 1966 | "[ocean, drugabuse, exoticisland, eastindiatrad... | \n", 1967 | "[JohnnyDepp, OrlandoBloom, KeiraKnightley] | \n", 1968 | "[GoreVerbinski] | \n", 1969 | "[Captain, Barbossa,, long, believed, to, be, d... | \n", 1970 | "
| 2 | \n", 1973 | "206647 | \n", 1974 | "Spectre | \n", 1975 | "[A, cryptic, message, from, Bond’s, past, send... | \n", 1976 | "[Action, Adventure, Crime] | \n", 1977 | "[spy, basedonnovel, secretagent, sequel, mi6, ... | \n", 1978 | "[DanielCraig, ChristophWaltz, LéaSeydoux] | \n", 1979 | "[SamMendes] | \n", 1980 | "[A, cryptic, message, from, Bond’s, past, send... | \n", 1981 | "
| 3 | \n", 1984 | "49026 | \n", 1985 | "The Dark Knight Rises | \n", 1986 | "[Following, the, death, of, District, Attorney... | \n", 1987 | "[Action, Crime, Drama, Thriller] | \n", 1988 | "[dccomics, crimefighter, terrorist, secretiden... | \n", 1989 | "[ChristianBale, MichaelCaine, GaryOldman] | \n", 1990 | "[ChristopherNolan] | \n", 1991 | "[Following, the, death, of, District, Attorney... | \n", 1992 | "
| 4 | \n", 1995 | "49529 | \n", 1996 | "John Carter | \n", 1997 | "[John, Carter, is, a, war-weary,, former, mili... | \n", 1998 | "[Action, Adventure, ScienceFiction] | \n", 1999 | "[basedonnovel, mars, medallion, spacetravel, p... | \n", 2000 | "[TaylorKitsch, LynnCollins, SamanthaMorton] | \n", 2001 | "[AndrewStanton] | \n", 2002 | "[John, Carter, is, a, war-weary,, former, mili... | \n", 2003 | "
| \n", 2147 | " | movie_id | \n", 2148 | "title | \n", 2149 | "tags | \n", 2150 | "
|---|---|---|---|
| 0 | \n", 2155 | "19995 | \n", 2156 | "Avatar | \n", 2157 | "In the 22nd century, a paraplegic Marine is di... | \n", 2158 | "
| 1 | \n", 2161 | "285 | \n", 2162 | "Pirates of the Caribbean: At World's End | \n", 2163 | "Captain Barbossa, long believed to be dead, ha... | \n", 2164 | "
| 2 | \n", 2167 | "206647 | \n", 2168 | "Spectre | \n", 2169 | "A cryptic message from Bond’s past sends him o... | \n", 2170 | "
| 3 | \n", 2173 | "49026 | \n", 2174 | "The Dark Knight Rises | \n", 2175 | "Following the death of District Attorney Harve... | \n", 2176 | "
| 4 | \n", 2179 | "49529 | \n", 2180 | "John Carter | \n", 2181 | "John Carter is a war-weary, former military ca... | \n", 2182 | "
| \n", 2239 | " | movie_id | \n", 2240 | "title | \n", 2241 | "tags | \n", 2242 | "
|---|---|---|---|
| 0 | \n", 2247 | "19995 | \n", 2248 | "Avatar | \n", 2249 | "In the 22nd century, a paraplegic Marine is di... | \n", 2250 | "
| 1 | \n", 2253 | "285 | \n", 2254 | "Pirates of the Caribbean: At World's End | \n", 2255 | "Captain Barbossa, long believed to be dead, ha... | \n", 2256 | "
| 2 | \n", 2259 | "206647 | \n", 2260 | "Spectre | \n", 2261 | "A cryptic message from Bond’s past sends him o... | \n", 2262 | "
| 3 | \n", 2265 | "49026 | \n", 2266 | "The Dark Knight Rises | \n", 2267 | "Following the death of District Attorney Harve... | \n", 2268 | "
| 4 | \n", 2271 | "49529 | \n", 2272 | "John Carter | \n", 2273 | "John Carter is a war-weary, former military ca... | \n", 2274 | "
| \n", 2464 | " | movie_id | \n", 2465 | "title | \n", 2466 | "tags | \n", 2467 | "
|---|---|---|---|
| 0 | \n", 2472 | "19995 | \n", 2473 | "Avatar | \n", 2474 | "in the 22nd century, a parapleg marin is dispa... | \n", 2475 | "
| 1 | \n", 2478 | "285 | \n", 2479 | "Pirates of the Caribbean: At World's End | \n", 2480 | "captain barbossa, long believ to be dead, ha c... | \n", 2481 | "
| 2 | \n", 2484 | "206647 | \n", 2485 | "Spectre | \n", 2486 | "a cryptic messag from bond’ past send him on a... | \n", 2487 | "
| 3 | \n", 2490 | "49026 | \n", 2491 | "The Dark Knight Rises | \n", 2492 | "follow the death of district attorney harvey d... | \n", 2493 | "
| 4 | \n", 2496 | "49529 | \n", 2497 | "John Carter | \n", 2498 | "john carter is a war-weary, former militari ca... | \n", 2499 | "