├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── assets └── FeatureVis.png ├── draw ├── draw_psi_curve.m └── draw_sphere │ ├── ReadMe.md │ └── get_feature.m └── prototxt ├── GNAP.prototxt ├── auto ├── face_solver.prototxt └── face_train_test_auto.prototxt ├── face_deploy_mirror_normalize.prototxt ├── face_solver.prototxt ├── face_train_test.prototxt └── face_train_test_wo_fn.prototxt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/AMSoftmax/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/AMSoftmax/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/AMSoftmax/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/AMSoftmax/HEAD/README.md -------------------------------------------------------------------------------- /assets/FeatureVis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/AMSoftmax/HEAD/assets/FeatureVis.png -------------------------------------------------------------------------------- /draw/draw_psi_curve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/AMSoftmax/HEAD/draw/draw_psi_curve.m -------------------------------------------------------------------------------- /draw/draw_sphere/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/AMSoftmax/HEAD/draw/draw_sphere/ReadMe.md -------------------------------------------------------------------------------- /draw/draw_sphere/get_feature.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/AMSoftmax/HEAD/draw/draw_sphere/get_feature.m -------------------------------------------------------------------------------- /prototxt/GNAP.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/AMSoftmax/HEAD/prototxt/GNAP.prototxt -------------------------------------------------------------------------------- /prototxt/auto/face_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/AMSoftmax/HEAD/prototxt/auto/face_solver.prototxt -------------------------------------------------------------------------------- /prototxt/auto/face_train_test_auto.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/AMSoftmax/HEAD/prototxt/auto/face_train_test_auto.prototxt -------------------------------------------------------------------------------- /prototxt/face_deploy_mirror_normalize.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/AMSoftmax/HEAD/prototxt/face_deploy_mirror_normalize.prototxt -------------------------------------------------------------------------------- /prototxt/face_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/AMSoftmax/HEAD/prototxt/face_solver.prototxt -------------------------------------------------------------------------------- /prototxt/face_train_test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/AMSoftmax/HEAD/prototxt/face_train_test.prototxt -------------------------------------------------------------------------------- /prototxt/face_train_test_wo_fn.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/AMSoftmax/HEAD/prototxt/face_train_test_wo_fn.prototxt --------------------------------------------------------------------------------