├── README.md ├── backbones ├── ResNet_v1.py ├── ResNet_v2.py ├── modifiedResNet_v2.py └── utils.py ├── configs ├── config_finetune.yaml ├── config_ms1m_100.yaml ├── config_ms1m_200.yaml ├── config_ms1m_res101.yaml └── config_ms1m_res50.yaml ├── data ├── classificationDataTool.py ├── generateTFRecord.py ├── mxrec2folders.py ├── tmp.py └── tmp1.py ├── eval └── utils.py ├── evaluate.py ├── finetune_softmax.py ├── get_embd.py ├── losses └── logit_loss.py ├── model.py ├── train_softmax.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /backbones/ResNet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/backbones/ResNet_v1.py -------------------------------------------------------------------------------- /backbones/ResNet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/backbones/ResNet_v2.py -------------------------------------------------------------------------------- /backbones/modifiedResNet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/backbones/modifiedResNet_v2.py -------------------------------------------------------------------------------- /backbones/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/backbones/utils.py -------------------------------------------------------------------------------- /configs/config_finetune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/configs/config_finetune.yaml -------------------------------------------------------------------------------- /configs/config_ms1m_100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/configs/config_ms1m_100.yaml -------------------------------------------------------------------------------- /configs/config_ms1m_200.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/configs/config_ms1m_200.yaml -------------------------------------------------------------------------------- /configs/config_ms1m_res101.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/configs/config_ms1m_res101.yaml -------------------------------------------------------------------------------- /configs/config_ms1m_res50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/configs/config_ms1m_res50.yaml -------------------------------------------------------------------------------- /data/classificationDataTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/data/classificationDataTool.py -------------------------------------------------------------------------------- /data/generateTFRecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/data/generateTFRecord.py -------------------------------------------------------------------------------- /data/mxrec2folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/data/mxrec2folders.py -------------------------------------------------------------------------------- /data/tmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/data/tmp.py -------------------------------------------------------------------------------- /data/tmp1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/data/tmp1.py -------------------------------------------------------------------------------- /eval/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/eval/utils.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/evaluate.py -------------------------------------------------------------------------------- /finetune_softmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/finetune_softmax.py -------------------------------------------------------------------------------- /get_embd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/get_embd.py -------------------------------------------------------------------------------- /losses/logit_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/losses/logit_loss.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/model.py -------------------------------------------------------------------------------- /train_softmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/train_softmax.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckycallor/InsightFace-tensorflow/HEAD/utils.py --------------------------------------------------------------------------------