├── .gitignore ├── README.md ├── elephant.jpg ├── evaluate_imagenet.py ├── extract_weights.py ├── inception_resnet_v2.py ├── load_weights.py ├── requirements.txt └── test_inception_resnet_v2.py /.gitignore: -------------------------------------------------------------------------------- 1 | *__pycache__ 2 | weights 3 | models 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyang-huang/keras-inception-resnet-v2/HEAD/README.md -------------------------------------------------------------------------------- /elephant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyang-huang/keras-inception-resnet-v2/HEAD/elephant.jpg -------------------------------------------------------------------------------- /evaluate_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyang-huang/keras-inception-resnet-v2/HEAD/evaluate_imagenet.py -------------------------------------------------------------------------------- /extract_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyang-huang/keras-inception-resnet-v2/HEAD/extract_weights.py -------------------------------------------------------------------------------- /inception_resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyang-huang/keras-inception-resnet-v2/HEAD/inception_resnet_v2.py -------------------------------------------------------------------------------- /load_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyang-huang/keras-inception-resnet-v2/HEAD/load_weights.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyang-huang/keras-inception-resnet-v2/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_inception_resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyang-huang/keras-inception-resnet-v2/HEAD/test_inception_resnet_v2.py --------------------------------------------------------------------------------