├── .gitignore ├── LICENSE ├── README.md ├── batch_hard.py ├── dataset.py ├── resnet.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcewineChen/mxnet-batch_hard_triplet_loss/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcewineChen/mxnet-batch_hard_triplet_loss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcewineChen/mxnet-batch_hard_triplet_loss/HEAD/README.md -------------------------------------------------------------------------------- /batch_hard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcewineChen/mxnet-batch_hard_triplet_loss/HEAD/batch_hard.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcewineChen/mxnet-batch_hard_triplet_loss/HEAD/dataset.py -------------------------------------------------------------------------------- /resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcewineChen/mxnet-batch_hard_triplet_loss/HEAD/resnet.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcewineChen/mxnet-batch_hard_triplet_loss/HEAD/train.py --------------------------------------------------------------------------------