├── .gitignore ├── ILSVRC2017_val.txt ├── LICENSE ├── README.md ├── figures ├── SE-Inception-module.jpg ├── SE-ResNet-module.jpg └── SE-pipeline.jpg ├── include └── caffe │ └── layers │ └── axpy_layer.hpp ├── models ├── SE-BN-Inception.prototxt ├── SE-ResNeXt-101.prototxt ├── SE-ResNeXt-50.prototxt ├── SE-ResNet-101.prototxt ├── SE-ResNet-152.prototxt ├── SE-ResNet-50.prototxt └── SENet-154.prototxt └── src └── caffe └── layers ├── axpy_layer.cpp ├── axpy_layer.cu └── pooling_layer.cu /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/.gitignore -------------------------------------------------------------------------------- /ILSVRC2017_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/ILSVRC2017_val.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/README.md -------------------------------------------------------------------------------- /figures/SE-Inception-module.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/figures/SE-Inception-module.jpg -------------------------------------------------------------------------------- /figures/SE-ResNet-module.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/figures/SE-ResNet-module.jpg -------------------------------------------------------------------------------- /figures/SE-pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/figures/SE-pipeline.jpg -------------------------------------------------------------------------------- /include/caffe/layers/axpy_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/include/caffe/layers/axpy_layer.hpp -------------------------------------------------------------------------------- /models/SE-BN-Inception.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/models/SE-BN-Inception.prototxt -------------------------------------------------------------------------------- /models/SE-ResNeXt-101.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/models/SE-ResNeXt-101.prototxt -------------------------------------------------------------------------------- /models/SE-ResNeXt-50.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/models/SE-ResNeXt-50.prototxt -------------------------------------------------------------------------------- /models/SE-ResNet-101.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/models/SE-ResNet-101.prototxt -------------------------------------------------------------------------------- /models/SE-ResNet-152.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/models/SE-ResNet-152.prototxt -------------------------------------------------------------------------------- /models/SE-ResNet-50.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/models/SE-ResNet-50.prototxt -------------------------------------------------------------------------------- /models/SENet-154.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/models/SENet-154.prototxt -------------------------------------------------------------------------------- /src/caffe/layers/axpy_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/src/caffe/layers/axpy_layer.cpp -------------------------------------------------------------------------------- /src/caffe/layers/axpy_layer.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/src/caffe/layers/axpy_layer.cu -------------------------------------------------------------------------------- /src/caffe/layers/pooling_layer.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujie-frank/SENet/HEAD/src/caffe/layers/pooling_layer.cu --------------------------------------------------------------------------------