gitextract_tiiskuzj/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── __init__.py ├── configs/ │ └── mobilefacenet_vgg2.yml ├── datasets/ │ ├── __init__.py │ ├── casia.py │ ├── celeba.py │ ├── imdbface.py │ ├── lfw.py │ ├── megaface.py │ ├── ms_celeb1m.py │ ├── ndg.py │ ├── trillion_pairs.py │ └── vggface2.py ├── demo/ │ ├── README.md │ └── run_demo.py ├── devtools/ │ └── pylint.rc ├── dump_features.py ├── evaluate_landmarks.py ├── evaluate_lfw.py ├── init_venv.sh ├── losses/ │ ├── __init__.py │ ├── alignment.py │ ├── am_softmax.py │ ├── centroid_based.py │ ├── metric_losses.py │ └── regularizer.py ├── model/ │ ├── __init__.py │ ├── backbones/ │ │ ├── __init__.py │ │ ├── resnet.py │ │ ├── rmnet.py │ │ ├── se_resnet.py │ │ ├── se_resnext.py │ │ └── shufflenet_v2.py │ ├── blocks/ │ │ ├── __init__.py │ │ ├── mobilenet_v2_blocks.py │ │ ├── resnet_blocks.py │ │ ├── rmnet_blocks.py │ │ ├── se_resnet_blocks.py │ │ ├── se_resnext_blocks.py │ │ ├── shared_blocks.py │ │ └── shufflenet_v2_blocks.py │ ├── common.py │ ├── landnet.py │ ├── mobilefacenet.py │ ├── resnet_angular.py │ ├── rmnet_angular.py │ ├── se_resnet_angular.py │ └── shufflenet_v2_angular.py ├── requirements.txt ├── scripts/ │ ├── __init__.py │ ├── accuracy_check.py │ ├── align_images.py │ ├── count_flops.py │ ├── matio.py │ ├── plot_roc_curves_lfw.py │ └── pytorch2onnx.py ├── tests/ │ ├── __init__.py │ ├── test_alignment.py │ ├── test_models.py │ └── test_utils.py ├── train.py ├── train_landmarks.py └── utils/ ├── __init__.py ├── augmentation.py ├── face_align.py ├── ie_tools.py ├── landmarks_augmentation.py ├── parser_yaml.py └── utils.py