CW-BASS v2: Saturation-Aware Pseudo-Label Selection for Semi-Supervised Segmentation under Foundation-Model Teachers

Ebenezer Tarubinga

arXiv:2608.12773 · 2026-08-16 공개 · arXiv · PDF

foundation-models calibration dino-v2 self-training ade20k pascal-voc semi-supervised-segmentation pseudo-label-selection

Abstract

Semi-supervised semantic segmentation has long turned on one question, which pseudo-labels to trust, and a generation of selection rules, dynamic thresholds, per-class curricula, soft confidence weights, answered it for the noisy, under-confident ResNet teachers of their day. Self-supervised foundation encoders change the regime: with a DINOv2 teacher, confidence saturates, so the filtering that helped a weak teacher can hurt a strong one. We propose CW-BASS v2, a saturation-aware pseudo-label selection method that reads the teacher's confidence regime rather than committing to one rule. It pairs held-out calibration, an unbiased per-class noise estimate, with a self-adaptive confidence floor that provably bounds retention away from 1, and combines them in a one-pass gate: measure the reliability of the teacher's confident set, pi_kept = Pr[correct | c >= tau], on a held-out slice, and filter strictly when it meets the confidence demanded (pi_kept >= tau), falling back to the adaptive floor otherwise. The boundary is the pre-existing operating threshold, not a value tuned to mIoU, and across six DINOv2 teachers it makes the correct strict-vs-floor call blind. CW-BASS v2 thus recovers the UniMatch V2 operating point on the saturated benchmarks by selecting strict (Pascal VOC 1/8 87.4 against its reported 87.9; Cityscapes within 0.5), and improves on it where the confident set is unreliable (pi_kept ~ 89%, ADE20K), where the floor edges ahead (+1.5 mIoU, single seed). The gate is principled because the failure it avoids is measured, not assumed: on a reliable, saturated teacher the confidence distribution's dynamic range collapses (98% of Pascal pixels >= 0.95), so an adaptive cutoff floods the retention mask and self-training decays into confirmation bias.

한국어 요약

한 줄 요약

CW-BASS v2는 DINOv2와 같은 강력한 foundation 모델의 confidence saturation 현상을 고려한 pseudo-label 선택 방법이다.

핵심 기여도

핵심 아이디어

기존의 pseudo-label 선택 방법은 ResNet과 같은 weak teacher를 기반으로 설계되었으나, DINOv2와 같은 foundation 모델은 confidence가 **saturate**되어 기존 필터링 방식이 오히려 성능 저하를 유발한다. CW-BASS v2는 teacher의 confidence regime을 동적으로 분석하는 **saturation-aware** 접근법을 제안한다. 핵심은 **π_kept = Pr[correct | c ≥ τ]**를 held-out slice에서 측정하고, 이 값이 τ 이상일 경우 strict filtering을, 아닐 경우 adaptive floor를 사용하는 **one-pass gate** 알고리즘이다. 이는 teacher의 신뢰도가 아닌 실패 확률을 **측정**하여 결정하기 때문에, 기존의 mIoU 기반 threshold와는 구별된다.

기술적 접근법

주요 결과

의의 및 한계

CW-BASS v2는 foundation 모델의 confidence saturation 문제를 해결하며, 기존 semi-supervised 방법의 성능을 유지하거나 개선한다. 특히, **π_kept 기반의 one-pass gate**는 teacher의 신뢰도를 측정하여 결정하기 때문에, 기존의 경험적 threshold와는 차별화된다. 그러나, **single seed 기준**에서의 개선이 제한적일 수 있으며, **held-out calibration**이 추가적인 데이터 분할을 요구하므로, 데이터가 제한된 환경에서는 적용이 어려울 수 있다.

실용적 활용