Add deep acceptance artifacts for model families

This commit is contained in:
2026-06-30 14:46:39 +08:00
parent 0c239483a9
commit b913877929
3 changed files with 36 additions and 18 deletions

View File

@@ -34,6 +34,9 @@ def result_roots() -> list[Path]:
roots.extend(path for path in upload_root.glob("*/results") if path.is_dir())
acceptance_root = project / "var" / "acceptance"
if acceptance_root.exists():
roots.extend(path for path in acceptance_root.glob("deep_*/segmodel_tiny") if path.is_dir())
roots.extend(path for path in acceptance_root.glob("deep_*/mmseg_tiny") if path.is_dir())
roots.extend(path for path in acceptance_root.glob("deep_*/yolo_tiny/runs/tiny") if path.is_dir())
roots.extend(path for path in acceptance_root.glob("deep_*/yolo_tiny/runs/tiny/HeartMap_Visual") if path.is_dir())
return roots