├── LICENSE ├── README.md ├── data_label ├── config.py ├── generate_label.py ├── generate_label3.py └── generate_label3_2.py ├── experiment ├── I_C_M_to_O │ ├── config.py │ ├── dg_test.py │ ├── train_vlad_baseline.py │ ├── train_vlad_baseline2.py │ └── vlad_sharesp_all3.py ├── O_C_I_to_M │ ├── config.py │ ├── train_vlad_baseline.py │ ├── train_vlad_baseline2.py │ └── vlad_sharesp_all3.py ├── O_C_M_to_I │ ├── config.py │ ├── dg_test.py │ ├── train_vlad_baseline.py │ ├── train_vlad_baseline2.py │ └── vlad_sharesp_all3.py └── O_M_I_to_C │ ├── config.py │ ├── dg_test.py │ ├── train_vlad_baseline.py │ ├── train_vlad_baseline2.py │ └── vlad_sharesp_all3.py ├── loss ├── MSE.py ├── hard_triplet_loss.py └── triplet_maddg.py ├── models └── DGFAS_netvlad.py ├── pipeline.JPG └── utils ├── dataset.py ├── eval_CSD.py ├── evaluate.py ├── get_loader.py ├── statistic.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/README.md -------------------------------------------------------------------------------- /data_label/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/data_label/config.py -------------------------------------------------------------------------------- /data_label/generate_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/data_label/generate_label.py -------------------------------------------------------------------------------- /data_label/generate_label3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/data_label/generate_label3.py -------------------------------------------------------------------------------- /data_label/generate_label3_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/data_label/generate_label3_2.py -------------------------------------------------------------------------------- /experiment/I_C_M_to_O/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/I_C_M_to_O/config.py -------------------------------------------------------------------------------- /experiment/I_C_M_to_O/dg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/I_C_M_to_O/dg_test.py -------------------------------------------------------------------------------- /experiment/I_C_M_to_O/train_vlad_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/I_C_M_to_O/train_vlad_baseline.py -------------------------------------------------------------------------------- /experiment/I_C_M_to_O/train_vlad_baseline2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/I_C_M_to_O/train_vlad_baseline2.py -------------------------------------------------------------------------------- /experiment/I_C_M_to_O/vlad_sharesp_all3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/I_C_M_to_O/vlad_sharesp_all3.py -------------------------------------------------------------------------------- /experiment/O_C_I_to_M/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/O_C_I_to_M/config.py -------------------------------------------------------------------------------- /experiment/O_C_I_to_M/train_vlad_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/O_C_I_to_M/train_vlad_baseline.py -------------------------------------------------------------------------------- /experiment/O_C_I_to_M/train_vlad_baseline2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/O_C_I_to_M/train_vlad_baseline2.py -------------------------------------------------------------------------------- /experiment/O_C_I_to_M/vlad_sharesp_all3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/O_C_I_to_M/vlad_sharesp_all3.py -------------------------------------------------------------------------------- /experiment/O_C_M_to_I/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/O_C_M_to_I/config.py -------------------------------------------------------------------------------- /experiment/O_C_M_to_I/dg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/O_C_M_to_I/dg_test.py -------------------------------------------------------------------------------- /experiment/O_C_M_to_I/train_vlad_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/O_C_M_to_I/train_vlad_baseline.py -------------------------------------------------------------------------------- /experiment/O_C_M_to_I/train_vlad_baseline2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/O_C_M_to_I/train_vlad_baseline2.py -------------------------------------------------------------------------------- /experiment/O_C_M_to_I/vlad_sharesp_all3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/O_C_M_to_I/vlad_sharesp_all3.py -------------------------------------------------------------------------------- /experiment/O_M_I_to_C/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/O_M_I_to_C/config.py -------------------------------------------------------------------------------- /experiment/O_M_I_to_C/dg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/O_M_I_to_C/dg_test.py -------------------------------------------------------------------------------- /experiment/O_M_I_to_C/train_vlad_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/O_M_I_to_C/train_vlad_baseline.py -------------------------------------------------------------------------------- /experiment/O_M_I_to_C/train_vlad_baseline2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/O_M_I_to_C/train_vlad_baseline2.py -------------------------------------------------------------------------------- /experiment/O_M_I_to_C/vlad_sharesp_all3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/experiment/O_M_I_to_C/vlad_sharesp_all3.py -------------------------------------------------------------------------------- /loss/MSE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/loss/MSE.py -------------------------------------------------------------------------------- /loss/hard_triplet_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/loss/hard_triplet_loss.py -------------------------------------------------------------------------------- /loss/triplet_maddg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/loss/triplet_maddg.py -------------------------------------------------------------------------------- /models/DGFAS_netvlad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/models/DGFAS_netvlad.py -------------------------------------------------------------------------------- /pipeline.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/pipeline.JPG -------------------------------------------------------------------------------- /utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/utils/dataset.py -------------------------------------------------------------------------------- /utils/eval_CSD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/utils/eval_CSD.py -------------------------------------------------------------------------------- /utils/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/utils/evaluate.py -------------------------------------------------------------------------------- /utils/get_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/utils/get_loader.py -------------------------------------------------------------------------------- /utils/statistic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/utils/statistic.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liubinggunzu/VLAD-VSA/HEAD/utils/utils.py --------------------------------------------------------------------------------