File size: 27,216 Bytes
0243bd1 | 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 | """
validator_local.py β Robust student self-check script.
Place this inside your VRMP1_<roll_number>/ folder and run:
python validator_local.py
This validates with 100% coverage:
β All required files and weights exist
β predictor.py imports without errors
β CLS_CLASS_MAPPING and SEG_CLASS_MAPPING are correctly filled
β All 4 functions are implemented (not NotImplementedError)
β Models load successfully
β Classification output format is correct on a REAL image
β Detection + segmentation output format is correct on a REAL image
β Mask dimensions match the original image
β All value ranges and types are correct
"""
from __future__ import annotations
import importlib.util
import json
import sys
import traceback
from pathlib import Path
from typing import Any, Dict, List
import numpy as np
from PIL import Image, ImageDraw
from sklearn.metrics import f1_score
# DeepFashion2 category_id β name (dataset constant)
DEEPFASHION_CATID_TO_NAME: Dict[int, str] = {
1: "short sleeve top",
2: "long sleeve top",
3: "short sleeve outwear",
4: "long sleeve outwear",
5: "vest",
6: "sling",
7: "shorts",
8: "trousers",
9: "skirt",
10: "short sleeve dress",
11: "long sleeve dress",
12: "vest dress",
13: "sling dress",
}
# Populated at runtime from the student's CLS_CLASS_MAPPING
CANONICAL_CLASSES: set = set()
CANONICAL_CLASSES_LIST: list = []
NUM_CLASSES: int = 0
CANONICAL_NAME_TO_IDX: Dict[str, int] = {}
CATEGORY_ID_TO_CANONICAL: Dict[int, int] = {}
# βββ Counters βββββββββββββββββββββββββββββββββββββββββββββββββββββ
_pass_count = 0
_fail_count = 0
_warn_count = 0
def _pass(msg: str):
global _pass_count
_pass_count += 1
print(f" [PASS] {msg}")
def _fail(msg: str):
global _fail_count
_fail_count += 1
print(f" [FAIL] {msg}")
def _warn(msg: str):
global _warn_count
_warn_count += 1
print(f" [WARN] {msg}")
def _check(condition: bool, pass_msg: str, fail_msg: str) -> bool:
if condition:
_pass(pass_msg)
return True
else:
_fail(fail_msg)
return False
# βββ Locate the real test image ββββββββββββββββββββββββββββββββββ
def _find_test_image(folder: Path) -> Path | None:
"""Walk up from the student folder to find hidden_dataset/images/000001.jpg."""
search = folder.parent # workspace root (one level up from VRMP1_*)
candidate = search / "hidden_dataset" / "images" / "000001.jpg"
if candidate.exists():
return candidate
# Try any image in hidden_dataset
hd = search / "hidden_dataset" / "images"
if hd.is_dir():
imgs = sorted(hd.glob("*.jpg"))
if imgs:
return imgs[0]
return None
def _find_test_annotation(img_path: Path) -> Path | None:
"""Find the annotation JSON matching the test image."""
annos_dir = img_path.parent.parent / "annos"
anno_path = annos_dir / (img_path.stem + ".json")
return anno_path if anno_path.exists() else None
# βββ GT loading & metric helpers βββββββββββββββββββββββββββββββββ
def load_annotation(anno_path: Path) -> List[Dict[str, Any]]:
"""Parse annotation JSON β list of GT items (only canonical classes)."""
with open(anno_path, "r", encoding="utf-8") as f:
data = json.load(f)
items = []
for val in data.values():
if not isinstance(val, dict) or "bounding_box" not in val:
continue
cat_id = val["category_id"]
if cat_id not in CATEGORY_ID_TO_CANONICAL:
continue
items.append({
"box": val["bounding_box"],
"segmentation": val["segmentation"],
"category_id": cat_id,
"category_name": val.get("category_name", ""),
"canonical_idx": CATEGORY_ID_TO_CANONICAL[cat_id],
})
return items
def rasterize_polygons(segmentation: list, width: int, height: int) -> np.ndarray:
"""Render polygon coordinate lists into a binary (H, W) mask."""
canvas = Image.new("L", (width, height), 0)
draw = ImageDraw.Draw(canvas)
for poly in segmentation:
coords = [(poly[i], poly[i + 1]) for i in range(0, len(poly) - 1, 2)]
if len(coords) >= 3:
draw.polygon(coords, fill=1)
return np.array(canvas, dtype=np.uint8)
def build_remap(student_mapping: dict) -> Dict[int, int]:
"""Map student class index β canonical class index by name matching."""
remap: Dict[int, int] = {}
for s_idx, s_name in student_mapping.items():
name = str(s_name).strip().lower()
if name in CANONICAL_NAME_TO_IDX:
remap[int(s_idx)] = CANONICAL_NAME_TO_IDX[name]
return remap
# βββ Class mapping validation ββββββββββββββββββββββββββββββββββββ
def validate_class_mapping(mapping, label: str, allow_background: bool) -> bool:
if not _check(isinstance(mapping, dict),
f"{label} is a dict.",
f"{label} must be a dict, got {type(mapping).__name__}."):
return False
if not _check(len(mapping) > 0,
f"{label} is non-empty ({len(mapping)} entries).",
f"{label} is empty β you must fill in your class mapping!"):
return False
# Check keys are ints
all_int_keys = all(isinstance(k, int) for k in mapping.keys())
_check(all_int_keys,
f"{label} keys are all integers.",
f"{label} keys must be integers. Got: {[type(k).__name__ for k in mapping.keys()]}")
# Check values are strings
all_str_vals = all(isinstance(v, str) for v in mapping.values())
_check(all_str_vals,
f"{label} values are all strings.",
f"{label} values must be strings.")
# Check canonical class coverage
clothing_names = set()
for k, v in mapping.items():
name = str(v).strip().lower()
if name == "background":
if not allow_background:
_warn(f"{label}: index {k} is 'background' β not expected in CLS_CLASS_MAPPING.")
continue
clothing_names.add(name)
missing = CANONICAL_CLASSES - clothing_names
extra = clothing_names - CANONICAL_CLASSES
if extra:
_warn(f"{label}: unrecognized classes (will be ignored by evaluator): {extra}")
if not _check(len(missing) == 0,
f"{label} covers all 5 canonical classes.",
f"{label} missing canonical classes: {missing}"):
return False
if not allow_background:
expected = 5
_check(len(mapping) == expected,
f"{label} has exactly {expected} entries (no background).",
f"{label} should have {expected} entries for classification, got {len(mapping)}.")
return True
# βββ Classification output validation ββββββββββββββββββββββββββββ
def validate_cls_output(outputs: list, num_images: int, num_classes: int) -> bool:
ok = True
if not _check(isinstance(outputs, list),
"Classification returns a list.",
f"Classification must return a list, got {type(outputs).__name__}."):
return False
if not _check(len(outputs) == num_images,
f"Classification returned {num_images} result(s) for {num_images} image(s).",
f"Expected {num_images} results, got {len(outputs)}."):
return False
for idx, out in enumerate(outputs):
prefix = f"cls_output[{idx}]"
if not _check(isinstance(out, dict),
f"{prefix} is a dict.",
f"{prefix} must be a dict, got {type(out).__name__}."):
ok = False
continue
if not _check("labels" in out,
f"{prefix} has 'labels' key.",
f"{prefix} missing 'labels' key. Keys found: {list(out.keys())}"):
ok = False
continue
labels = out["labels"]
if not _check(isinstance(labels, list),
f"{prefix}['labels'] is a list.",
f"{prefix}['labels'] must be a list, got {type(labels).__name__}."):
ok = False
continue
if not _check(len(labels) == num_classes,
f"{prefix}['labels'] has length {num_classes}.",
f"{prefix}['labels'] must have length {num_classes}, got {len(labels)}."):
ok = False
continue
all_valid = True
for i, l in enumerate(labels):
if not isinstance(l, int):
_fail(f"{prefix}['labels'][{i}] must be int, got {type(l).__name__}.")
ok = False
all_valid = False
elif l not in (0, 1):
_fail(f"{prefix}['labels'][{i}] must be 0 or 1, got {l}.")
ok = False
all_valid = False
if all_valid:
_pass(f"{prefix}: all label values are valid (binary 0/1). Output: {labels}")
return ok
# βββ Detection output validation ββββββββββββββββββββββββββββββββ
def validate_det_output(outputs: list, num_images: int, img_sizes: list, max_label: int) -> bool:
ok = True
if not _check(isinstance(outputs, list),
"Detection returns a list.",
f"Detection must return a list, got {type(outputs).__name__}."):
return False
if not _check(len(outputs) == num_images,
f"Detection returned {num_images} result(s) for {num_images} image(s).",
f"Expected {num_images} results, got {len(outputs)}."):
return False
for idx, out in enumerate(outputs):
w, h = img_sizes[idx]
prefix = f"det_output[{idx}]"
if not _check(isinstance(out, dict),
f"{prefix} is a dict.",
f"{prefix} must be a dict."):
ok = False
continue
required_keys = {"boxes", "scores", "labels", "masks"}
present_keys = set(out.keys())
missing_keys = required_keys - present_keys
if not _check(len(missing_keys) == 0,
f"{prefix} has all required keys (boxes, scores, labels, masks).",
f"{prefix} missing keys: {missing_keys}"):
ok = False
continue
n = len(out["boxes"])
lengths_ok = (len(out["scores"]) == n and len(out["labels"]) == n
and len(out["masks"]) == n)
if not _check(lengths_ok,
f"{prefix}: all arrays have same length ({n} detections).",
f"{prefix}: length mismatch β boxes={n}, scores={len(out['scores'])}, "
f"labels={len(out['labels'])}, masks={len(out['masks'])}."):
ok = False
continue
if n == 0:
_warn(f"{prefix}: zero detections β model may be undertrained or image has no objects.")
continue
# Boxes
boxes_valid = True
for i, box in enumerate(out["boxes"]):
if not (isinstance(box, (list, tuple)) and len(box) == 4):
_fail(f"{prefix}/boxes[{i}] must be [x1,y1,x2,y2].")
ok = False
boxes_valid = False
else:
x1, y1, x2, y2 = [float(c) for c in box]
if not (x1 < x2 and y1 < y2):
_fail(f"{prefix}/boxes[{i}]: need x1<x2 and y1<y2, got [{x1:.1f},{y1:.1f},{x2:.1f},{y2:.1f}].")
ok = False
boxes_valid = False
if boxes_valid:
_pass(f"{prefix}: all {n} boxes have valid [x1,y1,x2,y2] format.")
# Scores
scores_valid = True
for i, s in enumerate(out["scores"]):
if not isinstance(s, (int, float)):
_fail(f"{prefix}/scores[{i}] must be numeric, got {type(s).__name__}.")
ok = False
scores_valid = False
elif not (0.0 <= float(s) <= 1.0):
_fail(f"{prefix}/scores[{i}] must be in [0,1], got {s}.")
ok = False
scores_valid = False
if scores_valid:
_pass(f"{prefix}: all {n} scores in [0, 1].")
# Labels
labels_valid = True
for i, l in enumerate(out["labels"]):
if not isinstance(l, int):
_fail(f"{prefix}/labels[{i}] must be int, got {type(l).__name__}.")
ok = False
labels_valid = False
elif not (0 <= l <= max_label):
_fail(f"{prefix}/labels[{i}] must be in [0, {max_label}], got {l}.")
ok = False
labels_valid = False
if labels_valid:
_pass(f"{prefix}: all {n} labels are valid integers in [0, {max_label}].")
# Masks
masks_valid = True
for i, mask in enumerate(out["masks"]):
arr = np.asarray(mask)
if arr.ndim != 2:
_fail(f"{prefix}/masks[{i}] must be 2D, got {arr.ndim}D shape={arr.shape}.")
ok = False
masks_valid = False
continue
if arr.shape != (h, w):
_fail(f"{prefix}/masks[{i}] shape {arr.shape} != image size ({h}, {w}). "
"You must resize masks back to the original image resolution!")
ok = False
masks_valid = False
uniq = set(np.unique(arr).tolist())
if not uniq.issubset({0, 1}):
_fail(f"{prefix}/masks[{i}] must be binary (0/1), got values {uniq}.")
ok = False
masks_valid = False
if masks_valid and n > 0:
_pass(f"{prefix}: all {n} masks are binary and match image size ({h}x{w}).")
return ok
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Main
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def main():
folder = Path(__file__).resolve().parent
print("=" * 60)
print(f" VALIDATOR β {folder.name}")
print("=" * 60)
# βββ 1. Required files ββββββββββββββββββββββββββββββββββββββββ
print("\n[1/6] Checking required files ...")
abort = False
if not _check((folder / "predictor.py").exists(),
"predictor.py found.",
"predictor.py NOT found!"):
abort = True
has_cls_weights = (folder / "model_files" / "cls.pt").exists() or \
(folder / "model_files" / "cls.pth").exists()
has_seg_weights = (folder / "model_files" / "seg.pt").exists() or \
(folder / "model_files" / "seg.pth").exists()
if has_cls_weights:
_pass("model_files/cls.pt(h) found.")
else:
_warn("model_files/cls.pt(h) not found β OK if classification reuses the seg model.")
if not _check(has_seg_weights,
"model_files/seg.pt(h) found.",
"model_files/seg.pt(h) NOT found!"):
abort = True
if abort:
print("\n[ABORT] Fix missing files before continuing.")
sys.exit(1)
# βββ 2. Find test image + annotation ββββββββββββββββββββββββββ
print("\n[2/6] Locating test image ...")
test_img_path = _find_test_image(folder)
if test_img_path is None:
_fail("Cannot find hidden_dataset/images/000001.jpg β "
"make sure hidden_dataset/ is in the parent directory.")
sys.exit(1)
else:
test_img = Image.open(test_img_path).convert("RGB")
img_w, img_h = test_img.size
_pass(f"Using real test image: {test_img_path.name} ({img_w}x{img_h})")
anno_path = _find_test_annotation(test_img_path)
# βββ 3. Import predictor βββββββββββββββββββββββββββββββββββββ
print("\n[3/6] Importing predictor.py ...")
try:
spec = importlib.util.spec_from_file_location("predictor", folder / "predictor.py")
predictor = importlib.util.module_from_spec(spec)
spec.loader.exec_module(predictor)
_pass("predictor.py imported successfully.")
except Exception as e:
_fail(f"predictor.py import error: {e}")
traceback.print_exc()
sys.exit(1)
# βββ 4. Validate class mappings + function existence βββββββββ
print("\n[4/6] Validating class mappings and function signatures ...")
has_cls_map = hasattr(predictor, "CLS_CLASS_MAPPING")
has_seg_map = hasattr(predictor, "SEG_CLASS_MAPPING")
if not _check(has_cls_map,
"CLS_CLASS_MAPPING attribute exists.",
"CLS_CLASS_MAPPING not found in predictor.py!"):
sys.exit(1)
if not _check(has_seg_map,
"SEG_CLASS_MAPPING attribute exists.",
"SEG_CLASS_MAPPING not found in predictor.py!"):
sys.exit(1)
# Build canonical class structures from CLS_CLASS_MAPPING
global CANONICAL_CLASSES, CANONICAL_CLASSES_LIST, NUM_CLASSES
global CANONICAL_NAME_TO_IDX, CATEGORY_ID_TO_CANONICAL
cls_names = []
for idx in sorted(predictor.CLS_CLASS_MAPPING.keys()):
name = str(predictor.CLS_CLASS_MAPPING[idx]).strip().lower()
if name != "background":
cls_names.append(name)
CANONICAL_CLASSES_LIST = cls_names
CANONICAL_CLASSES = set(cls_names)
NUM_CLASSES = len(cls_names)
CANONICAL_NAME_TO_IDX = {name: i for i, name in enumerate(cls_names)}
CATEGORY_ID_TO_CANONICAL = {}
for cat_id, cat_name in DEEPFASHION_CATID_TO_NAME.items():
if cat_name in CANONICAL_NAME_TO_IDX:
CATEGORY_ID_TO_CANONICAL[cat_id] = CANONICAL_NAME_TO_IDX[cat_name]
_pass(f"Derived {NUM_CLASSES} canonical classes from CLS_CLASS_MAPPING: {cls_names}")
validate_class_mapping(predictor.CLS_CLASS_MAPPING, "CLS_CLASS_MAPPING", allow_background=False)
validate_class_mapping(predictor.SEG_CLASS_MAPPING, "SEG_CLASS_MAPPING", allow_background=True)
# Load GT annotation now that canonical mapping is ready
gt_items: List[Dict[str, Any]] = []
if anno_path is not None:
gt_items = load_annotation(anno_path)
_pass(f"Loaded GT annotation: {anno_path.name} ({len(gt_items)} objects)")
else:
_warn("No annotation found β metrics (F1, mIoU) will be skipped.")
max_label = max(int(k) for k in predictor.SEG_CLASS_MAPPING.keys()) if predictor.SEG_CLASS_MAPPING else 5
num_cls_classes = len(predictor.CLS_CLASS_MAPPING)
# Check all 4 required functions exist and are callable
required_fns = [
"load_classification_model",
"predict_classification",
"load_detection_model",
"predict_detection_segmentation",
]
for fn_name in required_fns:
if not _check(hasattr(predictor, fn_name) and callable(getattr(predictor, fn_name)),
f"{fn_name}() exists and is callable.",
f"{fn_name}() NOT found or not callable!"):
sys.exit(1)
# βββ 5. Test classification pipeline βββββββββββββββββββββββββ
print(f"\n[5/6] Testing classification on real image ({img_w}x{img_h}) ...")
device = "cpu"
# 5a. load_classification_model β must NOT raise NotImplementedError
cls_model = None
try:
cls_model = predictor.load_classification_model(str(folder), device)
_pass("load_classification_model() returned successfully.")
except NotImplementedError:
_fail("load_classification_model() raises NotImplementedError β "
"you MUST implement this function!")
except Exception as e:
_fail(f"load_classification_model() raised: {e}")
traceback.print_exc()
# 5b. predict_classification β must NOT raise NotImplementedError
cls_out = None
if cls_model is not None:
try:
cls_out = predictor.predict_classification(cls_model, [test_img])
_pass("predict_classification() returned successfully.")
validate_cls_output(cls_out, num_images=1, num_classes=num_cls_classes)
except NotImplementedError:
_fail("predict_classification() raises NotImplementedError β "
"you MUST implement this function!")
cls_out = None
except Exception as e:
_fail(f"predict_classification() raised: {e}")
traceback.print_exc()
cls_out = None
# 5c. Compute macro F1 if GT annotation is available
if cls_out is not None and anno_path is not None:
try:
remap_cls = build_remap(predictor.CLS_CLASS_MAPPING)
gt_vec = np.zeros(NUM_CLASSES, dtype=np.int32)
for item in gt_items:
gt_vec[item["canonical_idx"]] = 1
pred_vec = np.zeros(NUM_CLASSES, dtype=np.int32)
student_labels = cls_out[0]["labels"]
for s_idx, val in enumerate(student_labels):
canonical = remap_cls.get(s_idx)
if canonical is not None:
pred_vec[canonical] = val
macro_f1 = float(f1_score(
gt_vec.reshape(1, -1), pred_vec.reshape(1, -1),
average="macro", zero_division=0.0,
))
print(f"\n ** Classification Macro F1: {macro_f1:.4f} **")
except Exception as e:
_warn(f"Could not compute macro F1: {e}")
# βββ 6. Test detection + segmentation pipeline βββββββββββββββ
print(f"\n[6/6] Testing detection + segmentation on real image ({img_w}x{img_h}) ...")
# 6a. load_detection_model β must NOT raise NotImplementedError
det_model = None
try:
det_model = predictor.load_detection_model(str(folder), device)
_pass("load_detection_model() returned successfully.")
except NotImplementedError:
_fail("load_detection_model() raises NotImplementedError β "
"you MUST implement this function!")
except Exception as e:
_fail(f"load_detection_model() raised: {e}")
traceback.print_exc()
# 6b. predict_detection_segmentation β must NOT raise NotImplementedError
det_out = None
if det_model is not None:
try:
det_out = predictor.predict_detection_segmentation(det_model, [test_img])
_pass("predict_detection_segmentation() returned successfully.")
validate_det_output(
det_out,
num_images=1,
img_sizes=[(img_w, img_h)],
max_label=max_label,
)
except NotImplementedError:
_fail("predict_detection_segmentation() raises NotImplementedError β "
"you MUST implement this function!")
det_out = None
except Exception as e:
_fail(f"predict_detection_segmentation() raised: {e}")
traceback.print_exc()
det_out = None
# 6c. Compute mIoU if GT annotation is available
if det_out is not None and anno_path is not None and len(det_out) > 0:
try:
remap_seg = build_remap(predictor.SEG_CLASS_MAPPING)
pred = det_out[0]
IGNORE_LABEL = 255
# Build predicted semantic map (highest-confidence per pixel)
pred_sem = np.full((img_h, img_w), IGNORE_LABEL, dtype=np.uint8)
pred_conf = np.full((img_h, img_w), -1.0, dtype=np.float32)
for mask, score, label in zip(
pred["masks"], pred["scores"], pred["labels"]
):
canonical = remap_seg.get(label)
if canonical is None:
continue
binary = np.asarray(mask, dtype=np.uint8)
if binary.shape != (img_h, img_w):
mask_pil = Image.fromarray(binary * 255)
mask_pil = mask_pil.resize((img_w, img_h), Image.NEAREST)
binary = (np.array(mask_pil) > 127).astype(np.uint8)
higher = (binary == 1) & (score > pred_conf)
pred_sem[higher] = canonical
pred_conf[higher] = score
# Build GT semantic map from polygon annotations
gt_sem = np.full((img_h, img_w), IGNORE_LABEL, dtype=np.uint8)
for item in gt_items:
gt_mask = rasterize_polygons(item["segmentation"], img_w, img_h)
gt_sem[gt_mask == 1] = item["canonical_idx"]
# Per-class IoU
intersection = np.zeros(NUM_CLASSES, dtype=np.float64)
union = np.zeros(NUM_CLASSES, dtype=np.float64)
for c in range(NUM_CLASSES):
pred_c = (pred_sem == c)
gt_c = (gt_sem == c)
intersection[c] = np.logical_and(pred_c, gt_c).sum()
union[c] = np.logical_or(pred_c, gt_c).sum()
per_class_iou = []
for c in range(NUM_CLASSES):
if union[c] > 0:
per_class_iou.append(float(intersection[c] / union[c]))
else:
per_class_iou.append(float("nan"))
valid_ious = [v for v in per_class_iou if not np.isnan(v)]
miou = float(np.mean(valid_ious)) if valid_ious else 0.0
print(f"\n ** Segmentation mIoU: {miou:.4f} **")
for c in range(NUM_CLASSES):
iou_str = f"{per_class_iou[c]:.4f}" if not np.isnan(per_class_iou[c]) else "N/A"
print(f" {CANONICAL_CLASSES_LIST[c]:20s}: {iou_str}")
except Exception as e:
_warn(f"Could not compute mIoU: {e}")
# βββ Summary βββββββββββββββββββββββββββββββββββββββββββββββββ
print("\n" + "=" * 60)
print(f" RESULTS: {_pass_count} passed, {_fail_count} failed, "
f"{_warn_count} warnings")
print("=" * 60)
if _fail_count > 0:
print("\n VALIDATION FAILED β fix the [FAIL] items above before submitting.\n")
sys.exit(1)
elif _warn_count > 0:
print("\n VALIDATION PASSED WITH WARNINGS β review [WARN] items above.\n")
else:
print("\n ALL CHECKS PASSED β your submission looks good!\n")
if __name__ == "__main__":
main()
|