mirror of
https://github.com/deepinsight/insightface.git
synced 2025-12-30 16:12:27 +00:00
19 lines
379 B
Python
19 lines
379 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.2.1'
|
|
|
|
from . import model_zoo
|
|
from . import utils
|
|
from . import app
|