-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata_loader.py
More file actions
229 lines (184 loc) · 5.79 KB
/
data_loader.py
File metadata and controls
229 lines (184 loc) · 5.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
# MovieMindAI - IMDb Data Loader
# Efficiently loads large TSV files using chunked reading
import pandas as pd
from pathlib import Path
from typing import Optional, Generator
import config
# TSV reading configuration
TSV_PARAMS = {
"sep": "\t",
"na_values": "\\N",
"quoting": 3, # QUOTE_NONE - IMDb files have no quoting
"low_memory": False,
}
def load_title_basics(
filter_types: Optional[list] = None,
min_year: Optional[int] = None
) -> pd.DataFrame:
"""
Load title.basics.tsv with optional filtering.
Columns: tconst, titleType, primaryTitle, originalTitle,
isAdult, startYear, endYear, runtimeMinutes, genres
"""
print("Loading title.basics.tsv...")
df = pd.read_csv(
config.TITLE_BASICS_PATH,
dtype={
"tconst": str,
"titleType": str,
"primaryTitle": str,
"originalTitle": str,
"isAdult": str,
"startYear": str,
"endYear": str,
"runtimeMinutes": str,
"genres": str,
},
**TSV_PARAMS
)
# Convert numeric columns
df["startYear"] = pd.to_numeric(df["startYear"], errors="coerce")
df["endYear"] = pd.to_numeric(df["endYear"], errors="coerce")
df["runtimeMinutes"] = pd.to_numeric(df["runtimeMinutes"], errors="coerce")
df["isAdult"] = df["isAdult"] == "1"
# Filter out adult content
df = df[~df["isAdult"]]
# Apply title type filter
if filter_types:
df = df[df["titleType"].isin(filter_types)]
# Apply year filter
if min_year:
df = df[df["startYear"] >= min_year]
print(f" Loaded {len(df):,} titles")
return df
def load_title_ratings() -> pd.DataFrame:
"""
Load title.ratings.tsv.
Columns: tconst, averageRating, numVotes
"""
print("Loading title.ratings.tsv...")
df = pd.read_csv(
config.TITLE_RATINGS_PATH,
dtype={
"tconst": str,
"averageRating": float,
"numVotes": int,
},
**TSV_PARAMS
)
print(f" Loaded {len(df):,} ratings")
return df
def load_title_crew() -> pd.DataFrame:
"""
Load title.crew.tsv.
Columns: tconst, directors, writers
(directors and writers are comma-separated nconst values)
"""
print("Loading title.crew.tsv...")
df = pd.read_csv(
config.TITLE_CREW_PATH,
dtype={
"tconst": str,
"directors": str,
"writers": str,
},
**TSV_PARAMS
)
print(f" Loaded {len(df):,} crew records")
return df
def load_name_basics() -> pd.DataFrame:
"""
Load name.basics.tsv.
Columns: nconst, primaryName, birthYear, deathYear,
primaryProfession, knownForTitles
"""
print("Loading name.basics.tsv...")
df = pd.read_csv(
config.NAME_BASICS_PATH,
dtype={
"nconst": str,
"primaryName": str,
"birthYear": str,
"deathYear": str,
"primaryProfession": str,
"knownForTitles": str,
},
**TSV_PARAMS
)
# We only need nconst and primaryName for lookups
df = df[["nconst", "primaryName"]]
print(f" Loaded {len(df):,} names")
return df
def load_title_principals_filtered(title_ids: set) -> pd.DataFrame:
"""
Load title.principals.tsv, filtering to only specified titles.
Uses chunked reading due to file size.
Columns: tconst, ordering, nconst, category, job, characters
"""
print("Loading title.principals.tsv (chunked)...")
chunks = []
chunk_size = 1_000_000
for chunk in pd.read_csv(
config.TITLE_PRINCIPALS_PATH,
dtype={
"tconst": str,
"ordering": int,
"nconst": str,
"category": str,
"job": str,
"characters": str,
},
chunksize=chunk_size,
**TSV_PARAMS
):
# Filter to our target titles
filtered = chunk[chunk["tconst"].isin(title_ids)]
if len(filtered) > 0:
chunks.append(filtered)
df = pd.concat(chunks, ignore_index=True) if chunks else pd.DataFrame()
print(f" Loaded {len(df):,} principal records")
return df
def load_title_akas_filtered(title_ids: set) -> pd.DataFrame:
"""
Load title.akas.tsv, filtering to only specified titles.
Uses chunked reading due to file size.
Columns: titleId, ordering, title, region, language,
types, attributes, isOriginalTitle
"""
print("Loading title.akas.tsv (chunked)...")
chunks = []
chunk_size = 1_000_000
for chunk in pd.read_csv(
config.TITLE_AKAS_PATH,
dtype={
"titleId": str,
"ordering": int,
"title": str,
"region": str,
"language": str,
"types": str,
"attributes": str,
"isOriginalTitle": str,
},
chunksize=chunk_size,
**TSV_PARAMS
):
# Filter to our target titles
filtered = chunk[chunk["titleId"].isin(title_ids)]
if len(filtered) > 0:
chunks.append(filtered)
df = pd.concat(chunks, ignore_index=True) if chunks else pd.DataFrame()
# Convert isOriginalTitle to boolean
df["isOriginalTitle"] = df["isOriginalTitle"] == "1"
print(f" Loaded {len(df):,} aka records")
return df
if __name__ == "__main__":
# Test loading
print("Testing data loader...")
# Load basics with filters
basics = load_title_basics(
filter_types=config.VALID_TITLE_TYPES,
min_year=config.MIN_YEAR
)
print(f"\nFiltered basics: {len(basics):,} titles")
print(f"Title types: {basics['titleType'].value_counts().to_dict()}")