{ "cells": [ { "cell_type": "markdown", "id": "dd3a9f32-3b8c-46b5-9165-b243049d2f81", "metadata": {}, "source": [ "# TMDB Network\n", "\n", "This notebook contains recipe to construct a heterogeneous network based on the fetched TMDB dataset." ] }, { "cell_type": "code", "execution_count": 1, "id": "412ba4a1-7f05-4a65-97ae-9a235c30dae5", "metadata": { "ExecuteTime": { "end_time": "2024-12-02T15:41:05.965764Z", "start_time": "2024-12-02T15:41:05.188819Z" } }, "outputs": [], "source": [ "import pickle\n", "import numpy as np\n", "import pandas as pd\n", "import matplotlib.pyplot as plt" ] }, { "cell_type": "markdown", "id": "e3ab0c46-271e-4cae-adf4-f5de94f011bf", "metadata": {}, "source": [ "## Input Data\n", "\n", "[The Movie Database (TMDB)](https://www.themoviedb.org/) is a popular online database and community platform that provides a vast collection of information about movies, TV shows, and other related content. We collected metadata about more than 7500 of the most popular action, romance, thriller and animation English movies from [TMDB's public API](https://developer.themoviedb.org/docs) on May 31, 2024. After meticulous data cleaning, we finally obtain 7,505 movies, 13,016 actors, and 3,891 directors.\n" ] }, { "cell_type": "code", "execution_count": 2, "id": "262e4aa2-3566-476f-a79f-29609a88139a", "metadata": { "ExecuteTime": { "end_time": "2024-12-02T15:41:07.133497Z", "start_time": "2024-12-02T15:41:06.904795Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Number of movies: 7505\n" ] }, { "data": { "text/html": [ "
\n", " | id | \n", "title | \n", "overview | \n", "genre | \n", "release_date | \n", "actor | \n", "director | \n", "
---|---|---|---|---|---|---|---|
0 | \n", "199753 | \n", "Tom and Jerry's Giant Adventure | \n", "Tom And Jerry are among the last animals livin... | \n", "Animation | \n", "2013-08-04 | \n", "[80416, 86434, 60739, 5129, 1065, 31531, 11444... | \n", "[23683, 1447452, 92317] | \n", "
1 | \n", "9560 | \n", "A Walk in the Clouds | \n", "World War II vet Paul Sutton falls for a pregn... | \n", "Romance | \n", "1995-05-27 | \n", "[7353, 62595, 3753, 85869, 6862, 152943, 6384,... | \n", "[77162, 1377239] | \n", "
2 | \n", "10875 | \n", "The Fabulous Baker Boys | \n", "The lives of two struggling musicians, who hap... | \n", "Romance | \n", "1989-10-13 | \n", "[7906, 8354, 43364, 152963, 1160, 57992, 1229,... | \n", "[2226, 2571810, 1966431] | \n", "
3 | \n", "67609 | \n", "Three Blind Mouseketeers | \n", "As the title implies, the three blind mice are... | \n", "Animation | \n", "1936-09-26 | \n", "[31771, 5462] | \n", "[564041, 5446] | \n", "
4 | \n", "24021 | \n", "The Twilight Saga: Eclipse | \n", "Bella once again finds herself surrounded by d... | \n", "Romance | \n", "2010-06-23 | \n", "[84224, 84225, 45827, 121868, 87310, 1475835, ... | \n", "[2045537, 1393423, 27571, 2476949, 113019] | \n", "