File size: 18,149 Bytes
62a0e4e | 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 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 | #!/usr/bin/env python3
"""
Generate a Parquet dataset of TCGA patches described in sample_dataset_30.txt.
Each line in the input text file is expected to follow the format emitted by
create_sample_dataset_txt.py:
/path/to/slide.svs <x> <y> <level>
Lines that include MPP metadata from the ablation sampler are also accepted:
/path/to/slide.svs <x> <y> <level> <mpp_x> <mpp_y>
The script opens every referenced slide once, extracts a 224x224 RGB patch at the
requested coordinates/level, and writes the samples into per-task Parquet files.
It supports PNG/JPEG/raw outputs, task chunking, resume markers, and optional
multi-processing. Results land in /data/TCGA_parquet_sample30/ unless overridden.
"""
from __future__ import annotations
import argparse
import atexit
import logging
import multiprocessing as mp
from collections import OrderedDict
from concurrent.futures import ProcessPoolExecutor, as_completed
from dataclasses import dataclass
from io import BytesIO
import os
import random
from pathlib import Path
from typing import Iterable, List, Sequence, Set, Tuple
import numpy as np
import pyarrow as pa
import pyarrow.parquet as pq
from openslide import OpenSlide
@dataclass(frozen=True)
class PatchSpec:
slide_path: str
x: int
y: int
level: int
@dataclass(frozen=True)
class TaskConfig:
tile_size: int
encoding: str
max_open_slides: int
output_dir: str
progress_dir: str
parquet_compression: str | None
CACHE_LIMIT_ENV = "PARQUET_MAX_OPEN_SLIDES"
try:
_env_cache_limit = int(os.environ.get(CACHE_LIMIT_ENV, "16"))
except (TypeError, ValueError):
_env_cache_limit = 16
DEFAULT_MAX_OPEN_SLIDES = max(1, _env_cache_limit)
MAX_OPEN_SLIDES = DEFAULT_MAX_OPEN_SLIDES
SLIDE_CACHE: "OrderedDict[str, OpenSlide]" = OrderedDict()
def prune_slide_cache() -> None:
"""Ensure the slide cache does not exceed MAX_OPEN_SLIDES."""
if MAX_OPEN_SLIDES < 1:
return
while len(SLIDE_CACHE) > MAX_OPEN_SLIDES:
old_path, old_slide = SLIDE_CACHE.popitem(last=False)
try:
old_slide.close()
except Exception:
logging.exception("Failed to close slide %s during cache prune.", old_path)
def set_max_open_slides(limit: int) -> None:
"""Update cache limit and prune if needed."""
global MAX_OPEN_SLIDES
limit = max(1, int(limit))
if limit == MAX_OPEN_SLIDES:
return
MAX_OPEN_SLIDES = limit
prune_slide_cache()
def ensure_cache_limit(limit: int) -> None:
"""Idempotent helper invoked inside workers."""
try:
set_max_open_slides(limit)
except Exception:
logging.exception("Unexpected failure updating slide cache limit.")
@atexit.register
def close_all_slides() -> None:
"""Close any slides left in the cache when the process exits."""
while SLIDE_CACHE:
path, slide = SLIDE_CACHE.popitem(last=False)
try:
slide.close()
except Exception:
logging.exception("Failed to close slide %s during interpreter shutdown.", path)
def get_slide(path: str) -> OpenSlide:
slide = SLIDE_CACHE.get(path)
if slide is None:
slide = OpenSlide(path)
SLIDE_CACHE[path] = slide
SLIDE_CACHE.move_to_end(path, last=True)
prune_slide_cache()
else:
SLIDE_CACHE.move_to_end(path, last=True)
return slide
def parse_specs(spec_file: Path) -> List[PatchSpec]:
specs: List[PatchSpec] = []
with spec_file.open("r", encoding="utf-8") as fh:
for idx, raw_line in enumerate(fh, start=1):
line = raw_line.strip()
if not line or line.startswith("#"):
continue
parts = line.split()
if len(parts) == 4:
slide_path, x, y, level = parts
elif len(parts) == 6:
slide_path, x, y, level, *_mpp = parts
else:
raise ValueError(f"Invalid spec line {idx}: {line}")
specs.append(PatchSpec(slide_path, int(x), int(y), int(level)))
if not specs:
raise ValueError(f"No patch specifications found in {spec_file}")
logging.info("Parsed %d patch specifications from %s.", len(specs), spec_file)
return specs
def group_by_slide(specs: Sequence[PatchSpec]) -> List[Tuple[str, List[PatchSpec]]]:
"""Group patch specs so each slide is opened only once."""
grouped: "OrderedDict[str, List[PatchSpec]]" = OrderedDict()
for spec in specs:
grouped.setdefault(spec.slide_path, []).append(spec)
return [(slide, patches) for slide, patches in grouped.items()]
def build_tasks(
groups: Sequence[Tuple[str, Sequence[PatchSpec]]],
max_patches_per_task: int,
*,
start_index: int = 0,
) -> List[Tuple[str, List[PatchSpec], str]]:
"""Chunk grouped specs to improve parallel balance on large nodes."""
tasks: List[Tuple[str, List[PatchSpec], str]] = []
idx = start_index
for slide, patches in groups:
chunk = len(patches) if max_patches_per_task <= 0 else max_patches_per_task
for start in range(0, len(patches), chunk):
chunk_specs = list(patches[start : start + chunk])
task_id = f"{idx:08d}"
tasks.append((slide, chunk_specs, task_id))
idx += 1
return tasks
def find_next_task_index(output_dir: Path) -> int:
"""Return the next sequential task index based on existing Parquet files."""
max_idx = -1
for candidate in output_dir.glob("*.parquet"):
stem = candidate.stem
if stem.isdigit():
try:
max_idx = max(max_idx, int(stem))
except ValueError:
continue
return max_idx + 1
def load_completed_task_ids(progress_dir: Path, output_dir: Path) -> Set[str]:
"""Load completed task IDs from progress markers, pruning stale entries."""
done_ids: Set[str] = set()
for marker in progress_dir.iterdir():
if not marker.is_file():
continue
if marker.name == "task_offset.txt":
continue
parquet_path = output_dir / f"{marker.stem}.parquet"
if parquet_path.exists():
done_ids.add(marker.stem)
else:
marker.unlink()
return done_ids
def process_task_worker(
task: Tuple[str, Sequence[PatchSpec], str],
config: TaskConfig,
) -> str:
"""Process a single task and materialize it to a Parquet file."""
slide_path, specs, task_id = task
ensure_cache_limit(config.max_open_slides)
slide = get_slide(slide_path)
buf = BytesIO() if config.encoding in ("png", "jpeg") else None
task_ids: List[str] = []
slide_paths: List[str] = []
xs: List[int] = []
ys: List[int] = []
levels: List[int] = []
tile_sizes: List[int] = []
level_downsamples: List[float] = []
image_bytes: List[bytes] = []
image_dtypes: List[str] = []
for spec in specs:
if spec.level < 0 or spec.level >= slide.level_count:
raise ValueError(f"Level {spec.level} invalid for {slide_path}")
region = slide.read_region(
(spec.x, spec.y), spec.level, (config.tile_size, config.tile_size)
).convert("RGB")
task_ids.append(task_id)
slide_paths.append(slide_path)
xs.append(spec.x)
ys.append(spec.y)
levels.append(spec.level)
tile_sizes.append(config.tile_size)
level_downsamples.append(float(slide.level_downsamples[spec.level]))
if config.encoding == "png":
buf.seek(0)
buf.truncate(0)
region.save(buf, format="PNG", optimize=True)
image_bytes.append(buf.getvalue())
image_dtypes.append("uint8")
elif config.encoding == "jpeg":
buf.seek(0)
buf.truncate(0)
region.save(buf, format="JPEG", quality=95, optimize=True)
image_bytes.append(buf.getvalue())
image_dtypes.append("uint8")
else:
arr = np.asarray(region, dtype=np.uint8)
image_bytes.append(arr.tobytes())
image_dtypes.append(str(arr.dtype))
table = pa.table(
{
"task_id": pa.array(task_ids, type=pa.string()),
"slide_path": pa.array(slide_paths, type=pa.string()),
"x": pa.array(xs, type=pa.int32()),
"y": pa.array(ys, type=pa.int32()),
"level": pa.array(levels, type=pa.int32()),
"tile_size": pa.array(tile_sizes, type=pa.int32()),
"level_downsample": pa.array(level_downsamples, type=pa.float32()),
"image_dtype": pa.array(image_dtypes, type=pa.string()),
"image_bytes": pa.array(image_bytes, type=pa.binary()),
}
)
metadata = dict(table.schema.metadata or {})
metadata.update(
{
b"image_encoding": config.encoding.encode("utf-8"),
b"tile_size": str(config.tile_size).encode("utf-8"),
}
)
table = table.replace_schema_metadata(metadata)
output_path = Path(config.output_dir) / f"{task_id}.parquet"
pq.write_table(table, output_path, compression=config.parquet_compression)
progress_path = Path(config.progress_dir) / f"{task_id}.done"
progress_path.write_text("1\n")
return task_id
def parse_args(argv: Iterable[str] | None = None) -> argparse.Namespace:
parser = argparse.ArgumentParser(
description="Build a Parquet dataset of TCGA patches listed in a text file."
)
parser.add_argument(
"--spec-file",
type=Path,
default=Path("sample_dataset_30.txt"),
help="Path to the text file produced by create_sample_dataset_txt.py.",
)
parser.add_argument(
"--output-dir",
type=Path,
default=Path("/data/TCGA_parquet_sample30/"),
help="Directory where Parquet files will be written (default: /data/TCGA_parquet_sample30/).",
)
parser.add_argument(
"--tile-size",
type=int,
default=224,
help="Square tile size (pixels) to read from each slide.",
)
parser.add_argument(
"--num-workers",
type=int,
default=None,
help="Worker processes for parallel patch extraction (default: auto based on CPUs).",
)
parser.add_argument(
"--start-method",
choices=("fork", "spawn", "forkserver"),
default=None,
help="Multiprocessing start method used by the worker pool (default: library default).",
)
parser.add_argument(
"--mode",
choices=("overwrite", "append"),
default="overwrite",
help="Whether to overwrite or append to an existing Parquet dataset.",
)
parser.add_argument(
"--keep-order",
action="store_true",
help="Keep samples in the same order as listed in the spec file.",
)
parser.add_argument(
"--encoding",
choices=("png", "jpeg", "raw"),
default="png",
help="Patch serialization format (png: smaller, jpeg/raw: faster).",
)
parser.add_argument(
"--task-chunk-size",
type=int,
default=42000,
help="Max patches per task to balance multi-process workloads (<=0 disables chunking). This is an arbitrarily high number which basically means that all patches for a slide will be processed in a single task. Can consider letting tasks span multiple slides in a future code revision if you want parquet files to be larger size.",
)
parser.add_argument(
"--shuffle-tasks",
action="store_true",
help="Shuffle task order (ignored when --keep-order is set).",
)
parser.add_argument(
"--resume",
action="store_true",
help="Skip tasks that completed in a previous run using progress markers.",
)
parser.add_argument(
"--max-open-slides",
type=int,
default=DEFAULT_MAX_OPEN_SLIDES,
help=(
"Maximum slides cached per worker before least-recently-used eviction; "
),
)
parser.add_argument(
"--parquet-compression",
default="none",
choices=("none", "snappy", "gzip", "brotli", "zstd", "lz4"),
help="Compression codec for Parquet output (default: none).",
)
parser.add_argument(
"--log-level",
default="INFO",
help="Python logging level (default: INFO).",
)
return parser.parse_args(argv)
def main(argv: Iterable[str] | None = None) -> None:
args = parse_args(argv)
logging.basicConfig(
level=getattr(logging, args.log_level.upper(), logging.INFO),
format="%(asctime)s - %(levelname)s - %(message)s",
)
ensure_cache_limit(args.max_open_slides)
if not args.spec_file.exists():
raise SystemExit(f"Spec file not found: {args.spec_file}")
specs = parse_specs(args.spec_file)
if not specs:
raise SystemExit("No valid patch specs to process. Aborting.")
args.output_dir.mkdir(parents=True, exist_ok=True)
compression = None if args.parquet_compression == "none" else args.parquet_compression
existing_parquet = [
path for path in args.output_dir.glob("*.parquet") if path.is_file()
]
if args.mode == "overwrite" and not args.resume:
for path in existing_parquet:
try:
path.unlink()
except Exception:
logging.exception("Failed to remove %s during overwrite preparation.", path)
raise
progress_dir = args.output_dir / ".resume"
progress_dir.mkdir(parents=True, exist_ok=True)
if not args.resume:
for marker in progress_dir.iterdir():
if marker.is_file():
marker.unlink()
done_ids = load_completed_task_ids(progress_dir, args.output_dir)
offset_file = progress_dir / "task_offset.txt"
if args.resume:
if offset_file.exists():
try:
start_index = int(offset_file.read_text().strip())
except ValueError:
logging.warning("Ignoring malformed task offset metadata in %s.", offset_file)
start_index = 0
elif done_ids:
try:
start_index = min(int(task_id) for task_id in done_ids)
except ValueError:
start_index = 0
elif args.mode == "append":
start_index = find_next_task_index(args.output_dir)
else:
start_index = 0
else:
start_index = find_next_task_index(args.output_dir) if args.mode == "append" else 0
try:
offset_file.write_text(f"{start_index}\n")
except Exception:
logging.exception("Failed to persist task offset metadata to %s.", offset_file)
raise
grouped = group_by_slide(specs)
tasks = build_tasks(
grouped,
args.task_chunk_size,
start_index=start_index,
)
if done_ids:
tasks = [task for task in tasks if task[2] not in done_ids]
if args.shuffle_tasks and not args.keep_order:
random.shuffle(tasks)
if not tasks:
logging.info("No tasks remaining after resume check.")
return
pending_patches = sum(len(task[1]) for task in tasks)
cpu_count = os.cpu_count() or 1
num_workers = args.num_workers
if num_workers is None:
num_workers = max(1, min(cpu_count, 64))
logging.info(
"Building Parquet dataset in %s (num_workers=%d, mode=%s, encoding=%s, compression=%s).",
args.output_dir,
num_workers,
args.mode,
args.encoding,
compression or "none",
)
logging.info(
"Prepared %d task(s) across %d slide(s) [chunk_size=%d, pending_patches=%d].",
len(tasks),
len(grouped),
args.task_chunk_size,
pending_patches,
)
if done_ids:
logging.info("Skipping %d previously completed task(s).", len(done_ids))
config = TaskConfig(
tile_size=args.tile_size,
encoding=args.encoding,
max_open_slides=args.max_open_slides,
output_dir=str(args.output_dir),
progress_dir=str(progress_dir),
parquet_compression=compression,
)
if num_workers <= 1:
for idx, task in enumerate(tasks, start=1):
task_id = process_task_worker(task, config)
logging.info(
"Completed task %s (%d/%d) for slide %s (%d patch(es)).",
task_id,
idx,
len(tasks),
task[0],
len(task[1]),
)
else:
mp_context = mp.get_context(args.start_method) if args.start_method else None
with ProcessPoolExecutor(max_workers=num_workers, mp_context=mp_context) as executor:
futures = {executor.submit(process_task_worker, task, config): task for task in tasks}
for idx, future in enumerate(as_completed(futures), start=1):
slide_path, specs_for_task, task_id_hint = futures[future]
try:
completed_task_id = future.result()
except Exception:
logging.exception(
"Task %s failed for slide %s (%d patch(es)).",
task_id_hint,
slide_path,
len(specs_for_task),
)
raise
logging.info(
"Completed task %s (%d/%d) for slide %s (%d patch(es)).",
completed_task_id,
idx,
len(tasks),
slide_path,
len(specs_for_task),
)
logging.info("Dataset build complete.")
if __name__ == "__main__":
main()
# python3 build_parquet_sample_dataset.py \
# --spec-file /data/TCGA/sample_dataset_ablation.txt \
# --output-dir /data/TCGA_ablations_baseline/ \
# --encoding jpeg \
# --shuffle-tasks \
# --num-workers 32 \
# --max-open-slides 1 \
# --start-method spawn \
# --mode append \
# --resume
# PS: Always set max-open-slides to 1 because you'll go out of memory otherwise;
|