kevinwang676 commited on
Commit
dae7796
·
verified ·
1 Parent(s): 34fc99c

Update kb.py

Browse files
Files changed (1) hide show
  1. kb.py +12 -12
kb.py CHANGED
@@ -36,10 +36,10 @@ movie_kb = [
36
  "title": "Lion King, The",
37
  "description": "Simba, a young lion prince, flees after his father’s death but returns to reclaim his throne from his treacherous uncle Scar in this animated epic.",
38
  "genre": ["Adventure", "Animation", "Children", "Drama", "Musical", "IMAX"],
39
- "director": "Jon Favreau", # Note: Jon Favreau directed the 2019 remake; original 1994 directors were Roger Allers and Rob Minkoff
40
- "actors": ["Matthew Broderick", "Jeremy Irons", "James Earl Jones"], # 1994 cast
41
  "year": 1994,
42
- "box_office": 968483777, # 1994 original worldwide gross
43
  "awards": ["Oscar Best Original Score", "Oscar Best Original Song", "Golden Globe Best Motion Picture - Musical or Comedy"],
44
  "rating": 4.5
45
  },
@@ -50,7 +50,7 @@ movie_kb = [
50
  "director": "Dave Borthwick",
51
  "actors": ["Nick Upton", "Deborah Collard", "Frank Passingham"],
52
  "year": 1993,
53
- "box_office": "N/A", # Limited release, no reliable box office data
54
  "awards": ["None"],
55
  "rating": 2.5
56
  },
@@ -81,8 +81,8 @@ movie_kb = [
81
  "description": "A group of friends faces absurd, over-the-top disasters in a parody of blockbuster films, filled with pop culture references.",
82
  "genre": ["Comedy", "Disaster"],
83
  "director": "Aaron Seltzer",
84
- "year": 2008,
85
  "actors": ["Matt Lanter", "Vanessa Minnillo", "Kim Kardashian"],
 
86
  "box_office": 34816824,
87
  "awards": ["None"],
88
  "rating": 2.0
@@ -102,10 +102,10 @@ movie_kb = [
102
  "title": "Challenger Disaster, The",
103
  "description": "A dramatization of the investigation into the 1986 Challenger space shuttle explosion, focusing on physicist Richard Feynman’s role.",
104
  "genre": ["Drama", "Disaster"],
105
- "director": "Richard Feynman", # Note: This seems incorrect; James Hawes directed the 2013 TV movie
106
  "actors": ["William Hurt", "Bruce Greenwood", "Joanne Whalley"],
107
  "year": 2013,
108
- "box_office": "N/A", # TV movie, no theatrical box office
109
  "awards": ["None"],
110
  "rating": 3.0
111
  },
@@ -113,10 +113,10 @@ movie_kb = [
113
  "title": "Some Girl(s)",
114
  "description": "A writer travels to confront past girlfriends before his wedding, unraveling emotional truths in this adaptation of Neil LaBute’s play.",
115
  "genre": ["Comedy", "Drama"],
116
- "director": "Michael Hoffman", # Note: Daisy von Scherler Mayer directed the 2013 film, not Hoffman
117
  "actors": ["Adam Brody", "Kristen Bell", "Zoe Kazan"],
118
  "year": 2013,
119
- "box_office": "N/A", # Limited release, no reliable box office data
120
  "awards": ["None"],
121
  "rating": 3.5
122
  },
@@ -127,7 +127,7 @@ movie_kb = [
127
  "director": "John Irvin",
128
  "actors": ["Jeremy Irons", "Forest Whitaker", "Jason Priestley"],
129
  "year": 2001,
130
- "box_office": "N/A", # Limited release, no reliable box office data
131
  "awards": ["None"],
132
  "rating": 3.5
133
  },
@@ -138,7 +138,7 @@ movie_kb = [
138
  "director": "Robert Mulligan",
139
  "actors": ["Tony Curtis", "Debbie Reynolds", "Jack Oakie"],
140
  "year": 1960,
141
- "box_office": "N/A", # Pre-1970s data often unavailable
142
  "awards": ["None"],
143
  "rating": 3.5
144
  },
@@ -149,7 +149,7 @@ movie_kb = [
149
  "director": "David S. Cass Sr.",
150
  "actors": ["Teri Polo", "Andrew McCarthy", "Patricia Kalember"],
151
  "year": 2003,
152
- "box_office": "N/A", # TV movie, no theatrical box office
153
  "awards": ["None"],
154
  "rating": 4.0
155
  },
 
36
  "title": "Lion King, The",
37
  "description": "Simba, a young lion prince, flees after his father’s death but returns to reclaim his throne from his treacherous uncle Scar in this animated epic.",
38
  "genre": ["Adventure", "Animation", "Children", "Drama", "Musical", "IMAX"],
39
+ "director": "Roger Allers and Rob Minkoff", # Corrected from "Jon Favreau" (Favreau directed the 2019 remake)
40
+ "actors": ["Matthew Broderick", "Jeremy Irons", "James Earl Jones"],
41
  "year": 1994,
42
+ "box_office": 968483777,
43
  "awards": ["Oscar Best Original Score", "Oscar Best Original Song", "Golden Globe Best Motion Picture - Musical or Comedy"],
44
  "rating": 4.5
45
  },
 
