├── .gitignore ├── LICENSE ├── README.md ├── fig_outline.png ├── infer_aff.py ├── infer_cls.py ├── network ├── resnet38_aff.py ├── resnet38_cls.py ├── resnet38d.py ├── vgg16_20M.prototxt ├── vgg16_aff.py ├── vgg16_cls.py └── vgg16d.py ├── tool ├── imutils.py ├── pyutils.py └── torchutils.py ├── train_aff.py ├── train_cls.py └── voc12 ├── cls_labels.npy ├── data.py ├── make_cls_labels.py ├── test.txt ├── train.txt ├── train_aug.txt └── val.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/README.md -------------------------------------------------------------------------------- /fig_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/fig_outline.png -------------------------------------------------------------------------------- /infer_aff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/infer_aff.py -------------------------------------------------------------------------------- /infer_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/infer_cls.py -------------------------------------------------------------------------------- /network/resnet38_aff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/network/resnet38_aff.py -------------------------------------------------------------------------------- /network/resnet38_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/network/resnet38_cls.py -------------------------------------------------------------------------------- /network/resnet38d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/network/resnet38d.py -------------------------------------------------------------------------------- /network/vgg16_20M.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/network/vgg16_20M.prototxt -------------------------------------------------------------------------------- /network/vgg16_aff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/network/vgg16_aff.py -------------------------------------------------------------------------------- /network/vgg16_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/network/vgg16_cls.py -------------------------------------------------------------------------------- /network/vgg16d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/network/vgg16d.py -------------------------------------------------------------------------------- /tool/imutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/tool/imutils.py -------------------------------------------------------------------------------- /tool/pyutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/tool/pyutils.py -------------------------------------------------------------------------------- /tool/torchutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/tool/torchutils.py -------------------------------------------------------------------------------- /train_aff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/train_aff.py -------------------------------------------------------------------------------- /train_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/train_cls.py -------------------------------------------------------------------------------- /voc12/cls_labels.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/voc12/cls_labels.npy -------------------------------------------------------------------------------- /voc12/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/voc12/data.py -------------------------------------------------------------------------------- /voc12/make_cls_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/voc12/make_cls_labels.py -------------------------------------------------------------------------------- /voc12/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/voc12/test.txt -------------------------------------------------------------------------------- /voc12/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/voc12/train.txt -------------------------------------------------------------------------------- /voc12/train_aug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/voc12/train_aug.txt -------------------------------------------------------------------------------- /voc12/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoon-ahn/psa/HEAD/voc12/val.txt --------------------------------------------------------------------------------