File size: 26,008 Bytes
2fe488a | 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 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 | #!/usr/bin/env python
"""Run UNet + transformer edge prediction on datasets and export to .geff.
Usage:
uv run scripts/predict_unet_transformer.py --split 0
"""
import argparse
import contextlib
import json
import os
import sys
from dataclasses import dataclass
from pathlib import Path
import numpy as np
import polars as pl
import torch
import torch.nn.functional as F
import zarr
from tqdm import tqdm
import tracksdata as td
from biohub_tracking.io import open_dataset, save_graph
# Import model and helpers from companion training script.
sys.path.insert(0, str(Path(__file__).parent))
from train_unet_transformer import (
DEFAULT_METHOD,
UNetNodeTransformer,
extract_pos_features,
_POS_EMBED_DIM,
)
from biohub_tracking.models import TemporalUNet3D
from dataspec import USERNAME, INTERACTIVE, WEIGHTS_PATH
from evaluate import evaluate_run
from biohub_tracking.metrics import summarise
# =============================================================================
# Prediction config
# =============================================================================
@dataclass
class PredictConfig:
"""All hyperparameters that can affect prediction quality / score.
Detection
---------
det_threshold : float
Minimum sigmoid probability for a local-max peak to be kept.
Edge filtering
--------------
edge_activation : str
Activation applied to raw edge logits: ``"sigmoid"`` (independent
per-edge scores) or ``"softmax"`` (row-normalised over t+1 nodes).
threshold : float
Minimum edge probability to consider a link at all.
max_parents_per_node : int
Maximum number of incoming edges per node (typically 1).
max_children_per_node : int
Maximum number of outgoing edges per node (1 = no divisions, 2 = divisions allowed).
"""
# Detection
det_threshold: float = 0.5
det_tta: bool = True # flip-xy TTA for detection logits
pool_kernel_um: float = 3.0 # max-pool kernel size in µm for detection peak extraction
# Edge filtering
edge_activation: str = "softmax" # "sigmoid" or "softmax"
threshold: float = 0.5
# ILP post-processing
use_ilp: bool = False
ilp_edge_weight: float = -1.0
ilp_appearance_weight: float = 0.1
ilp_disappearance_weight: float = 0.1
ilp_division_weight: float = 1.0
max_parents_per_node: int | None = None
max_children_per_node: int | None = None
def __post_init__(self) -> None:
# When ILP is enabled it handles parent/children constraints itself,
# so greedy limits are left unconstrained (None). When ILP is
# disabled, default to 1/1 to avoid unconstrained edge assignment.
if not self.use_ilp:
if self.max_parents_per_node is None:
self.max_parents_per_node = 1
if self.max_children_per_node is None:
self.max_children_per_node = 2
# =============================================================================
# Helpers
# =============================================================================
@contextlib.contextmanager
def suppress_output():
"""Context manager to suppress stdout and stderr."""
with open(os.devnull, "w") as devnull:
with contextlib.redirect_stdout(devnull), contextlib.redirect_stderr(devnull):
yield
# =============================================================================
# Graph building
# =============================================================================
def build_graph(
coords: np.ndarray,
edges: list[tuple[int, int, float, float]],
) -> td.graph.InMemoryGraph:
"""Build a tracksdata graph from detection coords and predicted edges.
Avoids ``add_node_attr_key`` to sidestep a tracksdata/Polars compatibility
issue where the float default value is mistakenly used as a dtype.
Probabilities are passed as-is (softmax output, already in [0, 1]).
"""
graph = td.graph.InMemoryGraph()
for key in ["z", "y", "x"]:
graph.add_node_attr_key(key, pl.Float64, -999999.0)
node_ids = graph.bulk_add_nodes([
{"t": int(t), "z": float(z), "y": float(y), "x": float(x)}
for t, z, y, x in coords
])
if edges:
graph.add_edge_attr_key("edge_prob", pl.Float64, 0.0)
graph.add_edge_attr_key("edge_dist", pl.Float64, 0.0)
graph.bulk_add_edges([
{
"source_id": node_ids[src],
"target_id": node_ids[tgt],
"edge_prob": prob,
"edge_dist": dist,
}
for src, tgt, prob, dist in edges
])
return graph
# =============================================================================
# Model loading
# =============================================================================
_DEFAULT_CONFIG = {
"unet_out_channels": 32,
"unet_layers": [32, 64, 128],
"downsample": [1, 4, 4],
"window_size": 2,
}
def load_model(
weights_path: Path, device: torch.device,
) -> tuple[UNetNodeTransformer, int, tuple[int, ...]]:
"""Reconstruct UNetNodeTransformer from saved config + weights.
Reads ``config.json`` from the same directory as the weights file.
Falls back to ``_DEFAULT_CONFIG`` if the file is missing.
Returns ``(model, window_size, downsample)``.
"""
config_path = weights_path.parent / "config.json"
if config_path.exists():
config = {**_DEFAULT_CONFIG, **json.loads(config_path.read_text())}
else:
print(f"Warning: config.json not found at {config_path}, using defaults.", flush=True)
config = _DEFAULT_CONFIG
# Support legacy configs that used "downsample_factor" (scalar).
if "downsample_factor" in config and "downsample" not in config:
df = config["downsample_factor"]
config["downsample"] = [df, df, df]
downsample = tuple(config["downsample"])
unet = TemporalUNet3D(
in_channels=1,
out_channels=config["unet_out_channels"],
layers=config["unet_layers"],
)
model = UNetNodeTransformer(
unet=unet,
unet_out_channels=config["unet_out_channels"],
pos_feat_dim=4 * _POS_EMBED_DIM,
)
state = torch.load(weights_path, map_location=device, weights_only=True)
model.load_state_dict(state)
model.to(device)
model.eval()
return model, config["window_size"], downsample
# =============================================================================
# Per-frame loading
# =============================================================================
def _load_frame(
zarr_arr,
t: int,
target_shape: list[int],
downsample: tuple[int, ...] = (1, 1, 1),
) -> torch.Tensor:
"""Load one frame from zarr with strided spatial downsample (no normalisation)."""
dz, dy, dx = downsample
raw = zarr_arr[t, ::dz, ::dy, ::dx].astype(np.float32)
frame = torch.from_numpy(raw)
if list(frame.shape) != target_shape:
frame = F.interpolate(
frame[None, None], size=target_shape,
mode="trilinear", align_corners=False,
)[0, 0]
return frame
# =============================================================================
# Inference
# =============================================================================
def pool_kernel_from_um(
um: float,
voxel_size: tuple[float, ...],
) -> tuple[int, ...]:
"""Convert a physical suppression distance (microns) to a per-axis voxel kernel.
Each axis gets ``round(um / voxel_size_axis)`` voxels, forced to odd
(for symmetric padding) and at least 1.
Parameters
----------
um : float
Desired suppression distance in microns.
voxel_size : tuple[float, ...]
Per-axis voxel sizes in microns, e.g. ``(1.625, 0.40625, 0.40625)``.
"""
kernel = []
for s in voxel_size:
k = max(1, round(um / s))
if k % 2 == 0:
k += 1
kernel.append(k)
return tuple(kernel)
def _detect_cells_pooled(
det_logits: torch.Tensor,
t: int,
det_threshold: float = 0.5,
pool_kernel: tuple[int, ...] = (3, 3, 3),
) -> np.ndarray:
"""Extract cell coordinates via max-pool local-max (same as training).
Coordinates are returned in the downsampled grid. The caller is
responsible for scaling back to original resolution if needed.
Parameters
----------
det_logits : torch.Tensor
(1, Z, Y, X) raw logits.
t : int
Time index to prepend as the first column.
det_threshold : float
Minimum sigmoid probability for a peak to be considered (default 0.5).
pool_kernel : tuple[int, ...]
Per-axis kernel size for local-max pooling,
e.g. ``(3, 11, 11)`` for anisotropic data.
Returns
-------
np.ndarray
(N, 4) int16 array with columns [t, z, y, x] in downsampled space.
"""
logits = det_logits.unsqueeze(0) # (1, 1, Z, Y, X)
pad = tuple(k // 2 for k in pool_kernel)
pooled = F.max_pool3d(logits, pool_kernel, stride=1, padding=pad)
is_peak = (logits == pooled) & (torch.sigmoid(logits) > det_threshold)
peak_idx = torch.nonzero(is_peak[0, 0]) # (N, 3)
if peak_idx.shape[0] == 0:
return np.empty((0, 4), dtype=np.int16)
coords = peak_idx.float().cpu().numpy()
t_col = np.full((len(coords), 1), t, dtype=np.float32)
return np.concatenate([t_col, coords], axis=1).astype(np.int16)
@torch.no_grad()
def predict_video(
model: UNetNodeTransformer,
ds_path: Path,
device: torch.device,
cfg: PredictConfig,
window_size: int = 2,
max_frames: int | None = None,
unet_batch_size: int = 4,
downsample: tuple[int, ...] = (1, 4, 4),
) -> tuple[np.ndarray, list[tuple[int, int, float, float]]]:
"""Run inference on a single video using sliding windows of W frames.
Windows slide with stride ``W - 1`` so every consecutive pair is covered
exactly once. UNet features from each window are reused for edge
prediction on all ``W - 1`` consecutive pairs within the window.
Returns
-------
coords : np.ndarray
Shape (N, 4) — columns [t, z, y, x] in original resolution.
edges : list of (src_idx, tgt_idx, prob, distance) tuples
"""
ds = open_dataset(ds_path, normalize=False, load_image=False, downsample=downsample)
if "0.001" not in ds.quantiles or "0.999" not in ds.quantiles:
raise ValueError(f"Zarr attrs missing image_statistics.quantiles for {ds_path}")
zarr_arr = zarr.open_group(str(ds.zarr_path), mode="r")["0"]
q_low = float(ds.quantiles["0.001"])
q_high = float(ds.quantiles["0.999"])
T = ds.image_shape[0] if max_frames is None else min(ds.image_shape[0], max_frames)
image_shape = (T,) + ds.image_shape[1:]
target_shape = list(image_shape[1:])
ds_arr = np.array(downsample, dtype=np.float32) # for coord rescaling at the end
ds_arr_t = torch.from_numpy(ds_arr).to(device) # for predict_edges (original-space coords)
pos_feat_dim = 4 * _POS_EMBED_DIM
W = window_size
voxel_size = tuple(s * d for s, d in zip(ds.scale, downsample))
pool_k = pool_kernel_from_um(cfg.pool_kernel_um, voxel_size)
# Running node registry — each entry records the frame-t detections.
# coord_offset[t] = (start, end) half-open range into the stacked array.
seen_frames: set[int] = set()
seen_pairs: set[tuple[int, int]] = set()
coord_lists: list[np.ndarray] = []
coord_offset: dict[int, tuple[int, int]] = {}
global_node_count: int = 0
all_edges: list[tuple[int, int, float, float]] = []
# Sliding windows with stride W-1 cover every consecutive pair exactly once.
stride = max(W - 1, 1)
window_starts = list(range(0, T - W + 1, stride))
# Ensure the very last pair (T-2 → T-1) is covered.
if not window_starts or window_starts[-1] + W < T:
last = max(T - W, 0)
if not window_starts or last != window_starts[-1]:
window_starts.append(last)
for ws in tqdm(
window_starts,
desc=" windows",
leave=False,
disable=not INTERACTIVE,
):
frame_indices = list(range(ws, ws + W))
# --- UNet encode (single window, batch_size=1) ---
imgs = torch.stack([
_load_frame(zarr_arr, t, target_shape, downsample)
for t in frame_indices
]) # (W, *spatial)
# Quantile normalisation (0.1%–99.9%) to match training pipeline.
imgs = ((imgs - q_low) / (q_high - q_low + 1e-6)).clamp(0.0)
imgs = imgs.unsqueeze(0).to(device) # (1, W, *spatial)
unet_out, det_logits = model.encode(imgs)
# unet_out: (1, W, C, *spatial_down), det_logits: list of W × (1, 1, *spatial_down)
# Detection TTA: original + flip-x + flip-y + flip-xy, average logits.
# TTA: flip along Y (-2) and X (-1) only. Z is excluded because
# the data is highly anisotropic (Z resolution ~4x coarser than XY),
# so Z-flips would produce out-of-distribution inputs.
if cfg.det_tta:
tta_flips = [(-1,), (-2,), (-2, -1)]
for dims in tta_flips:
imgs_flip = imgs.flip(dims)
_, det_flip = model.encode(imgs_flip)
for f in range(W):
det_logits[f] = det_logits[f] + det_flip[f].flip(dims)
del imgs_flip, det_flip
for f in range(W):
det_logits[f] = det_logits[f] / 4
del imgs
# --- Detect cells in each frame (dedup across windows) ---
for f_idx, t in enumerate(frame_indices):
if t not in seen_frames:
arr = _detect_cells_pooled(
det_logits[f_idx][0], t, cfg.det_threshold, pool_k,
)
coord_offset[t] = (global_node_count, global_node_count + len(arr))
global_node_count += len(arr)
coord_lists.append(arr)
seen_frames.add(t)
coords_so_far = (
np.concatenate(coord_lists) if coord_lists else np.empty((0, 4), dtype=np.int16)
)
# --- Edge prediction for each consecutive pair in the window ---
for f_idx in range(W - 1):
t_src, t_tgt = frame_indices[f_idx], frame_indices[f_idx + 1]
if (t_src, t_tgt) in seen_pairs:
continue
seen_pairs.add((t_src, t_tgt))
if t_src not in coord_offset or t_tgt not in coord_offset:
continue
s_src, e_src = coord_offset[t_src]
s_tgt, e_tgt = coord_offset[t_tgt]
if e_src == s_src or e_tgt == s_tgt:
continue
c_src = coords_so_far[s_src:e_src]
c_tgt = coords_so_far[s_tgt:e_tgt]
n_src, n_tgt = len(c_src), len(c_tgt)
idx_src = np.arange(s_src, e_src, dtype=np.int64)
idx_tgt = np.arange(s_tgt, e_tgt, dtype=np.int64)
# Build tensors (batch_size=1).
p_coords_src = torch.from_numpy(c_src[:, 1:].astype(np.float32)).unsqueeze(0).to(device)
p_coords_tgt = torch.from_numpy(c_tgt[:, 1:].astype(np.float32)).unsqueeze(0).to(device)
# Use window-relative time (f_idx, f_idx+1) normalised by W, not absolute frame index.
window_shape = (W,) + image_shape[1:]
c_src_rel = c_src.copy()
c_src_rel[:, 0] = f_idx
c_tgt_rel = c_tgt.copy()
c_tgt_rel[:, 0] = f_idx + 1
p_pos_src = torch.from_numpy(extract_pos_features(c_src_rel, window_shape)).unsqueeze(0).to(device)
p_pos_tgt = torch.from_numpy(extract_pos_features(c_tgt_rel, window_shape)).unsqueeze(0).to(device)
p_mask_src = torch.ones(1, n_src, dtype=torch.bool, device=device)
p_mask_tgt = torch.ones(1, n_tgt, dtype=torch.bool, device=device)
unet_feat_src = model._index_features(
unet_out[:, f_idx], p_coords_src, p_mask_src,
)
unet_feat_tgt = model._index_features(
unet_out[:, f_idx + 1], p_coords_tgt, p_mask_tgt,
)
edge_logits_pair = model.predict_edges(
unet_feat_src, unet_feat_tgt,
p_coords_src * ds_arr_t, p_coords_tgt * ds_arr_t,
p_pos_src, p_pos_tgt,
p_mask_src, p_mask_tgt,
) # (1, n_src, n_tgt)
raw = edge_logits_pair[0]
if cfg.edge_activation == "softmax":
probs = torch.softmax(raw, dim=0).cpu().numpy()
else:
probs = torch.sigmoid(raw).cpu().numpy()
candidates = sorted(
[
(probs[i, j], i, j)
for i in range(n_src)
for j in range(n_tgt)
if probs[i, j] > cfg.threshold
],
reverse=True,
)
children_count: dict[int, int] = {}
parents_count: dict[int, int] = {}
for prob, i, j in candidates:
n_ch = children_count.get(i, 0)
n_pa = parents_count.get(j, 0)
if cfg.max_children_per_node is not None and n_ch >= cfg.max_children_per_node:
continue
if cfg.max_parents_per_node is not None and n_pa >= cfg.max_parents_per_node:
continue
gi, gj = int(idx_src[i]), int(idx_tgt[j])
dist = float(np.linalg.norm(
coords_so_far[gi, 1:].astype(np.float32)
- coords_so_far[gj, 1:].astype(np.float32)
))
all_edges.append((gi, gj, float(prob), dist))
children_count[i] = n_ch + 1
parents_count[j] = n_pa + 1
del unet_out
coords = np.concatenate(coord_lists) if coord_lists else np.empty((0, 4), dtype=np.int16)
# Scale spatial coords back to original resolution.
coords = coords.astype(np.float32)
coords[:, 1:] *= ds_arr
coords = coords.astype(np.int16)
return coords, all_edges
# =============================================================================
# Prediction loop
# =============================================================================
def predict(
data_dir: Path,
fold: int,
splits_file: Path,
weights_path: Path,
cfg: PredictConfig,
method: str = DEFAULT_METHOD,
debug_video: Path | None = None,
unet_batch_size: int = 4,
video_slice: slice | None = None,
evaluate: bool = False,
) -> None:
"""Run inference on the test split and save predictions as .geff files."""
if debug_video is not None:
test_names = [debug_video.name]
data_dir = debug_video.parent
else:
folds = json.loads(splits_file.read_text())
test_names = folds[fold]["test"]
if video_slice is not None:
test_names = test_names[video_slice]
from dataspec import PREDICTIONS_PATH
output_dir = PREDICTIONS_PATH / USERNAME / method / f"split_{fold}"
if output_dir.exists():
import shutil
for old in output_dir.glob("*.geff"):
if old.is_dir():
shutil.rmtree(old)
else:
old.unlink()
output_dir.mkdir(parents=True, exist_ok=True)
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
model, window_size, downsample = load_model(weights_path, device)
print(
f"Fold {fold}: {len(test_names)} datasets | "
f"weights={weights_path} | device={device} | window_size={window_size} | pool_kernel_um={cfg.pool_kernel_um}",
flush=True,
)
for name in tqdm(test_names, desc="Predicting", disable=not INTERACTIVE):
ds_path = data_dir / name
coords, edges = predict_video(
model, ds_path, device,
cfg=cfg,
window_size=window_size,
unet_batch_size=unet_batch_size,
downsample=downsample,
)
graph = build_graph(coords, edges)
if cfg.use_ilp and graph.num_edges() > 0:
solver = td.solvers.ILPSolver(
edge_weight=cfg.ilp_edge_weight * td.EdgeAttr("edge_prob"),
appearance_weight=cfg.ilp_appearance_weight,
disappearance_weight=cfg.ilp_disappearance_weight,
division_weight=cfg.ilp_division_weight,
)
with suppress_output():
graph = solver.solve(graph)
save_graph(graph, output_dir / f"{name}.geff")
print(f"Saved {len(test_names)} predictions to {output_dir}", flush=True)
if evaluate:
run = {
"username": USERNAME,
"method": method,
"split": f"split_{fold}",
"dir": output_dir,
"geffs": sorted(output_dir.glob("*.geff")),
}
results = evaluate_run(run)
s = summarise(results)
print(
f"Evaluation ({len(results)} videos): "
f"score={s['score']:.4f} "
f"edge_jaccard={s['edge_jaccard']:.4f} "
f"adj_edge_jaccard={s['adj_edge_jaccard']:.4f} (n_adj={s['n_adj']}) "
f"division_jaccard={s['division_jaccard']:.4f} "
f"(TP={s['division_tp']} FP={s['division_fp']} FN={s['division_fn']}) "
f"node_recall={s['node_recall']:.4f} (n={s['n']})",
flush=True,
)
# =============================================================================
# CLI
# =============================================================================
def main() -> None:
parser = argparse.ArgumentParser(
description="Run UNet + transformer edge prediction.",
formatter_class=argparse.RawDescriptionHelpFormatter,
)
parser.add_argument("--method", type=str, default=DEFAULT_METHOD)
parser.add_argument("--data-dir", type=str, default=None,
help="Default: DATASET_PATH")
parser.add_argument("--splits", type=str, default=None,
help="Default: DATASET_PATH/dataset_splits.json")
parser.add_argument("--split", type=str, default="0",
help="Split index (0-4) or 'all'.")
parser.add_argument("--weights", type=str, default=None,
help="Path to weights file. "
"Default: weights/{method}/split_{split}/edge_predictor_best.pth")
parser.add_argument("--debug-video", type=str, default=None,
help="Path to a single dataset. Ignores fold/splits.")
parser.add_argument("--slice", type=str, default=None,
help="Python slice of the test list, e.g. ':1' for first video, "
"'2:5' for videos 2-4.")
parser.add_argument("--unet-batch-size", type=int, default=4,
help="Number of frame pairs per UNet forward pass (default: 4).")
parser.add_argument("--evaluate", action="store_true",
help="Run evaluation against GT after saving predictions.")
parser.add_argument("--det-threshold", type=float, default=0.99,
help="Min sigmoid probability for a detection peak to be kept. "
"Default 0.99: the detector is poorly calibrated because the "
"ground truth is sparse (only some cells annotated), so a high "
"threshold keeps precision up. Sweep it for your model.")
parser.add_argument("--use-ilp", action="store_true",
help="Post-process the predicted graph with the tracksdata ILP "
"solver (global, flow-consistent linking) instead of greedy "
"assignment. Needs pyscipopt; produces cleaner tracks.")
parser.add_argument("--ilp-edge-weight", type=float, default=-1.0,
help="ILP: weight on edge_prob (default -1.0).")
parser.add_argument("--ilp-appearance-weight", type=float, default=0.1,
help="ILP: cost of a track appearing (default 0.1).")
parser.add_argument("--ilp-disappearance-weight", type=float, default=0.1,
help="ILP: cost of a track disappearing (default 0.1).")
parser.add_argument("--ilp-division-weight", type=float, default=1.0,
help="ILP: cost of a division; lower to allow more splits (default 1.0).")
args = parser.parse_args()
from dataspec import DATASET_PATH
data_dir = Path(args.data_dir) if args.data_dir else Path(DATASET_PATH)
splits_file = Path(args.splits) if args.splits else data_dir / "dataset_splits.json"
debug_video = Path(args.debug_video) if args.debug_video else None
video_slice = (
slice(*[int(x) if x else None for x in args.slice.split(":")])
if args.slice else None
)
cfg = PredictConfig(
det_threshold=args.det_threshold,
use_ilp=args.use_ilp,
ilp_edge_weight=args.ilp_edge_weight,
ilp_appearance_weight=args.ilp_appearance_weight,
ilp_disappearance_weight=args.ilp_disappearance_weight,
ilp_division_weight=args.ilp_division_weight,
)
folds = range(5) if args.split == "all" else [int(args.split)]
for fold in folds:
weights_path = (
Path(args.weights) if args.weights
else WEIGHTS_PATH / args.method / f"split_{fold}" / "edge_predictor_best.pth"
)
predict(
data_dir=data_dir,
fold=fold,
splits_file=splits_file,
weights_path=weights_path,
cfg=cfg,
method=args.method,
debug_video=debug_video,
unet_batch_size=args.unet_batch_size,
video_slice=video_slice,
evaluate=args.evaluate,
)
if __name__ == "__main__":
main()
|