├── .gitignore ├── DataSet ├── CUB200.py ├── Car196.py ├── In_shop_clothes.py ├── Products.py ├── __init__.py └── transforms.py ├── LICENSE ├── Model2Feature.py ├── README.md ├── __init__.py ├── data_list_example.txt ├── evaluations ├── NMI.py ├── __init__.py ├── cnn.py ├── extract_featrure.py ├── recall_at_k.py └── top_k.py ├── losses ├── Binomial.py ├── Contrastive.py ├── HardMining.py ├── LiftedStructure.py ├── NCA.py ├── SemiHard.py ├── __init__.py └── triplet.py ├── models ├── BN_Inception.py └── __init__.py ├── run_train_00.sh ├── test.py ├── train.py ├── trainer.py └── utils ├── Batch_generator.py ├── HyperparamterDisplay.py ├── __init__.py ├── cluster.py ├── logging.py ├── map.py ├── meters.py ├── numpy_tozero.py ├── orthogonal_regularizaton.py ├── osutils.py ├── sampler.py ├── serialization.py └── str2nums.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/.gitignore -------------------------------------------------------------------------------- /DataSet/CUB200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/DataSet/CUB200.py -------------------------------------------------------------------------------- /DataSet/Car196.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/DataSet/Car196.py -------------------------------------------------------------------------------- /DataSet/In_shop_clothes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/DataSet/In_shop_clothes.py -------------------------------------------------------------------------------- /DataSet/Products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/DataSet/Products.py -------------------------------------------------------------------------------- /DataSet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/DataSet/__init__.py -------------------------------------------------------------------------------- /DataSet/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/DataSet/transforms.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/LICENSE -------------------------------------------------------------------------------- /Model2Feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/Model2Feature.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/__init__.py -------------------------------------------------------------------------------- /data_list_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/data_list_example.txt -------------------------------------------------------------------------------- /evaluations/NMI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/evaluations/NMI.py -------------------------------------------------------------------------------- /evaluations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/evaluations/__init__.py -------------------------------------------------------------------------------- /evaluations/cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/evaluations/cnn.py -------------------------------------------------------------------------------- /evaluations/extract_featrure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/evaluations/extract_featrure.py -------------------------------------------------------------------------------- /evaluations/recall_at_k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/evaluations/recall_at_k.py -------------------------------------------------------------------------------- /evaluations/top_k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/evaluations/top_k.py -------------------------------------------------------------------------------- /losses/Binomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/losses/Binomial.py -------------------------------------------------------------------------------- /losses/Contrastive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/losses/Contrastive.py -------------------------------------------------------------------------------- /losses/HardMining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/losses/HardMining.py -------------------------------------------------------------------------------- /losses/LiftedStructure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/losses/LiftedStructure.py -------------------------------------------------------------------------------- /losses/NCA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/losses/NCA.py -------------------------------------------------------------------------------- /losses/SemiHard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/losses/SemiHard.py -------------------------------------------------------------------------------- /losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/losses/__init__.py -------------------------------------------------------------------------------- /losses/triplet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/losses/triplet.py -------------------------------------------------------------------------------- /models/BN_Inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/models/BN_Inception.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/models/__init__.py -------------------------------------------------------------------------------- /run_train_00.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/run_train_00.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/train.py -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/trainer.py -------------------------------------------------------------------------------- /utils/Batch_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/utils/Batch_generator.py -------------------------------------------------------------------------------- /utils/HyperparamterDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/utils/HyperparamterDisplay.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/utils/cluster.py -------------------------------------------------------------------------------- /utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/utils/logging.py -------------------------------------------------------------------------------- /utils/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/utils/map.py -------------------------------------------------------------------------------- /utils/meters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/utils/meters.py -------------------------------------------------------------------------------- /utils/numpy_tozero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/utils/numpy_tozero.py -------------------------------------------------------------------------------- /utils/orthogonal_regularizaton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/utils/orthogonal_regularizaton.py -------------------------------------------------------------------------------- /utils/osutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/utils/osutils.py -------------------------------------------------------------------------------- /utils/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/utils/sampler.py -------------------------------------------------------------------------------- /utils/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/utils/serialization.py -------------------------------------------------------------------------------- /utils/str2nums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnu-wangxun/Deep_Metric/HEAD/utils/str2nums.py --------------------------------------------------------------------------------