Spaces:
Sleeping
Sleeping
File size: 1,429 Bytes
a5ec84d | 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 | """Build the dev subsample: a small seeded slice of Flickr8k written in the same
on-disk format (Karpathy JSON + Images/) as the full set."""
from __future__ import annotations
import json
import shutil
from capit.config import config
from capit.data.download import _copy_atomic
from capit.data.records import select_records
def make_subsample() -> None:
full = json.loads(config.karpathy_json.read_text())
selected = select_records(full["images"], config.subsample_counts, config.seed)
sources = [(config.images_dir / r["filename"], r) for r in selected]
missing = [r["filename"] for src, r in sources if not src.is_file()]
if missing:
raise FileNotFoundError(
f"{len(missing)} source images missing under {config.images_dir} "
f"(rerun the Stage 0.2 download), e.g. {missing[:3]}"
)
if config.subsample_root.exists():
shutil.rmtree(config.subsample_root)
config.subsample_images_dir.mkdir(parents=True, exist_ok=True)
for src, rec in sources:
_copy_atomic(src, config.subsample_images_dir / rec["filename"])
config.subsample_json.write_text(json.dumps({"images": selected, "dataset": full["dataset"]}))
tally = {s: sum(r["split"] == s for r in selected) for s in config.subsample_counts}
print(f"subsample: {len(selected)} images {tally} -> {config.subsample_root}")
if __name__ == "__main__":
make_subsample()
|