├── README.md ├── code ├── *ReLU │ ├── FReLU │ ├── NAM │ └── SMU ├── Augmentation ├── ElasticFace │ ├── code │ └── paper ├── GAN │ ├── code │ └── paper ├── Loss │ └── list.txt ├── TFace │ └── code ├── insightface │ ├── README.md │ ├── arcface_mxnet │ │ ├── inference.py │ │ └── triplet loss │ ├── arcface_paddle │ │ ├── README.md │ │ └── code │ │ │ ├── multi-gpu │ │ │ └── one-gpu │ ├── arcface_torch │ │ ├── README.md │ │ ├── partial_fc.py │ │ └── train_one_gpu.py │ ├── knowledge_distillation │ │ ├── code │ │ │ ├── AT │ │ │ ├── ConvLN_FD │ │ │ ├── DKD │ │ │ ├── EfficientBERT │ │ │ ├── FD │ │ │ ├── MGD │ │ │ ├── MI │ │ │ ├── MIFR-KD │ │ │ ├── RKD │ │ │ ├── ReviewKD │ │ │ ├── VID │ │ │ └── bake │ │ └── paper_list.txt │ ├── mask-face │ │ ├── code │ │ └── paper │ ├── onnx_inference │ │ └── insightface_onnx_feature.py │ └── process_data │ │ ├── README.md │ │ ├── dir2lst_ytf.py │ │ ├── lfw2pack.py │ │ └── make_lst.py ├── list.py ├── models │ ├── ACmix │ ├── ConvNeXt │ ├── DeepBDC │ ├── DiffusionDet │ ├── GSConv │ ├── InternImage │ ├── MaxViT │ ├── MobileOne │ ├── PRNet │ ├── RepLKNet │ ├── SLaK │ ├── SSF │ ├── SegNeXt │ └── convmod ├── multi-scale feature align │ └── list.txt ├── pruning │ ├── paper.txt │ └── project └── transformer │ ├── note │ ├── paper │ ├── project │ └── standard_transformer.py ├── paper └── list.txt └── tool └── Visualization tool /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/README.md -------------------------------------------------------------------------------- /code/*ReLU/FReLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/*ReLU/FReLU -------------------------------------------------------------------------------- /code/*ReLU/NAM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/*ReLU/NAM -------------------------------------------------------------------------------- /code/*ReLU/SMU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/*ReLU/SMU -------------------------------------------------------------------------------- /code/Augmentation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/Augmentation -------------------------------------------------------------------------------- /code/ElasticFace/code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/ElasticFace/code -------------------------------------------------------------------------------- /code/ElasticFace/paper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/ElasticFace/paper -------------------------------------------------------------------------------- /code/GAN/code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/GAN/code -------------------------------------------------------------------------------- /code/GAN/paper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/GAN/paper -------------------------------------------------------------------------------- /code/Loss/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/Loss/list.txt -------------------------------------------------------------------------------- /code/TFace/code: -------------------------------------------------------------------------------- 1 | https://github.com/Tencent/TFace 2 | -------------------------------------------------------------------------------- /code/insightface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/README.md -------------------------------------------------------------------------------- /code/insightface/arcface_mxnet/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/arcface_mxnet/inference.py -------------------------------------------------------------------------------- /code/insightface/arcface_mxnet/triplet loss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/arcface_mxnet/triplet loss -------------------------------------------------------------------------------- /code/insightface/arcface_paddle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/arcface_paddle/README.md -------------------------------------------------------------------------------- /code/insightface/arcface_paddle/code/multi-gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/arcface_paddle/code/multi-gpu -------------------------------------------------------------------------------- /code/insightface/arcface_paddle/code/one-gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/arcface_paddle/code/one-gpu -------------------------------------------------------------------------------- /code/insightface/arcface_torch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/arcface_torch/README.md -------------------------------------------------------------------------------- /code/insightface/arcface_torch/partial_fc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/arcface_torch/partial_fc.py -------------------------------------------------------------------------------- /code/insightface/arcface_torch/train_one_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/arcface_torch/train_one_gpu.py -------------------------------------------------------------------------------- /code/insightface/knowledge_distillation/code/AT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/knowledge_distillation/code/AT -------------------------------------------------------------------------------- /code/insightface/knowledge_distillation/code/ConvLN_FD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/knowledge_distillation/code/ConvLN_FD -------------------------------------------------------------------------------- /code/insightface/knowledge_distillation/code/DKD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/knowledge_distillation/code/DKD -------------------------------------------------------------------------------- /code/insightface/knowledge_distillation/code/EfficientBERT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/knowledge_distillation/code/EfficientBERT -------------------------------------------------------------------------------- /code/insightface/knowledge_distillation/code/FD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/knowledge_distillation/code/FD -------------------------------------------------------------------------------- /code/insightface/knowledge_distillation/code/MGD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/knowledge_distillation/code/MGD -------------------------------------------------------------------------------- /code/insightface/knowledge_distillation/code/MI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/knowledge_distillation/code/MI -------------------------------------------------------------------------------- /code/insightface/knowledge_distillation/code/MIFR-KD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/knowledge_distillation/code/MIFR-KD -------------------------------------------------------------------------------- /code/insightface/knowledge_distillation/code/RKD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/knowledge_distillation/code/RKD -------------------------------------------------------------------------------- /code/insightface/knowledge_distillation/code/ReviewKD: -------------------------------------------------------------------------------- 1 | https://github.com/dvlab-research/ReviewKD 2 | -------------------------------------------------------------------------------- /code/insightface/knowledge_distillation/code/VID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/knowledge_distillation/code/VID -------------------------------------------------------------------------------- /code/insightface/knowledge_distillation/code/bake: -------------------------------------------------------------------------------- 1 | https://github.com/yxgeee/BAKE 2 | -------------------------------------------------------------------------------- /code/insightface/knowledge_distillation/paper_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/knowledge_distillation/paper_list.txt -------------------------------------------------------------------------------- /code/insightface/mask-face/code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/mask-face/code -------------------------------------------------------------------------------- /code/insightface/mask-face/paper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/mask-face/paper -------------------------------------------------------------------------------- /code/insightface/onnx_inference/insightface_onnx_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/onnx_inference/insightface_onnx_feature.py -------------------------------------------------------------------------------- /code/insightface/process_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/process_data/README.md -------------------------------------------------------------------------------- /code/insightface/process_data/dir2lst_ytf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/process_data/dir2lst_ytf.py -------------------------------------------------------------------------------- /code/insightface/process_data/lfw2pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/process_data/lfw2pack.py -------------------------------------------------------------------------------- /code/insightface/process_data/make_lst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/insightface/process_data/make_lst.py -------------------------------------------------------------------------------- /code/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/list.py -------------------------------------------------------------------------------- /code/models/ACmix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/models/ACmix -------------------------------------------------------------------------------- /code/models/ConvNeXt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/models/ConvNeXt -------------------------------------------------------------------------------- /code/models/DeepBDC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/models/DeepBDC -------------------------------------------------------------------------------- /code/models/DiffusionDet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/models/DiffusionDet -------------------------------------------------------------------------------- /code/models/GSConv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/models/GSConv -------------------------------------------------------------------------------- /code/models/InternImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/models/InternImage -------------------------------------------------------------------------------- /code/models/MaxViT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/models/MaxViT -------------------------------------------------------------------------------- /code/models/MobileOne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/models/MobileOne -------------------------------------------------------------------------------- /code/models/PRNet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/models/PRNet -------------------------------------------------------------------------------- /code/models/RepLKNet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/models/RepLKNet -------------------------------------------------------------------------------- /code/models/SLaK: -------------------------------------------------------------------------------- 1 | paper 2 | 3 | code 4 | https://github.com/VITA-Group/SLaK 5 | -------------------------------------------------------------------------------- /code/models/SSF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/models/SSF -------------------------------------------------------------------------------- /code/models/SegNeXt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/models/SegNeXt -------------------------------------------------------------------------------- /code/models/convmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/models/convmod -------------------------------------------------------------------------------- /code/multi-scale feature align/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/multi-scale feature align/list.txt -------------------------------------------------------------------------------- /code/pruning/paper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/pruning/paper.txt -------------------------------------------------------------------------------- /code/pruning/project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/pruning/project -------------------------------------------------------------------------------- /code/transformer/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/transformer/note -------------------------------------------------------------------------------- /code/transformer/paper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/transformer/paper -------------------------------------------------------------------------------- /code/transformer/project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/transformer/project -------------------------------------------------------------------------------- /code/transformer/standard_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/code/transformer/standard_transformer.py -------------------------------------------------------------------------------- /paper/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/paper/list.txt -------------------------------------------------------------------------------- /tool/Visualization tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/Face_recognition_cnn/HEAD/tool/Visualization tool --------------------------------------------------------------------------------