mirror of
https://github.com/deepinsight/insightface.git
synced 2026-01-26 07:20:19 +00:00
22 lines
424 B
Python
22 lines
424 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.3.5'
|
|
|
|
from . import model_zoo
|
|
from . import utils
|
|
from . import app
|
|
from . import data
|
|
from . import thirdparty
|
|
|