mirror of
https://gitcode.com/gh_mirrors/eas/EasyFace.git
synced 2026-05-14 11:18:03 +00:00
21 lines
500 B
Python
21 lines
500 B
Python
# Copyright (c) Alibaba, Inc. and its affiliates.
|
|
from typing import TYPE_CHECKING
|
|
|
|
from modelscope.utils.import_utils import LazyImportModule
|
|
|
|
if TYPE_CHECKING:
|
|
from .face_2d_keypoints_align import Face2DKeypoints
|
|
|
|
else:
|
|
_import_structure = {'face_2d_keypoints_align': ['Face2DKeypoints']}
|
|
|
|
import sys
|
|
|
|
sys.modules[__name__] = LazyImportModule(
|
|
__name__,
|
|
globals()['__file__'],
|
|
_import_structure,
|
|
module_spec=__spec__,
|
|
extra_objects={},
|
|
)
|