├── .gitattributes ├── LICENSE ├── README.md ├── caffe.proto ├── examples ├── face_deploy.prototxt └── face_triplet_train.prototxt ├── image_data_layer.cpp ├── image_data_layer.hpp ├── norm_layer.cpp ├── norm_layer.cu ├── norm_layer.hpp ├── rank_hard_loss_layer.cpp ├── rank_hard_loss_layer.cu └── rank_hard_loss_layer.hpp /.gitattributes: -------------------------------------------------------------------------------- 1 | *.* linguist-language=C++ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujiyang/Triplet-Loss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujiyang/Triplet-Loss/HEAD/README.md -------------------------------------------------------------------------------- /caffe.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujiyang/Triplet-Loss/HEAD/caffe.proto -------------------------------------------------------------------------------- /examples/face_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujiyang/Triplet-Loss/HEAD/examples/face_deploy.prototxt -------------------------------------------------------------------------------- /examples/face_triplet_train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujiyang/Triplet-Loss/HEAD/examples/face_triplet_train.prototxt -------------------------------------------------------------------------------- /image_data_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujiyang/Triplet-Loss/HEAD/image_data_layer.cpp -------------------------------------------------------------------------------- /image_data_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujiyang/Triplet-Loss/HEAD/image_data_layer.hpp -------------------------------------------------------------------------------- /norm_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujiyang/Triplet-Loss/HEAD/norm_layer.cpp -------------------------------------------------------------------------------- /norm_layer.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujiyang/Triplet-Loss/HEAD/norm_layer.cu -------------------------------------------------------------------------------- /norm_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujiyang/Triplet-Loss/HEAD/norm_layer.hpp -------------------------------------------------------------------------------- /rank_hard_loss_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujiyang/Triplet-Loss/HEAD/rank_hard_loss_layer.cpp -------------------------------------------------------------------------------- /rank_hard_loss_layer.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujiyang/Triplet-Loss/HEAD/rank_hard_loss_layer.cu -------------------------------------------------------------------------------- /rank_hard_loss_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujiyang/Triplet-Loss/HEAD/rank_hard_loss_layer.hpp --------------------------------------------------------------------------------