detection-segmentation-studio / tools /generate_detection_report.py
Alicesong's picture
Deploy Detection + Segmentation Studio
1efe34a verified
Raw
History Blame Contribute Delete
489 Bytes
"""CLI entry point for generating the detection and segmentation report."""
from __future__ import annotations
import sys
from pathlib import Path
ROOT = Path(__file__).resolve().parent.parent
if str(ROOT) not in sys.path:
sys.path.insert(0, str(ROOT))
from vibe_ml_lab.detection_segmentation_lab import generate_report_bundle
def main() -> None:
report_path, _ = generate_report_bundle()
print(f"Generated report: {report_path}")
if __name__ == "__main__":
main()