mirror of
https://github.com/KwaiVGI/LivePortrait.git
synced 2025-03-15 05:52:58 +00:00
21 lines
399 B
Python
21 lines
399 B
Python
|
# coding: utf-8
|
||
|
# pylint: disable=wrong-import-position
|
||
|
"""InsightFace: A Face Analysis Toolkit."""
|
||
|
from __future__ import absolute_import
|
||
|
|
||
|
try:
|
||
|
#import mxnet as mx
|
||
|
import onnxruntime
|
||
|
except ImportError:
|
||
|
raise ImportError(
|
||
|
"Unable to import dependency onnxruntime. "
|
||
|
)
|
||
|
|
||
|
__version__ = '0.7.3'
|
||
|
|
||
|
from . import model_zoo
|
||
|
from . import utils
|
||
|
from . import app
|
||
|
from . import data
|
||
|
|