File size: 3,380 Bytes
17a5ff0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9799b15
 
 
 
9ef939c
 
17a5ff0
9799b15
17a5ff0
9799b15
 
cf057f6
 
 
9799b15
 
 
adec3b3
9799b15
 
 
 
 
adec3b3
9799b15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9ef939c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9799b15
 
 
 
fa792ac
 
 
 
9799b15
fa792ac
 
9799b15
fa792ac
9799b15
fa792ac
9799b15
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
---
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
dataset_info:
  features:
  - name: id
    dtype: int64
  - name: budget
    dtype: int64
  - name: genres
    dtype: string
  - name: homepage
    dtype: string
  - name: keywords
    dtype: string
  - name: original_language
    dtype: string
  - name: original_title
    dtype: string
  - name: overview
    dtype: string
  - name: popularity
    dtype: float64
  - name: production_companies
    dtype: string
  - name: production_countries
    dtype: string
  - name: release_date
    dtype: string
  - name: revenue
    dtype: int64
  - name: runtime
    dtype: float64
  - name: spoken_languages
    dtype: string
  - name: status
    dtype: string
  - name: tagline
    dtype: string
  - name: title
    dtype: string
  - name: vote_average
    dtype: float64
  - name: vote_count
    dtype: int64
  - name: cast
    dtype: string
  - name: crew
    dtype: string
  splits:
  - name: train
    num_bytes: 40655819
    num_examples: 4803
  download_size: 13875246
  dataset_size: 40655819
license: other
language:
- en
pretty_name: tmdb-5000-movies
size_categories:
- 1K<n<10K
---
# tmdb-5000-movies

## Overview 

The tmdb-5000-movies dataset is a collection of movie information available on The Movie Database (TMDB). 
It is often used in machine learning and data analysis to explore patterns and trends in the film industry. 
It can also used for recommendation systems.

## Dataset Details

The original dataset was generated from [The Movie Database API](https://www.themoviedb.org/). This product uses the TMDb API but is not endorsed or certified by TMDb.
The data was collected from [TMDB 5000 Movie Dataset](https://www.kaggle.com/datasets/tmdb/tmdb-movie-metadata?select=tmdb_5000_movies.csv), a popular movie database website known for its wealth of information on movies, TV shows, and celebrities.
The dataset contains two main tables:

**movies_metadata.csv:**

Contains general information about the movies, such as title, language, release date, budget, revenue, popularity, and average votes.
Each row corresponds to a movie.

**credits.csv:**

Includes details about the cast and crew of each movie.
Each row corresponds to a crew member (actor, director, writer, etc.) for a specific movie.

- Dataset Name: tmdb-5000-movies
- Language:  English
- Total Size: 4,803  examples

## Contents

The dataset consists of a data frame with 22 columns as follows:

- id	
- budget
- genres	
- homepage	
- keywords	
- original_language	
- original_title	
- overview	
- popularity	
- production_companies	
- production countries
- release_date
- revenue
- runtime	
- spoken_languages	
- status	
- tagline	
- title	
- vote_average
- vote_count	
- cast	
- crew

example: 
```bash
{
  id: 11,
  budget: 11,000,000
  genres: [{"id": 12, "name": "Adventure"}, {"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}],
  homepage: "http://www.starwars.com/films/star-wars-episode-iv-a-new-hope",
  ...
  original_language: "en",
  original_title: "Star Wars"
  ...
  tagline: "A long time ago in a galaxy far, far away..."
  ...
}
```

## How to use

```python
from datasets import load_dataset

dataset = load_dataset("AiresPucrs/tmdb-5000-movies", split='train')

```

## License

This dataset is licensed under the [Other](https://www.themoviedb.org/terms-of-use).