Verammm commited on
Commit
90babd5
·
verified ·
1 Parent(s): 112f7a5

Add dataset metadata: annotations, camera info, transforms, README

Browse files
archive_index.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96f58dccc77ea25dbb0eb5ce4e05a8c06ad8a160ca2c1c2d0ae4334a523ca283
3
+ size 16013
bad_files.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37a068e1d9909f98c26b1ef395d3c2f85a1195741be7fd21bbb37e476784dd6b
3
+ size 19525
build_dataset.py ADDED
@@ -0,0 +1,315 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ Build dataset from merged_result.parquet + LakeFS.
4
+ Downloads PCD and JPG files, packages into ~250 MB ZIP archives in 3D_o/.
5
+ """
6
+
7
+ import pandas as pd
8
+ import numpy as np
9
+ import requests
10
+ import os
11
+ import sys
12
+ import json
13
+ import time
14
+ import shutil
15
+ import zipfile
16
+ import concurrent.futures
17
+ import pickle
18
+ from pathlib import Path
19
+ from collections import defaultdict
20
+
21
+ # Config
22
+ LAKEFS_BASE = 'http://10.248.52.100:8001'
23
+ AK = os.environ['LAKEFS_ACCESS_KEY']
24
+ SK = os.environ['LAKEFS_SECRET_KEY']
25
+ OUTPUT_DIR = Path('/workspace/3D_o')
26
+ PCD_SIZE_FILE = '/workspace/pcd_file_sizes.parquet'
27
+ JPG_SIZE_FILE = '/workspace/jpg_file_sizes.parquet'
28
+ MERGED_FILE = '/workspace/merged_result.parquet'
29
+ PLAN_FILE = '/workspace/chunks_data.pkl'
30
+ CHUNK_TARGET = 250 * 1024 * 1024 # 250 MB
31
+ CHUNK_MIN = 200 * 1024 * 1024 # 200 MB
32
+ MAX_WORKERS = 30 # parallel downloads per chunk
33
+ REQUEST_TIMEOUT = 120
34
+
35
+ OUTPUT_DIR.mkdir(parents=True, exist_ok=True)
36
+
37
+ session = requests.Session()
38
+ session.auth = (AK, SK)
39
+
40
+ # ----- STEP 0: Load sizes -----
41
+ print("[0] Loading data...")
42
+ merged = pd.read_parquet(MERGED_FILE)
43
+ pcd_sizes = pd.read_parquet(PCD_SIZE_FILE)
44
+ jpg_sizes = pd.read_parquet(JPG_SIZE_FILE)
45
+ pcd_size_map = dict(zip(pcd_sizes['path'], pcd_sizes['size']))
46
+ jpg_size_map = dict(zip(jpg_sizes['path'], jpg_sizes['size']))
47
+
48
+ # ----- STEP 1: Build deduplicated PCD list -----
49
+ print("[1] Building deduplicated PCD list...")
50
+ # For each unique PCD, get its bag_id (first occurrence's bag_id and timestamp)
51
+ pcd_info = merged.drop_duplicates(subset='path')[['path', 'path_to_jpg', 'bag_id', 'main_timestamp']].copy()
52
+ pcd_info = pcd_info.sort_values(['bag_id', 'main_timestamp']).reset_index(drop=True)
53
+ print(f" Unique PCDs: {len(pcd_info)}")
54
+
55
+ # Add sizes
56
+ pcd_info['pcd_size'] = pcd_info['path'].map(pcd_size_map)
57
+ pcd_info['jpg_size'] = pcd_info['path_to_jpg'].map(jpg_size_map).fillna(0).astype(int)
58
+ pcd_info['total_size'] = pcd_info['pcd_size'] + pcd_info['jpg_size']
59
+
60
+ missing_sizes = pcd_info['pcd_size'].isna().sum()
61
+ if missing_sizes:
62
+ print(f" WARNING: {missing_sizes} PCDs missing sizes, estimating at 5MB")
63
+ pcd_info['pcd_size'] = pcd_info['pcd_size'].fillna(5_000_000).astype(int)
64
+ pcd_info['total_size'] = pcd_info['pcd_size'] + pcd_info['jpg_size']
65
+
66
+ total_data_size = pcd_info['total_size'].sum()
67
+ print(f" Total dataset size: {total_data_size / 1e9:.1f} GB")
68
+ print(f" Estimated archives: {total_data_size / CHUNK_TARGET:.0f}")
69
+
70
+ # Count how many PCDs have JPGs
71
+ with_jpg = (pcd_info['jpg_size'] > 0).sum()
72
+ print(f" PCDs with JPGs: {with_jpg}")
73
+
74
+ # ----- STEP 2: Build chunk plan -----
75
+ chunk_plan_path = Path(PLAN_FILE)
76
+ if chunk_plan_path.exists():
77
+ print("[2] Loading existing chunk plan...")
78
+ with open(chunk_plan_path, 'rb') as f:
79
+ chunks = pickle.load(f)
80
+ print(f" Loaded {len(chunks)} chunks")
81
+ else:
82
+ print("[2] Building chunk plan...")
83
+ chunks = []
84
+ current_chunk = []
85
+ current_size = 0
86
+ chunk_idx = 0
87
+
88
+ for idx, row in pcd_info.iterrows():
89
+ item_size = int(row['total_size'])
90
+
91
+ if current_size > 0 and current_size + item_size > CHUNK_TARGET and current_size >= CHUNK_MIN:
92
+ chunks.append({
93
+ 'index': chunk_idx,
94
+ 'name': f'data_{chunk_idx:04d}.zip',
95
+ 'files': current_chunk,
96
+ 'total_size': current_size,
97
+ 'bag_ids': list(set(f['bag_id'] for f in current_chunk)),
98
+ })
99
+ chunk_idx += 1
100
+ current_chunk = []
101
+ current_size = 0
102
+
103
+ current_chunk.append({
104
+ 'pcd_path': row['path'],
105
+ 'jpg_path': row['path_to_jpg'] if pd.notna(row['path_to_jpg']) else None,
106
+ 'bag_id': row['bag_id'],
107
+ 'pcd_size': int(row['pcd_size']),
108
+ 'jpg_size': int(row['jpg_size']),
109
+ 'main_timestamp': int(row['main_timestamp']),
110
+ })
111
+ current_size += item_size
112
+
113
+ # Last chunk
114
+ if current_chunk:
115
+ chunks.append({
116
+ 'index': chunk_idx,
117
+ 'name': f'data_{chunk_idx:04d}.zip',
118
+ 'files': current_chunk,
119
+ 'total_size': current_size,
120
+ 'bag_ids': list(set(f['bag_id'] for f in current_chunk)),
121
+ })
122
+
123
+ with open(chunk_plan_path, 'wb') as f:
124
+ pickle.dump(chunks, f)
125
+ print(f" Created {len(chunks)} chunks, saved plan")
126
+
127
+ # Summary
128
+ total_planned = sum(c['total_size'] for c in chunks)
129
+ print(f" Total planned size: {total_planned / 1e9:.1f} GB")
130
+ print(f" Chunks: {len(chunks)}, avg size: {total_planned/len(chunks)/1e6:.0f} MB")
131
+
132
+ # ----- STEP 3: Process chunks (download + zip) -----
133
+ # Find out which chunks are already done
134
+ existing_zips = set(f.name for f in OUTPUT_DIR.iterdir() if f.suffix == '.zip')
135
+ done_indices = set()
136
+ for c in chunks:
137
+ if c['name'] in existing_zips:
138
+ # Verify zip is valid
139
+ try:
140
+ with zipfile.ZipFile(OUTPUT_DIR / c['name'], 'r') as zf:
141
+ if zf.testzip() is None:
142
+ done_indices.add(c['index'])
143
+ except:
144
+ pass
145
+
146
+ todo_chunks = [c for c in chunks if c['index'] not in done_indices]
147
+ print(f"\n[3] Processing chunks ({len(todo_chunks)} remaining, {len(done_indices)} done)...")
148
+
149
+ def download_file(file_info):
150
+ """Download a single PCD or JPG file to temp directory."""
151
+ result = {}
152
+
153
+ # Download PCD
154
+ pcd_uuid = Path(file_info['pcd_path']).stem
155
+ pcd_tmp = OUTPUT_DIR / f'tmp_{pcd_uuid}.pcd'
156
+ if not pcd_tmp.exists():
157
+ url = f'{LAKEFS_BASE}/api/v1/repositories/astraldb/refs/main/objects'
158
+ r = session.get(url, params={'path': file_info['pcd_path']}, timeout=REQUEST_TIMEOUT)
159
+ if r.status_code != 200:
160
+ return {'error': f'PCD download failed: {r.status_code}', 'pcd_uuid': pcd_uuid}
161
+ with open(pcd_tmp, 'wb') as f:
162
+ f.write(r.content)
163
+ result['pcd_tmp'] = str(pcd_tmp)
164
+ result['pcd_arc'] = f"pcd/{pcd_uuid}.pcd"
165
+
166
+ # Download JPG if exists
167
+ if file_info['jpg_path']:
168
+ jpg_uuid = Path(file_info['jpg_path']).stem
169
+ jpg_tmp = OUTPUT_DIR / f'tmp_{jpg_uuid}.jpg'
170
+ if not jpg_tmp.exists():
171
+ url = f'{LAKEFS_BASE}/api/v1/repositories/ros2bags/refs/main/objects'
172
+ r = session.get(url, params={'path': file_info['jpg_path']}, timeout=REQUEST_TIMEOUT)
173
+ if r.status_code != 200:
174
+ result['jpg_error'] = f'JPG download failed: {r.status_code}'
175
+ else:
176
+ with open(jpg_tmp, 'wb') as f:
177
+ f.write(r.content)
178
+ if jpg_tmp.exists():
179
+ result['jpg_tmp'] = str(jpg_tmp)
180
+ result['jpg_arc'] = f"jpg/{jpg_uuid}.jpg"
181
+
182
+ return result
183
+
184
+ def process_chunk(chunk):
185
+ """Download all files for a chunk and create ZIP."""
186
+ chunk_name = chunk['name']
187
+ zip_path = OUTPUT_DIR / chunk_name
188
+
189
+ if zip_path.exists():
190
+ try:
191
+ with zipfile.ZipFile(zip_path, 'r') as zf:
192
+ if zf.testzip() is None:
193
+ return {'index': chunk['index'], 'name': chunk_name, 'status': 'already_done'}
194
+ except:
195
+ pass
196
+
197
+ # Parallel download
198
+ with concurrent.futures.ThreadPoolExecutor(max_workers=MAX_WORKERS) as ex:
199
+ dl_results = list(ex.map(download_file, chunk['files']))
200
+
201
+ errors = [r for r in dl_results if 'error' in r]
202
+ if errors:
203
+ # Clean up temps
204
+ for r in dl_results:
205
+ for key in ['pcd_tmp', 'jpg_tmp']:
206
+ if key in r and Path(r[key]).exists():
207
+ Path(r[key]).unlink()
208
+ return {'index': chunk['index'], 'name': chunk_name, 'status': 'error', 'errors': errors}
209
+
210
+ # Create ZIP
211
+ with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED, compresslevel=1) as zf:
212
+ for r in dl_results:
213
+ zf.write(r['pcd_tmp'], r['pcd_arc'])
214
+ if 'jpg_tmp' in r:
215
+ zf.write(r['jpg_tmp'], r['jpg_arc'])
216
+
217
+ # Clean up temp files
218
+ for r in dl_results:
219
+ for key in ['pcd_tmp', 'jpg_tmp']:
220
+ if key in r and Path(r[key]).exists():
221
+ Path(r[key]).unlink()
222
+
223
+ actual_size = zip_path.stat().st_size
224
+ return {'index': chunk['index'], 'name': chunk_name, 'status': 'ok', 'size': actual_size}
225
+
226
+ # Process chunks one by one to manage disk space
227
+ for i, chunk in enumerate(todo_chunks):
228
+ print(f" Chunk {i+1}/{len(todo_chunks)}: {chunk['name']} ({chunk['total_size']/1e6:.0f} MB, {len(chunk['files'])} files)...", end=' ')
229
+ sys.stdout.flush()
230
+ result = process_chunk(chunk)
231
+ if result['status'] == 'ok':
232
+ print(f"OK ({result['size']/1e6:.0f} MB)")
233
+ elif result['status'] == 'error':
234
+ print(f"ERROR: {result['errors'][:2]}")
235
+ elif result['status'] == 'already_done':
236
+ print("already done")
237
+
238
+ # Save updated plan (in case we need to resume)
239
+ final_chunks = []
240
+ for c in chunks:
241
+ zip_path = OUTPUT_DIR / c['name']
242
+ c['actual_size'] = zip_path.stat().st_size if zip_path.exists() else 0
243
+ final_chunks.append(c)
244
+ with open(chunk_plan_path, 'wb') as f:
245
+ pickle.dump(final_chunks, f)
246
+
247
+ print(f"\n[3] Done processing. Zips in {OUTPUT_DIR}:")
248
+ for f in sorted(OUTPUT_DIR.glob('*.zip')):
249
+ print(f" {f.name}: {f.stat().st_size / 1e6:.0f} MB")
250
+
251
+ # ----- STEP 4: Update merged_result.parquet -----
252
+ print("\n[4] Updating merged_result.parquet...")
253
+
254
+ # Build PCD -> archive mapping
255
+ pcd_to_archive = {}
256
+ pcd_to_arcpath = {}
257
+ for c in chunks:
258
+ zip_path = OUTPUT_DIR / c['name']
259
+ if not zip_path.exists():
260
+ continue
261
+ for f_info in c['files']:
262
+ pcd_path = f_info['pcd_path']
263
+ pcd_uuid = Path(pcd_path).stem
264
+ pcd_to_archive[pcd_path] = c['name']
265
+ pcd_to_arcpath[pcd_path] = f'pcd/{pcd_uuid}.pcd'
266
+
267
+ # Update merged_result
268
+ merged['archive'] = merged['path'].map(pcd_to_archive)
269
+ merged['pcd_path'] = merged['path'].map(pcd_to_arcpath)
270
+
271
+ # Build JPG path mapping
272
+ jpg_to_arcpath = {}
273
+ for c in chunks:
274
+ for f_info in c['files']:
275
+ if f_info['jpg_path']:
276
+ jpg_uuid = Path(f_info['jpg_path']).stem
277
+ jpg_to_arcpath[f_info['jpg_path']] = f'jpg/{jpg_uuid}.jpg'
278
+
279
+ merged['jpg_path'] = merged['path_to_jpg'].map(jpg_to_arcpath)
280
+
281
+ # Drop old path columns
282
+ merged = merged.drop(columns=['path', 'path_to_jpg'])
283
+
284
+ # Reorder columns
285
+ col_order = ['frame_id', 'label', 'data', 'main_timestamp', 'bag_id', 'archive', 'pcd_path', 'jpg_path']
286
+ available_cols = [c for c in col_order if c in merged.columns]
287
+ merged = merged[available_cols]
288
+
289
+ # Save updated merged_result
290
+ merged.to_parquet('/workspace/merged_result.parquet')
291
+ print(f" Saved {len(merged)} rows to merged_result.parquet")
292
+ print(f" Columns: {merged.columns.tolist()}")
293
+
294
+ # ----- STEP 5: Create archive_index.parquet -----
295
+ print("\n[5] Creating archive_index.parquet...")
296
+ archive_index = []
297
+ for c in chunks:
298
+ zip_path = OUTPUT_DIR / c['name']
299
+ if not zip_path.exists():
300
+ continue
301
+ timestamps = [f['main_timestamp'] for f in c['files']]
302
+ archive_index.append({
303
+ 'archive': c['name'],
304
+ 'bag_ids': ','.join(c['bag_ids']),
305
+ 'min_timestamp': min(timestamps),
306
+ 'max_timestamp': max(timestamps),
307
+ 'size_mb': round(zip_path.stat().st_size / 1e6, 1),
308
+ 'file_count': len(c['files']),
309
+ })
310
+
311
+ index_df = pd.DataFrame(archive_index)
312
+ index_df.to_parquet('/workspace/archive_index.parquet')
313
+ print(f" Saved {len(index_df)} entries to archive_index.parquet")
314
+
315
+ print("\nDone!")
camera_info.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e90c87ff3081da2a09c0c52b61cd2b35130d14c8653840eee933e9e4aa2ce99
3
+ size 554793
cleanup_dataset.py ADDED
@@ -0,0 +1,180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ Clean dataset: remove black JPGs (brightness < 30), update metadata.
4
+ No PCD issues found — all PCD sizes are 2-6 MB (healthy).
5
+ """
6
+ import pandas as pd
7
+ import zipfile
8
+ import io
9
+ import shutil
10
+ import concurrent.futures
11
+ from pathlib import Path
12
+ from collections import defaultdict
13
+ from PIL import Image
14
+
15
+ ZIP_DIR = Path('/workspace/3D_o')
16
+ MERGED_FILE = '/workspace/merged_result.parquet'
17
+ INDEX_FILE = '/workspace/archive_index.parquet'
18
+ CATALOG_FILE = '/workspace/file_catalog.parquet'
19
+ BAD_FILE = '/workspace/bad_files.parquet'
20
+
21
+ BRIGHTNESS_THRESHOLD = 30 # below this = black frame
22
+
23
+ print("=" * 60)
24
+ print("Finding black JPGs (brightness < 30)...")
25
+ print("=" * 60)
26
+
27
+ catalog = pd.read_parquet(CATALOG_FILE)
28
+ jpg_catalog = catalog[catalog['path'].str.startswith('jpg/')]
29
+ suspicious = jpg_catalog[jpg_catalog['size'] < 500_000]
30
+ print(f" Suspicious JPGs (< 500 KB): {len(suspicious)}")
31
+
32
+ def check_archive(archive):
33
+ bad = []
34
+ rows = suspicious[suspicious['archive'] == archive]
35
+ if len(rows) == 0:
36
+ return bad
37
+ try:
38
+ with zipfile.ZipFile(ZIP_DIR / archive, 'r') as zf:
39
+ for _, row in rows.iterrows():
40
+ data = zf.read(row['path'])
41
+ img = Image.open(io.BytesIO(data))
42
+ gray = img.convert('L')
43
+ pixels = gray.getdata()
44
+ n = gray.width * gray.height
45
+ mean = sum(pixels) / n
46
+ if mean < BRIGHTNESS_THRESHOLD:
47
+ bad.append((archive, row['path'], row['size'], mean))
48
+ except Exception as e:
49
+ print(f" ERROR {archive}: {e}")
50
+ return bad
51
+
52
+ archives = suspicious['archive'].unique()
53
+ bad_jpgs = []
54
+ with concurrent.futures.ThreadPoolExecutor(max_workers=8) as ex:
55
+ results = ex.map(check_archive, archives)
56
+ for r in results:
57
+ bad_jpgs.extend(r)
58
+
59
+ print(f" Black JPGs found: {len(bad_jpgs)}")
60
+
61
+ bad_records = []
62
+ for a, p, sz, b in bad_jpgs:
63
+ bad_records.append({'archive': a, 'path': p, 'type': 'jpg', 'reason': f'black_frame:brightness={b:.1f}'})
64
+
65
+ bad_df = pd.DataFrame(bad_records)
66
+ bad_df.to_parquet(BAD_FILE)
67
+ print(f" Saved to {BAD_FILE}")
68
+
69
+ if len(bad_df) == 0:
70
+ print(" No bad files found. Dataset is clean!")
71
+ exit(0)
72
+
73
+ # Show affected archives
74
+ arc_counts = bad_df.groupby('archive').size().sort_index()
75
+ print(f"\n Affected archives:")
76
+ for arc, cnt in arc_counts.items():
77
+ print(f" {arc}: {cnt} black JPGs")
78
+
79
+ # ─── Phase 2: Update merged_result.parquet ────────────────────────────────
80
+ print("\n" + "=" * 60)
81
+ print("Updating merged_result.parquet...")
82
+ print("=" * 60)
83
+
84
+ bad_set = set(zip(bad_df['archive'], bad_df['path']))
85
+
86
+ merged = pd.read_parquet(MERGED_FILE)
87
+ print(f" Original rows: {len(merged)}")
88
+
89
+ # Find rows with bad JPGs
90
+ merged['_bad_jpg'] = merged.apply(
91
+ lambda r: pd.notna(r['jpg_path']) and (r['archive'], r['jpg_path']) in bad_set, axis=1
92
+ )
93
+ n_bad = merged['_bad_jpg'].sum()
94
+ print(f" Rows with black JPG: {n_bad}")
95
+
96
+ # Clear jpg_path for rows with bad JPGs (keep the row, PCD is fine)
97
+ merged.loc[merged['_bad_jpg'], 'jpg_path'] = None
98
+ merged = merged.drop(columns=['_bad_jpg'])
99
+
100
+ merged.to_parquet(MERGED_FILE)
101
+ print(f" Saved {len(merged)} rows")
102
+
103
+ # ─── Phase 3: Repack ZIPs ────────────────────────────────────────────────
104
+ print("\n" + "=" * 60)
105
+ print("Repacking affected ZIP archives...")
106
+ print("=" * 60)
107
+
108
+ bad_by_archive = defaultdict(list)
109
+ for _, row in bad_df.iterrows():
110
+ bad_by_archive[row['archive']].append(row['path'])
111
+
112
+ def repack(archive):
113
+ zip_path = ZIP_DIR / archive
114
+ tmp_path = zip_path.with_suffix('.tmp.zip')
115
+ bad_files = set(bad_by_archive[archive])
116
+ try:
117
+ with zipfile.ZipFile(zip_path, 'r') as zin:
118
+ with zipfile.ZipFile(tmp_path, 'w', zipfile.ZIP_DEFLATED, compresslevel=1) as zout:
119
+ for info in zin.infolist():
120
+ if info.filename not in bad_files:
121
+ zout.writestr(info, zin.read(info.filename))
122
+ orig_size = zip_path.stat().st_size
123
+ shutil.move(tmp_path, zip_path)
124
+ new_size = zip_path.stat().st_size
125
+ removed = sum(1 for f in bad_files)
126
+ return (archive, 'ok', orig_size, new_size, removed)
127
+ except Exception as e:
128
+ if tmp_path.exists():
129
+ tmp_path.unlink()
130
+ return (archive, 'error', str(e)[:100])
131
+
132
+ archives_to_fix = sorted(bad_by_archive.keys())
133
+ print(f" Archives to repack: {len(archives_to_fix)}")
134
+
135
+ with concurrent.futures.ThreadPoolExecutor(max_workers=4) as ex:
136
+ results = list(ex.map(repack, archives_to_fix))
137
+
138
+ for r in results:
139
+ if r[1] == 'ok':
140
+ saving = (r[2] - r[3]) / 1e6
141
+ print(f" {r[0]}: {r[2]/1e6:.0f} MB -> {r[3]/1e6:.0f} MB ({r[4]} files removed, -{saving:.0f} MB)")
142
+ else:
143
+ print(f" {r[0]}: ERROR - {r[2]}")
144
+
145
+ # ─── Phase 4: Update archive_index.parquet ────────────────────────────────
146
+ print("\n" + "=" * 60)
147
+ print("Updating archive_index.parquet...")
148
+ print("=" * 60)
149
+
150
+ records = []
151
+ for zp in sorted(ZIP_DIR.glob('*.zip')):
152
+ try:
153
+ with zipfile.ZipFile(zp, 'r') as zf:
154
+ info_list = zf.infolist()
155
+ records.append({
156
+ 'archive': zp.name,
157
+ 'size_mb': round(zp.stat().st_size / 1e6, 1),
158
+ 'file_count': len(info_list),
159
+ 'pcd_count': sum(1 for i in info_list if i.filename.startswith('pcd/')),
160
+ 'jpg_count': sum(1 for i in info_list if i.filename.startswith('jpg/')),
161
+ })
162
+ except Exception as e:
163
+ print(f" ERROR {zp.name}: {e}")
164
+
165
+ new_index = pd.DataFrame(records)
166
+ new_index.to_parquet(INDEX_FILE)
167
+ print(f" Saved {len(new_index)} entries")
168
+
169
+ # ─── Summary ──────────────────────────────────────────────────────────────
170
+ print("\n" + "=" * 60)
171
+ print("CLEANUP SUMMARY")
172
+ print("=" * 60)
173
+ print(f" Black JPGs removed: {len(bad_jpgs)}")
174
+ print(f" Archives repacked: {len(archives_to_fix)}")
175
+ print(f" Rows with cleared jpg_path: {n_bad}")
176
+ print(f" Total dataset size: {new_index['size_mb'].sum():.0f} MB")
177
+ print(f" Total valid files: {new_index['file_count'].sum()}")
178
+ print(f" Total valid PCDs: {new_index['pcd_count'].sum()}")
179
+ print(f" Total valid JPGs: {new_index['jpg_count'].sum()}")
180
+ print("\nDone! Dataset is clean.")
file_catalog.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8795069a1fc26e47cdfd4ae2581aaad8b5919259d07e3b97f717ca141e6035fc
3
+ size 3249137
merged_result.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6fff9987c693141b698ce9e6f8d918b48ea0be9dc1a2f3685e2217fb0cad994c
3
+ size 42864083
tf.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33fd835d77eb64ee632d3a26156d4a64ba5c3cfca451020ec4c1e0f4443442ee
3
+ size 823943