├── README.md ├── __init__.py ├── alexnet.py ├── deform_conv.py ├── googlenet_v1.py ├── googlenet_v3.py ├── googlenet_v4.py ├── non_local_resnet.py ├── resnet.py ├── se_resnet.py └── vgg.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuemaicha/cnn_model/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuemaicha/cnn_model/HEAD/alexnet.py -------------------------------------------------------------------------------- /deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuemaicha/cnn_model/HEAD/deform_conv.py -------------------------------------------------------------------------------- /googlenet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuemaicha/cnn_model/HEAD/googlenet_v1.py -------------------------------------------------------------------------------- /googlenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuemaicha/cnn_model/HEAD/googlenet_v3.py -------------------------------------------------------------------------------- /googlenet_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuemaicha/cnn_model/HEAD/googlenet_v4.py -------------------------------------------------------------------------------- /non_local_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuemaicha/cnn_model/HEAD/non_local_resnet.py -------------------------------------------------------------------------------- /resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuemaicha/cnn_model/HEAD/resnet.py -------------------------------------------------------------------------------- /se_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuemaicha/cnn_model/HEAD/se_resnet.py -------------------------------------------------------------------------------- /vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuemaicha/cnn_model/HEAD/vgg.py --------------------------------------------------------------------------------