mirror of
https://github.com/deepinsight/insightface.git
synced 2025-12-30 08:02:27 +00:00
add code reference, from gluoncv
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
"""Model store which provides pretrained models."""
|
||||
|
||||
"""
|
||||
This code file mainly comes from https://github.com/dmlc/gluon-cv/blob/master/gluoncv/model_zoo/model_store.py
|
||||
"""
|
||||
from __future__ import print_function
|
||||
|
||||
__all__ = ['get_model_file']
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# pylint: disable=wildcard-import, unused-wildcard-import
|
||||
"""Model store which handles pretrained models from both
|
||||
mxnet.gluon.model_zoo.vision and gluoncv.models
|
||||
"""
|
||||
This code file mainly comes from https://github.com/dmlc/gluon-cv/blob/master/gluoncv/model_zoo/model_zoo.py
|
||||
"""
|
||||
from .face_recognition import *
|
||||
from .face_detection import *
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
"""Download files with progress bar."""
|
||||
"""
|
||||
This code file mainly comes from https://github.com/dmlc/gluon-cv/blob/master/gluoncv/utils/download.py
|
||||
"""
|
||||
import os
|
||||
import hashlib
|
||||
import requests
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
"""Filesystem utility functions."""
|
||||
"""
|
||||
This code file mainly comes from https://github.com/dmlc/gluon-cv/blob/master/gluoncv/utils/filesystem.py
|
||||
"""
|
||||
import os
|
||||
import errno
|
||||
|
||||
|
||||
Reference in New Issue
Block a user