File size: 9,355 Bytes
1e05592 | 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 | #!/usr/bin/env python3
"""
Generate per-window action labels for Stage 1 supervised policy warm-start.
Reuses SFTDataset for window generation β no duplication of frame-sampling or
window-stride logic. Only the label assignment is new.
Label rules (conservative: only high-confidence assignments enter Stage 1 CE)
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ego_positive, TTA β [1.5, 5.0) β ALERT (2), ce_weight = 1.0
ego_positive, TTA β [5.5, 8.0] β OBSERVE (1), ce_weight = 1.0
ego_positive, TTA > 8.0 β SILENT (0), ce_weight = 0.8
(includes censored windows with tta_raw > MAX_TTA = 10.0)
ego_positive, TTA β [5.0, 5.5) β EXCLUDE (boundary zone)
ego_positive, TTA < 1.5 β EXCLUDE (too late, semantically complex)
non_ego β OBSERVE (1), ce_weight = 0.4
(gentle push only; semantics ambiguous; treated separately in metrics)
safe_neg β SILENT (0), ce_weight = 1.0
safe_neg with neg_tag="pre_risky" β SILENT (0), ce_weight = 0.8
(pre_risky: early window from a crash video, before risk onset)
Usage:
cd PROJECT_ROOT
python -m training.Policy.make_policy_labels \
--manifest_dir data/sft_manifests \
--out_dir data/policy_labels
"""
from __future__ import annotations
import argparse
import json
import logging
import sys
from pathlib import Path
from typing import Dict, List, Optional, Tuple
sys.path.insert(0, str(Path(__file__).resolve().parent.parent.parent))
from training.SFT.dataset import SFTDataset, TTASample
logging.basicConfig(level=logging.INFO, format="%(asctime)s %(levelname)s %(message)s")
logger = logging.getLogger("Policy.make_labels")
# ββ action space ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
SILENT = 0
OBSERVE = 1
ALERT = 2
ACTION_NAMES = {SILENT: "SILENT", OBSERVE: "OBSERVE", ALERT: "ALERT"}
# ββ TTA boundaries (seconds) ββββββββββββββββββββββββββββββββββββββββββββββββββ
ALERT_TTA_MIN = 1.5 # below this: too late, exclude
ALERT_TTA_MAX = 5.0 # [ALERT_TTA_MIN, ALERT_TTA_MAX) β ALERT
BOUNDARY_LO = 5.0 # [BOUNDARY_LO, BOUNDARY_HI) β exclude
BOUNDARY_HI = 5.5
OBSERVE_TTA_MAX = 8.0 # [BOUNDARY_HI, OBSERVE_TTA_MAX] β OBSERVE
# > OBSERVE_TTA_MAX β SILENT
# ββ label derivation ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _derive_label(s: TTASample) -> Optional[Tuple[int, float]]:
"""
Returns (action_label, ce_weight) or None to exclude from Stage 1.
Uses tta_raw (not the capped tta_label) for ego_positive decisions so that
censored windows (tta_raw > 10.0) fall into the TTA > 8.0 β SILENT bucket
rather than being ambiguous.
"""
if s.is_ego_positive:
tta = s.tta_raw
if tta < ALERT_TTA_MIN:
return None # too late
if BOUNDARY_LO <= tta < BOUNDARY_HI:
return None # boundary zone
if tta < ALERT_TTA_MAX:
return (ALERT, 1.0) # [1.5, 5.0)
if tta <= OBSERVE_TTA_MAX:
return (OBSERVE, 1.0) # [5.5, 8.0]
return (SILENT, 0.8) # > 8.0 (incl. censored > 10.0)
if s.is_non_ego:
return (OBSERVE, 0.4) # gentle push, not dogmatic
# safe_neg (includes pre_risky windows from crash videos)
weight = 0.8 if s.metadata.get("neg_tag") == "pre_risky" else 1.0
return (SILENT, weight)
# ββ per-split processing ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def process_split(
manifests: List[Path],
split_name: str,
sft_split: str, # "train" or "val" for SFTDataset (affects frame sampling)
debug: bool = False,
debug_samples: int = 200,
) -> dict:
"""Build policy label manifest for one split from SFT video manifests."""
logger.info(f"\n{'='*60}")
logger.info(f"Processing split: {split_name}")
# Instantiate SFTDataset with a huge neg_pos_ratio so no samples are capped.
# We only use dataset.samples (TTASample objects) β no frame I/O here.
ds = SFTDataset(
manifests = manifests,
split = sft_split,
seed = 42,
debug = False,
neg_pos_ratio = 10_000, # effectively disable sample capping
multi_window = True,
)
samples_out = []
excluded = {"tta_too_late": 0, "tta_boundary": 0}
for s in ds.samples:
result = _derive_label(s)
if result is None:
if s.is_ego_positive:
if s.tta_raw < ALERT_TTA_MIN:
excluded["tta_too_late"] += 1
else:
excluded["tta_boundary"] += 1
continue
action_label, ce_weight = result
samples_out.append({
"video_id": s.video_id,
"source": s.source,
"category": s.category,
"source_dir": s.source_dir,
"frame_indices": s.frame_indices,
# tta_raw: store -1.0 for non_ego / safe_neg (inf is not JSON-serialisable)
"tta_raw": float(s.tta_raw) if s.tta_raw != float("inf") else -1.0,
"action_label": action_label,
"ce_weight": ce_weight,
"metadata": s.metadata,
})
if debug:
import random
rng = random.Random(42)
rng.shuffle(samples_out)
samples_out = samples_out[:debug_samples]
# ββ statistics ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
label_counts: Dict[str, int] = {v: 0 for v in ACTION_NAMES.values()}
cat_action: Dict[str, Dict[str, int]] = {}
for s in samples_out:
lname = ACTION_NAMES[s["action_label"]]
label_counts[lname] += 1
cat = s["category"]
cat_action.setdefault(cat, {})
cat_action[cat][lname] = cat_action[cat].get(lname, 0) + 1
logger.info(f" Kept: {len(samples_out)} | Excluded: {excluded}")
logger.info(f" Label counts: {label_counts}")
for cat, dist in sorted(cat_action.items()):
logger.info(f" {cat}: {dict(sorted(dist.items()))}")
return {
"name": split_name,
"split": sft_split,
"total_samples": len(samples_out),
"label_counts": label_counts,
"excluded": excluded,
"samples": samples_out,
}
# ββ main ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def main():
parser = argparse.ArgumentParser("make_policy_labels")
parser.add_argument("--manifest_dir", default="data/sft_manifests")
parser.add_argument("--out_dir", default="data/policy_labels")
parser.add_argument("--debug", action="store_true")
parser.add_argument("--debug_samples", type=int, default=200)
args = parser.parse_args()
mdir = Path(args.manifest_dir)
odir = Path(args.out_dir)
odir.mkdir(parents=True, exist_ok=True)
splits = {
"train": {
"manifests": [
mdir / "nexar_train.json",
mdir / "dada_pos_train.json",
mdir / "dada_noneego_train.json",
mdir / "dada_neg_train.json",
],
"sft_split": "train",
},
"val": {
"manifests": [
mdir / "nexar_val.json",
mdir / "dada_pos_val.json",
mdir / "dada_noneego_val.json",
],
"sft_split": "val",
},
}
for split_name, cfg in splits.items():
existing = [p for p in cfg["manifests"] if p.exists()]
if not existing:
logger.warning(f" No manifests found for {split_name}, skipping.")
continue
data = process_split(
manifests = existing,
split_name = split_name,
sft_split = cfg["sft_split"],
debug = args.debug,
debug_samples = args.debug_samples,
)
out = odir / f"{split_name}.json"
with open(out, "w") as f:
json.dump(data, f)
logger.info(f" Saved {data['total_samples']} samples β {out}")
logger.info("\nβ
Policy label manifests generated.")
if __name__ == "__main__":
main()
|