├── .gitattributes ├── .gitignore ├── README.md ├── dataset └── train │ └── property ├── generate_image_pairs.py ├── get_face.py ├── make_rec ├── generate_image_pairs.py ├── im2rec_my.py ├── im2rec_my.sh ├── im2rec_my_lst.sh ├── make_valid_bin.py ├── make_valid_bin.sh └── test_bin.py ├── models ├── gamodel-r50 │ └── model-symbol.json └── model-r50-am-lfw │ └── model-symbol.json ├── test ├── deploy │ ├── Tom_Hanks_54745.png │ ├── benchmark.py │ ├── face_embedding.py │ ├── face_model.py │ ├── ga_merge.py │ ├── helper.py │ ├── model_slim.py │ ├── mtcnn-model │ │ ├── det1-0001.params │ │ ├── det1-symbol.json │ │ ├── det1.caffemodel │ │ ├── det1.prototxt │ │ ├── det2-0001.params │ │ ├── det2-symbol.json │ │ ├── det2.caffemodel │ │ ├── det2.prototxt │ │ ├── det3-0001.params │ │ ├── det3-symbol.json │ │ ├── det3.caffemodel │ │ ├── det3.prototxt │ │ ├── det4-0001.params │ │ ├── det4-symbol.json │ │ ├── det4.caffemodel │ │ └── det4.prototxt │ ├── mtcnn_detector.py │ ├── test.py │ └── test.sh ├── face_image.py ├── face_model.py ├── face_preprocess.py ├── helper.py ├── make_face_gallery.py ├── make_face_gallery.sh ├── mtcnn-model │ ├── det1-0001.params │ ├── det1-symbol.json │ ├── det1.caffemodel │ ├── det1.prototxt │ ├── det2-0001.params │ ├── det2-symbol.json │ ├── det2.caffemodel │ ├── det2.prototxt │ ├── det3-0001.params │ ├── det3-symbol.json │ ├── det3.caffemodel │ ├── det3.prototxt │ ├── det4-0001.params │ ├── det4-symbol.json │ ├── det4.caffemodel │ └── det4.prototxt ├── mtcnn_detector.py ├── test_gallery.py └── test_gallery.sh └── train ├── common ├── face_image.py ├── face_preprocess.py └── noise_sgd.py ├── data_augment.py ├── eval ├── gen_glint.py ├── lfw.py ├── verification.py ├── verification.sh ├── ytf.py └── ytf_badcases.py ├── face_image.py ├── face_preprocess.py ├── image_iter.py ├── symbols ├── fdensenet.py ├── fdensenet.pyc ├── fdpn.py ├── fdpn.pyc ├── finception_resnet_v2.py ├── finception_resnet_v2.pyc ├── fmobilefacenet.py ├── fmobilefacenet.pyc ├── fmobilenet.py ├── fmobilenet.pyc ├── fmobilenetv2.py ├── fmobilenetv2.pyc ├── fnasnet.py ├── fnasnet.pyc ├── fresnet.py ├── fresnet.pyc ├── fxception.py ├── fxception.pyc ├── spherenet.py ├── spherenet.pyc ├── symbol_utils.py └── symbol_utils.pyc ├── train_softmax_my.py └── train_softmax_my.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/README.md -------------------------------------------------------------------------------- /dataset/train/property: -------------------------------------------------------------------------------- 1 | 类别,112,112 -------------------------------------------------------------------------------- /generate_image_pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/generate_image_pairs.py -------------------------------------------------------------------------------- /get_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/get_face.py -------------------------------------------------------------------------------- /make_rec/generate_image_pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/make_rec/generate_image_pairs.py -------------------------------------------------------------------------------- /make_rec/im2rec_my.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/make_rec/im2rec_my.py -------------------------------------------------------------------------------- /make_rec/im2rec_my.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/make_rec/im2rec_my.sh -------------------------------------------------------------------------------- /make_rec/im2rec_my_lst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/make_rec/im2rec_my_lst.sh -------------------------------------------------------------------------------- /make_rec/make_valid_bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/make_rec/make_valid_bin.py -------------------------------------------------------------------------------- /make_rec/make_valid_bin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/make_rec/make_valid_bin.sh -------------------------------------------------------------------------------- /make_rec/test_bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/make_rec/test_bin.py -------------------------------------------------------------------------------- /models/gamodel-r50/model-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/models/gamodel-r50/model-symbol.json -------------------------------------------------------------------------------- /models/model-r50-am-lfw/model-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/models/model-r50-am-lfw/model-symbol.json -------------------------------------------------------------------------------- /test/deploy/Tom_Hanks_54745.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/Tom_Hanks_54745.png -------------------------------------------------------------------------------- /test/deploy/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/benchmark.py -------------------------------------------------------------------------------- /test/deploy/face_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/face_embedding.py -------------------------------------------------------------------------------- /test/deploy/face_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/face_model.py -------------------------------------------------------------------------------- /test/deploy/ga_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/ga_merge.py -------------------------------------------------------------------------------- /test/deploy/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/helper.py -------------------------------------------------------------------------------- /test/deploy/model_slim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/model_slim.py -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det1-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det1-0001.params -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det1-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det1-symbol.json -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det1.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det1.caffemodel -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det1.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det1.prototxt -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det2-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det2-0001.params -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det2-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det2-symbol.json -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det2.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det2.caffemodel -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det2.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det2.prototxt -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det3-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det3-0001.params -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det3-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det3-symbol.json -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det3.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det3.caffemodel -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det3.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det3.prototxt -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det4-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det4-0001.params -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det4-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det4-symbol.json -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det4.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det4.caffemodel -------------------------------------------------------------------------------- /test/deploy/mtcnn-model/det4.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn-model/det4.prototxt -------------------------------------------------------------------------------- /test/deploy/mtcnn_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/mtcnn_detector.py -------------------------------------------------------------------------------- /test/deploy/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/test.py -------------------------------------------------------------------------------- /test/deploy/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/deploy/test.sh -------------------------------------------------------------------------------- /test/face_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/face_image.py -------------------------------------------------------------------------------- /test/face_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/face_model.py -------------------------------------------------------------------------------- /test/face_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/face_preprocess.py -------------------------------------------------------------------------------- /test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/helper.py -------------------------------------------------------------------------------- /test/make_face_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/make_face_gallery.py -------------------------------------------------------------------------------- /test/make_face_gallery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/make_face_gallery.sh -------------------------------------------------------------------------------- /test/mtcnn-model/det1-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det1-0001.params -------------------------------------------------------------------------------- /test/mtcnn-model/det1-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det1-symbol.json -------------------------------------------------------------------------------- /test/mtcnn-model/det1.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det1.caffemodel -------------------------------------------------------------------------------- /test/mtcnn-model/det1.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det1.prototxt -------------------------------------------------------------------------------- /test/mtcnn-model/det2-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det2-0001.params -------------------------------------------------------------------------------- /test/mtcnn-model/det2-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det2-symbol.json -------------------------------------------------------------------------------- /test/mtcnn-model/det2.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det2.caffemodel -------------------------------------------------------------------------------- /test/mtcnn-model/det2.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det2.prototxt -------------------------------------------------------------------------------- /test/mtcnn-model/det3-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det3-0001.params -------------------------------------------------------------------------------- /test/mtcnn-model/det3-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det3-symbol.json -------------------------------------------------------------------------------- /test/mtcnn-model/det3.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det3.caffemodel -------------------------------------------------------------------------------- /test/mtcnn-model/det3.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det3.prototxt -------------------------------------------------------------------------------- /test/mtcnn-model/det4-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det4-0001.params -------------------------------------------------------------------------------- /test/mtcnn-model/det4-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det4-symbol.json -------------------------------------------------------------------------------- /test/mtcnn-model/det4.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det4.caffemodel -------------------------------------------------------------------------------- /test/mtcnn-model/det4.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn-model/det4.prototxt -------------------------------------------------------------------------------- /test/mtcnn_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/mtcnn_detector.py -------------------------------------------------------------------------------- /test/test_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/test_gallery.py -------------------------------------------------------------------------------- /test/test_gallery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/test/test_gallery.sh -------------------------------------------------------------------------------- /train/common/face_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/common/face_image.py -------------------------------------------------------------------------------- /train/common/face_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/common/face_preprocess.py -------------------------------------------------------------------------------- /train/common/noise_sgd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/common/noise_sgd.py -------------------------------------------------------------------------------- /train/data_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/data_augment.py -------------------------------------------------------------------------------- /train/eval/gen_glint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/eval/gen_glint.py -------------------------------------------------------------------------------- /train/eval/lfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/eval/lfw.py -------------------------------------------------------------------------------- /train/eval/verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/eval/verification.py -------------------------------------------------------------------------------- /train/eval/verification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/eval/verification.sh -------------------------------------------------------------------------------- /train/eval/ytf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/eval/ytf.py -------------------------------------------------------------------------------- /train/eval/ytf_badcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/eval/ytf_badcases.py -------------------------------------------------------------------------------- /train/face_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/face_image.py -------------------------------------------------------------------------------- /train/face_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/face_preprocess.py -------------------------------------------------------------------------------- /train/image_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/image_iter.py -------------------------------------------------------------------------------- /train/symbols/fdensenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fdensenet.py -------------------------------------------------------------------------------- /train/symbols/fdensenet.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fdensenet.pyc -------------------------------------------------------------------------------- /train/symbols/fdpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fdpn.py -------------------------------------------------------------------------------- /train/symbols/fdpn.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fdpn.pyc -------------------------------------------------------------------------------- /train/symbols/finception_resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/finception_resnet_v2.py -------------------------------------------------------------------------------- /train/symbols/finception_resnet_v2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/finception_resnet_v2.pyc -------------------------------------------------------------------------------- /train/symbols/fmobilefacenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fmobilefacenet.py -------------------------------------------------------------------------------- /train/symbols/fmobilefacenet.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fmobilefacenet.pyc -------------------------------------------------------------------------------- /train/symbols/fmobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fmobilenet.py -------------------------------------------------------------------------------- /train/symbols/fmobilenet.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fmobilenet.pyc -------------------------------------------------------------------------------- /train/symbols/fmobilenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fmobilenetv2.py -------------------------------------------------------------------------------- /train/symbols/fmobilenetv2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fmobilenetv2.pyc -------------------------------------------------------------------------------- /train/symbols/fnasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fnasnet.py -------------------------------------------------------------------------------- /train/symbols/fnasnet.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fnasnet.pyc -------------------------------------------------------------------------------- /train/symbols/fresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fresnet.py -------------------------------------------------------------------------------- /train/symbols/fresnet.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fresnet.pyc -------------------------------------------------------------------------------- /train/symbols/fxception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fxception.py -------------------------------------------------------------------------------- /train/symbols/fxception.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/fxception.pyc -------------------------------------------------------------------------------- /train/symbols/spherenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/spherenet.py -------------------------------------------------------------------------------- /train/symbols/spherenet.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/spherenet.pyc -------------------------------------------------------------------------------- /train/symbols/symbol_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/symbol_utils.py -------------------------------------------------------------------------------- /train/symbols/symbol_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/symbols/symbol_utils.pyc -------------------------------------------------------------------------------- /train/train_softmax_my.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/train_softmax_my.py -------------------------------------------------------------------------------- /train/train_softmax_my.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentwei0919/insightface_for_face_recognition/HEAD/train/train_softmax_my.sh --------------------------------------------------------------------------------