├── +demo ├── AP.m ├── NDCG.m └── imagenet.m ├── +eval ├── AP.m ├── NDCG.m ├── tieAP.m └── tieNDCG.m ├── +imdb ├── batch_fc7.m ├── batch_imagenet.m ├── batch_simplenn.m ├── cifar.m ├── imagenet.m ├── nus.m ├── split_cifar.m └── split_nus.m ├── +models ├── alexnet.m ├── fc1.m ├── init_weights.m └── vggf.m ├── LICENSE ├── README.md ├── apr_s_backward.m ├── apr_s_forward.m ├── data ├── ImageNet │ └── README.md ├── NUSWIDE │ ├── AllLabels81.txt │ ├── Imagelist.txt │ └── README.md └── README.md ├── main ├── affinity_binary.m ├── affinity_multlv.m ├── cnn_encode.m ├── get_imdb.m ├── get_model.m ├── get_opts.m ├── process_opts.m ├── test_imagenet.m ├── test_supervised.m ├── test_unsupervised.m ├── train_imagenet.m └── train_simplenn.m ├── ndcgr_s_backward.m ├── ndcgr_s_forward.m ├── run_cifar_s1.m ├── run_cifar_s2.m ├── run_imagenet.m ├── run_nuswide_AP.m ├── run_nuswide_NDCG.m ├── startup.m └── util ├── auto_select_gpu.m ├── catstruct.m ├── cleanup.m ├── myLogInfo.m ├── prepareGPUs.m ├── record_diary.m ├── triPulse.m └── triPulseDeriv.m /+demo/AP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+demo/AP.m -------------------------------------------------------------------------------- /+demo/NDCG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+demo/NDCG.m -------------------------------------------------------------------------------- /+demo/imagenet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+demo/imagenet.m -------------------------------------------------------------------------------- /+eval/AP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+eval/AP.m -------------------------------------------------------------------------------- /+eval/NDCG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+eval/NDCG.m -------------------------------------------------------------------------------- /+eval/tieAP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+eval/tieAP.m -------------------------------------------------------------------------------- /+eval/tieNDCG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+eval/tieNDCG.m -------------------------------------------------------------------------------- /+imdb/batch_fc7.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+imdb/batch_fc7.m -------------------------------------------------------------------------------- /+imdb/batch_imagenet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+imdb/batch_imagenet.m -------------------------------------------------------------------------------- /+imdb/batch_simplenn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+imdb/batch_simplenn.m -------------------------------------------------------------------------------- /+imdb/cifar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+imdb/cifar.m -------------------------------------------------------------------------------- /+imdb/imagenet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+imdb/imagenet.m -------------------------------------------------------------------------------- /+imdb/nus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+imdb/nus.m -------------------------------------------------------------------------------- /+imdb/split_cifar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+imdb/split_cifar.m -------------------------------------------------------------------------------- /+imdb/split_nus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+imdb/split_nus.m -------------------------------------------------------------------------------- /+models/alexnet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+models/alexnet.m -------------------------------------------------------------------------------- /+models/fc1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+models/fc1.m -------------------------------------------------------------------------------- /+models/init_weights.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+models/init_weights.m -------------------------------------------------------------------------------- /+models/vggf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/+models/vggf.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/README.md -------------------------------------------------------------------------------- /apr_s_backward.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/apr_s_backward.m -------------------------------------------------------------------------------- /apr_s_forward.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/apr_s_forward.m -------------------------------------------------------------------------------- /data/ImageNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/data/ImageNet/README.md -------------------------------------------------------------------------------- /data/NUSWIDE/AllLabels81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/data/NUSWIDE/AllLabels81.txt -------------------------------------------------------------------------------- /data/NUSWIDE/Imagelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/data/NUSWIDE/Imagelist.txt -------------------------------------------------------------------------------- /data/NUSWIDE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/data/NUSWIDE/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/data/README.md -------------------------------------------------------------------------------- /main/affinity_binary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/main/affinity_binary.m -------------------------------------------------------------------------------- /main/affinity_multlv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/main/affinity_multlv.m -------------------------------------------------------------------------------- /main/cnn_encode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/main/cnn_encode.m -------------------------------------------------------------------------------- /main/get_imdb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/main/get_imdb.m -------------------------------------------------------------------------------- /main/get_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/main/get_model.m -------------------------------------------------------------------------------- /main/get_opts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/main/get_opts.m -------------------------------------------------------------------------------- /main/process_opts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/main/process_opts.m -------------------------------------------------------------------------------- /main/test_imagenet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/main/test_imagenet.m -------------------------------------------------------------------------------- /main/test_supervised.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/main/test_supervised.m -------------------------------------------------------------------------------- /main/test_unsupervised.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/main/test_unsupervised.m -------------------------------------------------------------------------------- /main/train_imagenet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/main/train_imagenet.m -------------------------------------------------------------------------------- /main/train_simplenn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/main/train_simplenn.m -------------------------------------------------------------------------------- /ndcgr_s_backward.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/ndcgr_s_backward.m -------------------------------------------------------------------------------- /ndcgr_s_forward.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/ndcgr_s_forward.m -------------------------------------------------------------------------------- /run_cifar_s1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/run_cifar_s1.m -------------------------------------------------------------------------------- /run_cifar_s2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/run_cifar_s2.m -------------------------------------------------------------------------------- /run_imagenet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/run_imagenet.m -------------------------------------------------------------------------------- /run_nuswide_AP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/run_nuswide_AP.m -------------------------------------------------------------------------------- /run_nuswide_NDCG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/run_nuswide_NDCG.m -------------------------------------------------------------------------------- /startup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/startup.m -------------------------------------------------------------------------------- /util/auto_select_gpu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/util/auto_select_gpu.m -------------------------------------------------------------------------------- /util/catstruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/util/catstruct.m -------------------------------------------------------------------------------- /util/cleanup.m: -------------------------------------------------------------------------------- 1 | function cleanup 2 | diary('off'); 3 | end 4 | -------------------------------------------------------------------------------- /util/myLogInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/util/myLogInfo.m -------------------------------------------------------------------------------- /util/prepareGPUs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/util/prepareGPUs.m -------------------------------------------------------------------------------- /util/record_diary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/util/record_diary.m -------------------------------------------------------------------------------- /util/triPulse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/util/triPulse.m -------------------------------------------------------------------------------- /util/triPulseDeriv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunhe/TALR/HEAD/util/triPulseDeriv.m --------------------------------------------------------------------------------