📌 TMDB 9000+ Movie Genres DATASET🔥
This Dataset contains Movie title, it's description and it's genre.
@kaggle.akshatshaw7_moives_dataset
This Dataset contains Movie title, it's description and it's genre.
@kaggle.akshatshaw7_moives_dataset
This is a dataset that i have extracted using the TMDB API and used some python libraries to correctly convert the JSON file to csv format, in this dataset we have to csv file one has movies title ,description and genres id and other file contains the genre id and their names.
Try applying some text-preprocessing steps too this simple data and post your notebook.
CREATE TABLE genres (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" BIGINT,
"name" VARCHAR
);CREATE TABLE moives_data (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" BIGINT,
"original_title" VARCHAR,
"overview" VARCHAR,
"genre_ids" VARCHAR
);Anyone who has the link will be able to view this.