├── .gitignore ├── LICENSE ├── README.md ├── custom_layers.py ├── densenet121.py ├── densenet161.py ├── densenet169.py ├── imagenet_models └── README.md ├── resources ├── cat.jpg ├── classes.txt └── shark.jpg └── test_inference.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyyufelix/DenseNet-Keras/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyyufelix/DenseNet-Keras/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyyufelix/DenseNet-Keras/HEAD/README.md -------------------------------------------------------------------------------- /custom_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyyufelix/DenseNet-Keras/HEAD/custom_layers.py -------------------------------------------------------------------------------- /densenet121.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyyufelix/DenseNet-Keras/HEAD/densenet121.py -------------------------------------------------------------------------------- /densenet161.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyyufelix/DenseNet-Keras/HEAD/densenet161.py -------------------------------------------------------------------------------- /densenet169.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyyufelix/DenseNet-Keras/HEAD/densenet169.py -------------------------------------------------------------------------------- /imagenet_models/README.md: -------------------------------------------------------------------------------- 1 | ## Download ImageNet pretrained weights to this folder 2 | -------------------------------------------------------------------------------- /resources/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyyufelix/DenseNet-Keras/HEAD/resources/cat.jpg -------------------------------------------------------------------------------- /resources/classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyyufelix/DenseNet-Keras/HEAD/resources/classes.txt -------------------------------------------------------------------------------- /resources/shark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyyufelix/DenseNet-Keras/HEAD/resources/shark.jpg -------------------------------------------------------------------------------- /test_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyyufelix/DenseNet-Keras/HEAD/test_inference.py --------------------------------------------------------------------------------