50
  "director": "Dave Borthwick",
51
  "actors": ["Nick Upton", "Deborah Collard", "Frank Passingham"],
52
  "year": 1993,
53
+ "box_office": "N/A",
54
  "awards": ["None"],
55
  "rating": 2.5
56
  },
 
81
  "description": "A group of friends faces absurd, over-the-top disasters in a parody of blockbuster films, filled with pop culture references.",
82
  "genre": ["Comedy", "Disaster"],
83
  "director": "Aaron Seltzer",
 
84
  "actors": ["Matt Lanter", "Vanessa Minnillo", "Kim Kardashian"],
85
+ "year": 2008,
86
  "box_office": 34816824,
87
  "awards": ["None"],
88
  "rating": 2.0
 
102
  "title": "Challenger Disaster, The",
103
  "description": "A dramatization of the investigation into the 1986 Challenger space shuttle explosion, focusing on physicist Richard Feynman’s role.",
104
  "genre": ["Drama", "Disaster"],
105
+ "director": "James Hawes", # Corrected from "Richard Feynman" (Feynman was a physicist, not the director)
106
  "actors": ["William Hurt", "Bruce Greenwood", "Joanne Whalley"],
107
  "year": 2013,
108
+ "box_office": "N/A",
109
  "awards": ["None"],
110
  "rating": 3.0
111
  },
 
113
  "title": "Some Girl(s)",
114
  "description": "A writer travels to confront past girlfriends before his wedding, unraveling emotional truths in this adaptation of Neil LaBute’s play.",
115
  "genre": ["Comedy", "Drama"],
116
+ "director": "Daisy von Scherler Mayer", # Corrected from "Michael Hoffman"
117
  "actors": ["Adam Brody", "Kristen Bell", "Zoe Kazan"],
118
  "year": 2013,
119
+ "box_office": "N/A",
120
  "awards": ["None"],
121
  "rating": 3.5
122
  },
 
127
  "director": "John Irvin",
128
  "actors": ["Jeremy Irons", "Forest Whitaker", "Jason Priestley"],
129
  "year": 2001,
130
+ "box_office": "N/A",
131
  "awards": ["None"],
132
  "rating": 3.5
133
  },
 
138
  "director": "Robert Mulligan",
139
  "actors": ["Tony Curtis", "Debbie Reynolds", "Jack Oakie"],
140
  "year": 1960,
141
+ "box_office": "N/A",
142
  "awards": ["None"],
143
  "rating": 3.5
144
  },
 
149
  "director": "David S. Cass Sr.",
150
  "actors": ["Teri Polo", "Andrew McCarthy", "Patricia Kalember"],
151
  "year": 2003,
152
+ "box_office": "N/A",
153
  "awards": ["None"],
154
  "rating": 4.0
155
  },