| """Model package exports. | |
| The current image-only training pipeline relies on ``MDGTv2``. Older | |
| minutiae-based exports are kept optional because some workspaces no longer | |
| ship the legacy modules. | |
| """ | |
| from .pipeline import MDGTv2 | |
| try: # Optional legacy export. | |
| from .mdgt import MDGT # type: ignore | |
| except ModuleNotFoundError: # pragma: no cover - legacy module may be absent. | |
| MDGT = None | |