├── LICENSE ├── README.md ├── Resnet50 ├── .ipynb_checkpoints │ └── resnet50-checkpoint.ipynb └── resnet50.ipynb └── inception_resnet ├── Inceptionvresnetv2.ipynb ├── imagenet_utils.py └── inception_resnet_v2.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumar-shridhar/CNN_Architectures/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumar-shridhar/CNN_Architectures/HEAD/README.md -------------------------------------------------------------------------------- /Resnet50/.ipynb_checkpoints/resnet50-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumar-shridhar/CNN_Architectures/HEAD/Resnet50/.ipynb_checkpoints/resnet50-checkpoint.ipynb -------------------------------------------------------------------------------- /Resnet50/resnet50.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumar-shridhar/CNN_Architectures/HEAD/Resnet50/resnet50.ipynb -------------------------------------------------------------------------------- /inception_resnet/Inceptionvresnetv2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumar-shridhar/CNN_Architectures/HEAD/inception_resnet/Inceptionvresnetv2.ipynb -------------------------------------------------------------------------------- /inception_resnet/imagenet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumar-shridhar/CNN_Architectures/HEAD/inception_resnet/imagenet_utils.py -------------------------------------------------------------------------------- /inception_resnet/inception_resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumar-shridhar/CNN_Architectures/HEAD/inception_resnet/inception_resnet_v2.py --------------------------------------------------------------------------------