Update README.md
Browse files
README.md
CHANGED
@@ -17,6 +17,8 @@ language:
|
|
17 |
### Dataset Summary
|
18 |
|
19 |
This dataset is an adapted version of "IMDb Movie Dataset: All Movies by Genre" found at: https://www.kaggle.com/datasets/rajugc/imdb-movies-dataset-based-on-genre?select=history.csv.
|
|
|
|
|
20 |
|
21 |
### Supported Tasks and Leaderboards
|
22 |
|
@@ -24,21 +26,42 @@ This dataset is an adapted version of "IMDb Movie Dataset: All Movies by Genre"
|
|
24 |
|
25 |
### Languages
|
26 |
|
27 |
-
|
28 |
|
29 |
## Dataset Structure
|
30 |
|
31 |
### Data Instances
|
32 |
|
33 |
-
|
|
|
34 |
|
35 |
-
|
|
|
36 |
|
37 |
-
|
|
|
38 |
|
39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
## Dataset Creation
|
44 |
|
|
|
17 |
### Dataset Summary
|
18 |
|
19 |
This dataset is an adapted version of "IMDb Movie Dataset: All Movies by Genre" found at: https://www.kaggle.com/datasets/rajugc/imdb-movies-dataset-based-on-genre?select=history.csv.
|
20 |
+
Within the dataset, the movie title and year columns were combined, the genre was extracted from the seperate csv files, the pre-existing genre column was renamed to expanded-genres, any movies missing a description (i.e. the description was written as "Add a plot") were dropped from the original data, the rating column was left the same, and finally the rest of the remaining columns were dropped.
|
21 |
+
The columns in the data are: "movie title - year", "genre", "expanded-genres", "rating", and "description"
|
22 |
|
23 |
### Supported Tasks and Leaderboards
|
24 |
|
|
|
26 |
|
27 |
### Languages
|
28 |
|
29 |
+
Language data is English.
|
30 |
|
31 |
## Dataset Structure
|
32 |
|
33 |
### Data Instances
|
34 |
|
35 |
+
imdb_genres = 300388 entries
|
36 |
+
Total amount of disk used: 68.0 MB
|
37 |
|
38 |
+
training = 240310 entries
|
39 |
+
Total amount of disk used: 54.4 MB
|
40 |
|
41 |
+
test = 30039 entries
|
42 |
+
Total amount of disk used: 6.8 MB
|
43 |
|
44 |
+
validation = 30039 entries
|
45 |
+
Total amount of disk used: 6.8 MB
|
46 |
+
|
47 |
+
An example of an entries looks as follows:
|
48 |
+
{
|
49 |
+
"movie title - year" : "Die Hard - 1988",
|
50 |
+
"genre" : "Action",
|
51 |
+
"expanded-genres" : "Action, Thriller",
|
52 |
+
"rating" : 8.2,
|
53 |
+
"description" : "A New York City police officer tries to save his estranged wife and several others taken hostage by terrorists during a Christmas party at the Nakatomi Plaza in Los Angeles."
|
54 |
+
}
|
55 |
|
56 |
+
### Data Fields
|
57 |
+
|
58 |
+
The data fields are the same among all splits.
|
59 |
+
Fields are as follows:
|
60 |
+
"movie title - year": a string feature.
|
61 |
+
"genre": a string classification label, with the possible values: 'Adventure', 'Action', 'Thriller', 'Romance', 'Crime', 'Fantasy', 'Mystery', 'Horror', 'War', 'Family', 'Animation', 'Scifi', 'Sports', 'History', 'Biography', and 'Film-noir'.
|
62 |
+
"expanded-genres" : a string feature.
|
63 |
+
"rating" : a floating point value, ranging from 0.0 to 10.0.
|
64 |
+
"description" : a string feature.
|
65 |
|
66 |
## Dataset Creation
|
67 |
|