File size: 402 Bytes
dadf189
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""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