UFR-Fing / src /models /mdgt /__init__.py
anbinh39's picture
Add files using upload-large-folder tool
dadf189 verified
Raw
History Blame Contribute Delete
402 Bytes
"""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