Add real YOLO train acceptance

This commit is contained in:
2026-06-30 23:33:43 +08:00
parent 5055084788
commit fb96c96d8b
10 changed files with 270 additions and 16 deletions

View File

@@ -19,6 +19,7 @@ def main() -> None:
parser.add_argument("--live", action="store_true", help="also check live backend/frontend HTTP endpoints")
parser.add_argument("--acceptance", action="store_true", help="run the lightweight live acceptance smoke")
parser.add_argument("--real", action="store_true", help="run real workspace data acceptance through the live backend")
parser.add_argument("--real-train", action="store_true", help="run a short real workspace YOLO train/predict/heatmap acceptance")
parser.add_argument("--no-deep", action="store_true", help="skip synthetic deep training acceptance")
parser.add_argument("--out", default="var/agent_reports/latest.json")
args = parser.parse_args()
@@ -29,6 +30,7 @@ def main() -> None:
run_live=args.live,
run_acceptance=args.acceptance,
run_real=args.real,
run_real_train=args.real_train,
run_deep=not args.no_deep,
),
}