dieineb commited on
Commit
9799b15
1 Parent(s): 17a5ff0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +85 -2
README.md CHANGED
@@ -56,7 +56,90 @@ dataset_info:
56
  num_examples: 4803
57
  download_size: 13875246
58
  dataset_size: 40655819
 
 
 
 
59
  ---
60
- # Dataset Card for "tmdb_5000_movies"
61
 
62
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  num_examples: 4803
57
  download_size: 13875246
58
  dataset_size: 40655819
59
+ license: other
60
+ language:
61
+ - en
62
+ pretty_name: tmdb-5000-movies
63
  ---
64
+ # tmdb-5000-movies
65
 
66
+ ## Overview
67
+
68
+ The "TMDB 5000 Movie Dataset" is a collection of information about movies available on The Movie Database (TMDB) website.
69
+ It is often used in machine learning and data analysis to explore patterns and trends in the film industry.
70
+
71
+ ## Dataset Details
72
+
73
+ The original dataset was generated from The Movie Database API. This product uses the TMDb API but is not endorsed or certified by TMDb.
74
+ 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.
75
+ The dataset contains two main tables:
76
+
77
+ **movies_metadata.csv:**
78
+
79
+ Contains general information about the movies, such as title, language, release date, budget, revenue, popularity, and average votes, among others.
80
+ Each row corresponds to a movie.
81
+
82
+ **credits.csv:**
83
+
84
+ Includes details about the cast and crew of each movie.
85
+ Each row corresponds to a crew member (actor, director, writer, etc.) for a specific movie.
86
+
87
+ - Dataset Name: tmdb-5000-movies
88
+ - Language: English
89
+ - Total Size: 4,803 examples
90
+
91
+ ## Contents
92
+
93
+ The dataset consists of a data frame with 22 columns as follows:
94
+
95
+ -id
96
+ -budget
97
+ -genres
98
+ -homepage
99
+ -keywords
100
+ -original_language
101
+ -original_title
102
+ -overview
103
+ -popularity
104
+ -production_companies
105
+ -production countries
106
+ -release_date
107
+ -revenue
108
+ -runtime
109
+ -spoken_languages
110
+ -status
111
+ -tagline
112
+ -title
113
+ -vote_average
114
+ -vote_count
115
+ -cast
116
+ -crew
117
+
118
+ example:
119
+ ```bash
120
+ {
121
+ "id": 11,
122
+ "budget": 11,000,000
123
+ "genres": [{"id": 12, "name": "Adventure"}, {"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}],
124
+ "homepage": http://www.starwars.com/films/star-wars-episode-iv-a-new-hope,
125
+ ...
126
+ "original_language": en,
127
+ "original_title": Star Wars
128
+ ...
129
+ "tagline": "A long time ago in a galaxy far, far away..."
130
+ ...
131
+
132
+ ```
133
+
134
+ ## How to use
135
+
136
+ ```python
137
+ from datasets import load_dataset
138
+
139
+ dataset = load_dataset("AiresPucrs/tmdb-5000-movies", split='train')
140
+
141
+ ```
142
+
143
+ ## License
144
+
145
+ This dataset is licensed under the [Other](https://www.themoviedb.org/terms-of-use).