├── LICENSE ├── README.md ├── cams.png ├── evaluation.py ├── infer_aff.py ├── infer_cls_ser.py ├── network ├── __pycache__ │ ├── resnet38_aff.cpython-36.pyc │ ├── resnet38_aff_cascade.cpython-36.pyc │ ├── resnet38_aff_noise.cpython-36.pyc │ ├── resnet38_cls.cpython-36.pyc │ ├── resnet38_cls_ade20k.cpython-36.pyc │ ├── resnet38_cls_cam.cpython-36.pyc │ ├── resnet38_cls_cam_ade20k.cpython-36.pyc │ ├── resnet38_cls_ser.cpython-36.pyc │ ├── resnet38_triplet_cascade.cpython-36.pyc │ ├── resnet38d.cpython-36.pyc │ ├── vgg16_cls.cpython-36.pyc │ └── vgg16d.cpython-36.pyc ├── resnet38_aff.py ├── resnet38_cls.py ├── resnet38_cls_ser.py ├── resnet38d.py ├── vgg16_20M.prototxt ├── vgg16_aff.py ├── vgg16_cls.py ├── vgg16_cls_ser.py └── vgg16d.py ├── tool ├── __pycache__ │ ├── imutils.cpython-36.pyc │ ├── pyutils.cpython-36.pyc │ ├── torchutils.cpython-36.pyc │ └── visualization.cpython-36.pyc ├── imutils.py ├── pyutils.py ├── torchutils.py └── visualization.py ├── train_aff.py ├── train_cls_ser.py └── voc12 ├── __pycache__ └── data.cpython-36.pyc ├── cls_labels.npy ├── data.py ├── make_cls_labels.py ├── test.txt ├── train.txt ├── train_aug.txt ├── trainaug_val.txt └── val.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /cams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/cams.png -------------------------------------------------------------------------------- /evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/evaluation.py -------------------------------------------------------------------------------- /infer_aff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/infer_aff.py -------------------------------------------------------------------------------- /infer_cls_ser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/infer_cls_ser.py -------------------------------------------------------------------------------- /network/__pycache__/resnet38_aff.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/__pycache__/resnet38_aff.cpython-36.pyc -------------------------------------------------------------------------------- /network/__pycache__/resnet38_aff_cascade.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/__pycache__/resnet38_aff_cascade.cpython-36.pyc -------------------------------------------------------------------------------- /network/__pycache__/resnet38_aff_noise.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/__pycache__/resnet38_aff_noise.cpython-36.pyc -------------------------------------------------------------------------------- /network/__pycache__/resnet38_cls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/__pycache__/resnet38_cls.cpython-36.pyc -------------------------------------------------------------------------------- /network/__pycache__/resnet38_cls_ade20k.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/__pycache__/resnet38_cls_ade20k.cpython-36.pyc -------------------------------------------------------------------------------- /network/__pycache__/resnet38_cls_cam.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/__pycache__/resnet38_cls_cam.cpython-36.pyc -------------------------------------------------------------------------------- /network/__pycache__/resnet38_cls_cam_ade20k.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/__pycache__/resnet38_cls_cam_ade20k.cpython-36.pyc -------------------------------------------------------------------------------- /network/__pycache__/resnet38_cls_ser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/__pycache__/resnet38_cls_ser.cpython-36.pyc -------------------------------------------------------------------------------- /network/__pycache__/resnet38_triplet_cascade.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/__pycache__/resnet38_triplet_cascade.cpython-36.pyc -------------------------------------------------------------------------------- /network/__pycache__/resnet38d.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/__pycache__/resnet38d.cpython-36.pyc -------------------------------------------------------------------------------- /network/__pycache__/vgg16_cls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/__pycache__/vgg16_cls.cpython-36.pyc -------------------------------------------------------------------------------- /network/__pycache__/vgg16d.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/__pycache__/vgg16d.cpython-36.pyc -------------------------------------------------------------------------------- /network/resnet38_aff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/resnet38_aff.py -------------------------------------------------------------------------------- /network/resnet38_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/resnet38_cls.py -------------------------------------------------------------------------------- /network/resnet38_cls_ser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/resnet38_cls_ser.py -------------------------------------------------------------------------------- /network/resnet38d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/resnet38d.py -------------------------------------------------------------------------------- /network/vgg16_20M.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/vgg16_20M.prototxt -------------------------------------------------------------------------------- /network/vgg16_aff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/vgg16_aff.py -------------------------------------------------------------------------------- /network/vgg16_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/vgg16_cls.py -------------------------------------------------------------------------------- /network/vgg16_cls_ser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/vgg16_cls_ser.py -------------------------------------------------------------------------------- /network/vgg16d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/network/vgg16d.py -------------------------------------------------------------------------------- /tool/__pycache__/imutils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/tool/__pycache__/imutils.cpython-36.pyc -------------------------------------------------------------------------------- /tool/__pycache__/pyutils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/tool/__pycache__/pyutils.cpython-36.pyc -------------------------------------------------------------------------------- /tool/__pycache__/torchutils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/tool/__pycache__/torchutils.cpython-36.pyc -------------------------------------------------------------------------------- /tool/__pycache__/visualization.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/tool/__pycache__/visualization.cpython-36.pyc -------------------------------------------------------------------------------- /tool/imutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/tool/imutils.py -------------------------------------------------------------------------------- /tool/pyutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/tool/pyutils.py -------------------------------------------------------------------------------- /tool/torchutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/tool/torchutils.py -------------------------------------------------------------------------------- /tool/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/tool/visualization.py -------------------------------------------------------------------------------- /train_aff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/train_aff.py -------------------------------------------------------------------------------- /train_cls_ser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/train_cls_ser.py -------------------------------------------------------------------------------- /voc12/__pycache__/data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/voc12/__pycache__/data.cpython-36.pyc -------------------------------------------------------------------------------- /voc12/cls_labels.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/voc12/cls_labels.npy -------------------------------------------------------------------------------- /voc12/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/voc12/data.py -------------------------------------------------------------------------------- /voc12/make_cls_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/voc12/make_cls_labels.py -------------------------------------------------------------------------------- /voc12/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/voc12/test.txt -------------------------------------------------------------------------------- /voc12/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/voc12/train.txt -------------------------------------------------------------------------------- /voc12/train_aug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/voc12/train_aug.txt -------------------------------------------------------------------------------- /voc12/trainaug_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/voc12/trainaug_val.txt -------------------------------------------------------------------------------- /voc12/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudeWang/SSENet-pytorch/HEAD/voc12/val.txt --------------------------------------------------------------------------------