jquigl commited on
Commit
7f87ba1
1 Parent(s): b1b990f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -15
README.md CHANGED
@@ -16,7 +16,7 @@ language:
16
 
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
 
@@ -32,19 +32,20 @@ Language data is English.
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",
@@ -52,16 +53,17 @@ An example of an entries looks as follows:
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
 
 
16
 
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
 
 
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
  {
50
  "movie title - year" : "Die Hard - 1988",
51
  "genre" : "Action",
 
53
  "rating" : 8.2,
54
  "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."
55
  }
56
+ ```
57
  ### Data Fields
58
 
59
  The data fields are the same among all splits.
60
+
61
  Fields are as follows:
62
+ - "movie title - year": a string feature.
63
+ - "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'.
64
+ - "expanded-genres" : a string feature.
65
+ - "rating" : a floating point value, ranging from 0.0 to 10.0.
66
+ - "description" : a string feature.
67
 
68
  ## Dataset Creation
69