feat(lab): publish M4.8S fixed-class detector replay

This commit is contained in:
DCCONSTRUCTIONS
2026-08-25 16:44:35 +03:00
parent 05590867b7
commit 3679e43fe3
13 changed files with 1724 additions and 4 deletions
@@ -0,0 +1,28 @@
#!/usr/bin/env python3
"""Publish the sealed M4.8S detector evidence as an immutable LAB result."""
from __future__ import annotations
from pathlib import Path
from k1link.laboratory.m48s_fixed_class_detector_lab import (
build_m48s_fixed_class_detector_lab,
)
def main() -> int:
repository = Path(__file__).resolve().parents[2]
result = build_m48s_fixed_class_detector_lab(
repository_root=repository,
output_root=(
repository
/ ".runtime/compute-experiments/m48s-semantic-shadow/"
"fixed-class-detector-lab-results"
),
)
print(result.result_id)
return 0
if __name__ == "__main__":
raise SystemExit(main())