├── .gitignore ├── LICENSE ├── README.md ├── checkpoints └── readme.txt ├── convert_weights ├── convert_dims.py ├── convert_kernels.py ├── convert_weights_to_keras.py ├── get_inception_weights.py ├── helper_net │ ├── __init__.py │ ├── inception_utils.py │ └── inception_v4.py └── inception_utils.py ├── elephant.jpg ├── evaluate_image.py ├── inception_v4.py └── validation_utils ├── GTL.txt ├── class_names.txt └── convert_ground_truth_labels ├── convert_ground_truth_labels.py ├── correct_classes.txt ├── old_classes_raw.txt └── val_ground_truth_labels.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/checkpoints/readme.txt -------------------------------------------------------------------------------- /convert_weights/convert_dims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/convert_weights/convert_dims.py -------------------------------------------------------------------------------- /convert_weights/convert_kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/convert_weights/convert_kernels.py -------------------------------------------------------------------------------- /convert_weights/convert_weights_to_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/convert_weights/convert_weights_to_keras.py -------------------------------------------------------------------------------- /convert_weights/get_inception_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/convert_weights/get_inception_weights.py -------------------------------------------------------------------------------- /convert_weights/helper_net/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /convert_weights/helper_net/inception_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/convert_weights/helper_net/inception_utils.py -------------------------------------------------------------------------------- /convert_weights/helper_net/inception_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/convert_weights/helper_net/inception_v4.py -------------------------------------------------------------------------------- /convert_weights/inception_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/convert_weights/inception_utils.py -------------------------------------------------------------------------------- /elephant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/elephant.jpg -------------------------------------------------------------------------------- /evaluate_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/evaluate_image.py -------------------------------------------------------------------------------- /inception_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/inception_v4.py -------------------------------------------------------------------------------- /validation_utils/GTL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/validation_utils/GTL.txt -------------------------------------------------------------------------------- /validation_utils/class_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/validation_utils/class_names.txt -------------------------------------------------------------------------------- /validation_utils/convert_ground_truth_labels/convert_ground_truth_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/validation_utils/convert_ground_truth_labels/convert_ground_truth_labels.py -------------------------------------------------------------------------------- /validation_utils/convert_ground_truth_labels/correct_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/validation_utils/convert_ground_truth_labels/correct_classes.txt -------------------------------------------------------------------------------- /validation_utils/convert_ground_truth_labels/old_classes_raw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/validation_utils/convert_ground_truth_labels/old_classes_raw.txt -------------------------------------------------------------------------------- /validation_utils/convert_ground_truth_labels/val_ground_truth_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentsommer/keras-inceptionV4/HEAD/validation_utils/convert_ground_truth_labels/val_ground_truth_labels.txt --------------------------------------------------------------------------------