├── .flake8 ├── .gitignore ├── LICENSE ├── README.md ├── config.json ├── data_loader ├── GLDv2.py ├── MS1Mv3.py ├── data_loaders.py └── sampler.py ├── docs ├── datasets.md ├── model_zoo.md └── train_test.md ├── evaluate ├── evaluate.py └── roxford_rparis_metrics.py ├── logger ├── __init__.py └── logger.py ├── model ├── build.py ├── inception.py ├── loss.py ├── margin_softmax.py ├── metric.py ├── model.py └── resnet_gem.py ├── parse_config.py ├── requirements.txt ├── test.py ├── train.py ├── train_bct.py ├── trainer ├── __init__.py └── trainer.py └── utils ├── __init__.py ├── process_gldv2_dataset.py └── util.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/config.json -------------------------------------------------------------------------------- /data_loader/GLDv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/data_loader/GLDv2.py -------------------------------------------------------------------------------- /data_loader/MS1Mv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/data_loader/MS1Mv3.py -------------------------------------------------------------------------------- /data_loader/data_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/data_loader/data_loaders.py -------------------------------------------------------------------------------- /data_loader/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/data_loader/sampler.py -------------------------------------------------------------------------------- /docs/datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/docs/datasets.md -------------------------------------------------------------------------------- /docs/model_zoo.md: -------------------------------------------------------------------------------- 1 | # Model Zoo 2 | 3 | We will release official pretrained models soon. -------------------------------------------------------------------------------- /docs/train_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/docs/train_test.md -------------------------------------------------------------------------------- /evaluate/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/evaluate/evaluate.py -------------------------------------------------------------------------------- /evaluate/roxford_rparis_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/evaluate/roxford_rparis_metrics.py -------------------------------------------------------------------------------- /logger/__init__.py: -------------------------------------------------------------------------------- 1 | from .logger import * -------------------------------------------------------------------------------- /logger/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/logger/logger.py -------------------------------------------------------------------------------- /model/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/model/build.py -------------------------------------------------------------------------------- /model/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/model/inception.py -------------------------------------------------------------------------------- /model/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/model/loss.py -------------------------------------------------------------------------------- /model/margin_softmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/model/margin_softmax.py -------------------------------------------------------------------------------- /model/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/model/metric.py -------------------------------------------------------------------------------- /model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/model/model.py -------------------------------------------------------------------------------- /model/resnet_gem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/model/resnet_gem.py -------------------------------------------------------------------------------- /parse_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/parse_config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/train.py -------------------------------------------------------------------------------- /train_bct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/train_bct.py -------------------------------------------------------------------------------- /trainer/__init__.py: -------------------------------------------------------------------------------- 1 | from .trainer import * 2 | -------------------------------------------------------------------------------- /trainer/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/trainer/trainer.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .util import * 2 | -------------------------------------------------------------------------------- /utils/process_gldv2_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/utils/process_gldv2_dataset.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/OpenCompatible/HEAD/utils/util.py --------------------------------------------------------------------------------