mirror of
https://gitcode.com/gh_mirrors/eas/EasyFace.git
synced 2026-05-13 19:02:37 +00:00
11 lines
304 B
Python
11 lines
304 B
Python
# Copyright (c) Alibaba, Inc. and its affiliates.
|
|
|
|
from modelscope.utils.import_utils import is_torch_available
|
|
|
|
from .base_head import * # noqa F403
|
|
from .base_model import * # noqa F403
|
|
|
|
if is_torch_available():
|
|
from .base_torch_model import TorchModel
|
|
from .base_torch_head import TorchHead
|