├── README.md ├── c100_CPSPPSEDenseNet.sh ├── c100_CPSPPSEMobileV2.sh ├── c100_CPSPPSEResNext.sh ├── c100_DenseNet.sh ├── c100_MobileV2.sh ├── c100_PSPPSEDenseNet.sh ├── c100_PSPPSEMobileV2.sh ├── c100_PSPPSEResNext.sh ├── c100_ResNext.sh ├── c100_SEDenseNet.sh ├── c100_SEMobileV2.sh ├── c100_SEResNext.sh ├── c100_SEVGG16.sh ├── c100_SPPSEDenseNet.sh ├── c100_SPPSEMobileV2.sh ├── c100_SPPSEResNext.sh ├── c100_SPPSEVGG16.sh ├── c100_VGG16.sh ├── cifar.py ├── cifar100_CPSEResNet101.sh ├── cifar100_CPSEResNet18.sh ├── cifar100_CPSEResNet50.sh ├── cifar100_CPSPPSEResNet101.sh ├── cifar100_CPSPPSEResNet18.sh ├── cifar100_CPSPPSEResNet50.sh ├── cifar100_PSEResNet101.sh ├── cifar100_PSEResNet18.sh ├── cifar100_PSEResNet50.sh ├── cifar100_PSPPSEResNet101.sh ├── cifar100_PSPPSEResNet18.sh ├── cifar100_PSPPSEResNet50.sh ├── cifar100_PreActResNet101.sh ├── cifar100_PreActResNet18.sh ├── cifar100_PreActResNet50.sh ├── cifar100_SEResNet101.sh ├── cifar100_SEResNet18.sh ├── cifar100_SEResNet50.sh ├── cifar100_SPPSEResNet101.sh ├── cifar100_SPPSEResNet18.sh ├── cifar100_SPPSEResNet50.sh ├── flops_counter.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── cp_spp_se_resnet.cpython-36.pyc │ ├── cpse_resnet.cpython-36.pyc │ ├── cpsppse_densenet.cpython-36.pyc │ ├── cpsppse_mobilenetv2.cpython-36.pyc │ ├── cpsppse_resnext.cpython-36.pyc │ ├── densenet.cpython-36.pyc │ ├── dpn.cpython-36.pyc │ ├── googlenet.cpython-36.pyc │ ├── lenet.cpython-36.pyc │ ├── mobilenet.cpython-36.pyc │ ├── mobilenetv2.cpython-36.pyc │ ├── na_resnet.cpython-36.pyc │ ├── p_spp_se_resnet.cpython-36.pyc │ ├── pnasnet.cpython-36.pyc │ ├── preact_resnet.cpython-36.pyc │ ├── pse_resnet.cpython-36.pyc │ ├── psppse_densenet.cpython-36.pyc │ ├── psppse_mobilenetv2.cpython-36.pyc │ ├── psppse_resnext.cpython-36.pyc │ ├── resnet.cpython-36.pyc │ ├── resnext.cpython-36.pyc │ ├── se_densenet.cpython-36.pyc │ ├── se_mobilenetv2.cpython-36.pyc │ ├── se_resnet.cpython-36.pyc │ ├── se_resnext.cpython-36.pyc │ ├── se_vgg.cpython-36.pyc │ ├── se_vgg16.cpython-36.pyc │ ├── senet.cpython-36.pyc │ ├── shufflenet.cpython-36.pyc │ ├── shufflenetv2.cpython-36.pyc │ ├── spp_se_resnet.cpython-36.pyc │ ├── sppse_densenet.cpython-36.pyc │ ├── sppse_mobilenetv2.cpython-36.pyc │ ├── sppse_resnext.cpython-36.pyc │ ├── sppse_vgg16.cpython-36.pyc │ ├── vgg.cpython-36.pyc │ └── vgg16.cpython-36.pyc ├── cp_spp_se_resnet.py ├── cpse_resnet.py ├── cpsppse_densenet.py ├── cpsppse_mobilenetv2.py ├── cpsppse_resnext.py ├── densenet.py ├── dpn.py ├── googlenet.py ├── lenet.py ├── mobilenet.py ├── mobilenetv2.py ├── na_resnet.py ├── p_spp_se_resnet.py ├── pnasnet.py ├── preact_resnet.py ├── pse_resnet.py ├── psppse_densenet.py ├── psppse_mobilenetv2.py ├── psppse_resnext.py ├── resnet.py ├── resnext.py ├── se_densenet.py ├── se_mobilenetv2.py ├── se_resnet.py ├── se_resnext.py ├── se_vgg16.py ├── senet.py ├── shufflenet.py ├── shufflenetv2.py ├── spp_se_resnet.py ├── sppse_densenet.py ├── sppse_mobilenetv2.py ├── sppse_resnext.py ├── sppse_vgg16.py ├── vgg.py └── vgg16.py ├── outlog ├── demo.txt ├── out_64778.log ├── out_64779.log ├── out_64780.log ├── out_65018.log └── out_65019.log ├── records └── demo.txt ├── test_flops.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/README.md -------------------------------------------------------------------------------- /c100_CPSPPSEDenseNet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_CPSPPSEDenseNet.sh -------------------------------------------------------------------------------- /c100_CPSPPSEMobileV2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_CPSPPSEMobileV2.sh -------------------------------------------------------------------------------- /c100_CPSPPSEResNext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_CPSPPSEResNext.sh -------------------------------------------------------------------------------- /c100_DenseNet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_DenseNet.sh -------------------------------------------------------------------------------- /c100_MobileV2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_MobileV2.sh -------------------------------------------------------------------------------- /c100_PSPPSEDenseNet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_PSPPSEDenseNet.sh -------------------------------------------------------------------------------- /c100_PSPPSEMobileV2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_PSPPSEMobileV2.sh -------------------------------------------------------------------------------- /c100_PSPPSEResNext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_PSPPSEResNext.sh -------------------------------------------------------------------------------- /c100_ResNext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_ResNext.sh -------------------------------------------------------------------------------- /c100_SEDenseNet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_SEDenseNet.sh -------------------------------------------------------------------------------- /c100_SEMobileV2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_SEMobileV2.sh -------------------------------------------------------------------------------- /c100_SEResNext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_SEResNext.sh -------------------------------------------------------------------------------- /c100_SEVGG16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_SEVGG16.sh -------------------------------------------------------------------------------- /c100_SPPSEDenseNet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_SPPSEDenseNet.sh -------------------------------------------------------------------------------- /c100_SPPSEMobileV2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_SPPSEMobileV2.sh -------------------------------------------------------------------------------- /c100_SPPSEResNext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_SPPSEResNext.sh -------------------------------------------------------------------------------- /c100_SPPSEVGG16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_SPPSEVGG16.sh -------------------------------------------------------------------------------- /c100_VGG16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/c100_VGG16.sh -------------------------------------------------------------------------------- /cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar.py -------------------------------------------------------------------------------- /cifar100_CPSEResNet101.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_CPSEResNet101.sh -------------------------------------------------------------------------------- /cifar100_CPSEResNet18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_CPSEResNet18.sh -------------------------------------------------------------------------------- /cifar100_CPSEResNet50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_CPSEResNet50.sh -------------------------------------------------------------------------------- /cifar100_CPSPPSEResNet101.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_CPSPPSEResNet101.sh -------------------------------------------------------------------------------- /cifar100_CPSPPSEResNet18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_CPSPPSEResNet18.sh -------------------------------------------------------------------------------- /cifar100_CPSPPSEResNet50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_CPSPPSEResNet50.sh -------------------------------------------------------------------------------- /cifar100_PSEResNet101.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_PSEResNet101.sh -------------------------------------------------------------------------------- /cifar100_PSEResNet18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_PSEResNet18.sh -------------------------------------------------------------------------------- /cifar100_PSEResNet50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_PSEResNet50.sh -------------------------------------------------------------------------------- /cifar100_PSPPSEResNet101.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_PSPPSEResNet101.sh -------------------------------------------------------------------------------- /cifar100_PSPPSEResNet18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_PSPPSEResNet18.sh -------------------------------------------------------------------------------- /cifar100_PSPPSEResNet50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_PSPPSEResNet50.sh -------------------------------------------------------------------------------- /cifar100_PreActResNet101.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_PreActResNet101.sh -------------------------------------------------------------------------------- /cifar100_PreActResNet18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_PreActResNet18.sh -------------------------------------------------------------------------------- /cifar100_PreActResNet50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_PreActResNet50.sh -------------------------------------------------------------------------------- /cifar100_SEResNet101.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_SEResNet101.sh -------------------------------------------------------------------------------- /cifar100_SEResNet18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_SEResNet18.sh -------------------------------------------------------------------------------- /cifar100_SEResNet50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_SEResNet50.sh -------------------------------------------------------------------------------- /cifar100_SPPSEResNet101.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_SPPSEResNet101.sh -------------------------------------------------------------------------------- /cifar100_SPPSEResNet18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_SPPSEResNet18.sh -------------------------------------------------------------------------------- /cifar100_SPPSEResNet50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/cifar100_SPPSEResNet50.sh -------------------------------------------------------------------------------- /flops_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/flops_counter.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/cp_spp_se_resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/cp_spp_se_resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/cpse_resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/cpse_resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/cpsppse_densenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/cpsppse_densenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/cpsppse_mobilenetv2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/cpsppse_mobilenetv2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/cpsppse_resnext.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/cpsppse_resnext.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/densenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/densenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/dpn.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/dpn.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/googlenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/googlenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/lenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/lenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/mobilenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/mobilenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/mobilenetv2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/mobilenetv2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/na_resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/na_resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/p_spp_se_resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/p_spp_se_resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/pnasnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/pnasnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/preact_resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/preact_resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/pse_resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/pse_resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/psppse_densenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/psppse_densenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/psppse_mobilenetv2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/psppse_mobilenetv2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/psppse_resnext.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/psppse_resnext.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnext.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/resnext.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/se_densenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/se_densenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/se_mobilenetv2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/se_mobilenetv2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/se_resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/se_resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/se_resnext.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/se_resnext.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/se_vgg.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/se_vgg.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/se_vgg16.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/se_vgg16.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/senet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/senet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/shufflenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/shufflenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/shufflenetv2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/shufflenetv2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/spp_se_resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/spp_se_resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/sppse_densenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/sppse_densenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/sppse_mobilenetv2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/sppse_mobilenetv2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/sppse_resnext.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/sppse_resnext.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/sppse_vgg16.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/sppse_vgg16.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/vgg.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg16.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/__pycache__/vgg16.cpython-36.pyc -------------------------------------------------------------------------------- /models/cp_spp_se_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/cp_spp_se_resnet.py -------------------------------------------------------------------------------- /models/cpse_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/cpse_resnet.py -------------------------------------------------------------------------------- /models/cpsppse_densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/cpsppse_densenet.py -------------------------------------------------------------------------------- /models/cpsppse_mobilenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/cpsppse_mobilenetv2.py -------------------------------------------------------------------------------- /models/cpsppse_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/cpsppse_resnext.py -------------------------------------------------------------------------------- /models/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/densenet.py -------------------------------------------------------------------------------- /models/dpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/dpn.py -------------------------------------------------------------------------------- /models/googlenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/googlenet.py -------------------------------------------------------------------------------- /models/lenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/lenet.py -------------------------------------------------------------------------------- /models/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/mobilenet.py -------------------------------------------------------------------------------- /models/mobilenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/mobilenetv2.py -------------------------------------------------------------------------------- /models/na_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/na_resnet.py -------------------------------------------------------------------------------- /models/p_spp_se_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/p_spp_se_resnet.py -------------------------------------------------------------------------------- /models/pnasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/pnasnet.py -------------------------------------------------------------------------------- /models/preact_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/preact_resnet.py -------------------------------------------------------------------------------- /models/pse_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/pse_resnet.py -------------------------------------------------------------------------------- /models/psppse_densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/psppse_densenet.py -------------------------------------------------------------------------------- /models/psppse_mobilenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/psppse_mobilenetv2.py -------------------------------------------------------------------------------- /models/psppse_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/psppse_resnext.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/resnext.py -------------------------------------------------------------------------------- /models/se_densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/se_densenet.py -------------------------------------------------------------------------------- /models/se_mobilenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/se_mobilenetv2.py -------------------------------------------------------------------------------- /models/se_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/se_resnet.py -------------------------------------------------------------------------------- /models/se_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/se_resnext.py -------------------------------------------------------------------------------- /models/se_vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/se_vgg16.py -------------------------------------------------------------------------------- /models/senet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/senet.py -------------------------------------------------------------------------------- /models/shufflenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/shufflenet.py -------------------------------------------------------------------------------- /models/shufflenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/shufflenetv2.py -------------------------------------------------------------------------------- /models/spp_se_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/spp_se_resnet.py -------------------------------------------------------------------------------- /models/sppse_densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/sppse_densenet.py -------------------------------------------------------------------------------- /models/sppse_mobilenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/sppse_mobilenetv2.py -------------------------------------------------------------------------------- /models/sppse_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/sppse_resnext.py -------------------------------------------------------------------------------- /models/sppse_vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/sppse_vgg16.py -------------------------------------------------------------------------------- /models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/vgg.py -------------------------------------------------------------------------------- /models/vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/models/vgg16.py -------------------------------------------------------------------------------- /outlog/demo.txt: -------------------------------------------------------------------------------- 1 | 11 -------------------------------------------------------------------------------- /outlog/out_64778.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/outlog/out_64778.log -------------------------------------------------------------------------------- /outlog/out_64779.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/outlog/out_64779.log -------------------------------------------------------------------------------- /outlog/out_64780.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/outlog/out_64780.log -------------------------------------------------------------------------------- /outlog/out_65018.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/outlog/out_65018.log -------------------------------------------------------------------------------- /outlog/out_65019.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/outlog/out_65019.log -------------------------------------------------------------------------------- /records/demo.txt: -------------------------------------------------------------------------------- 1 | epoch loss accuracy -------------------------------------------------------------------------------- /test_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/test_flops.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-xu/SPANet/HEAD/utils.py --------------------------------------------------------------------------------