├── .gitignore ├── .idea └── vcs.xml ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── categories_hybrid1365.txt ├── categories_places365.txt ├── places365_class_index.json ├── places_utils.py ├── vgg16-hybrid1365.png ├── vgg16-places365.png ├── vgg16_hybrid_places_1365.py └── vgg16_places_365.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GKalliatakis/Keras-VGG16-places365/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GKalliatakis/Keras-VGG16-places365/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GKalliatakis/Keras-VGG16-places365/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GKalliatakis/Keras-VGG16-places365/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GKalliatakis/Keras-VGG16-places365/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GKalliatakis/Keras-VGG16-places365/HEAD/README.md -------------------------------------------------------------------------------- /categories_hybrid1365.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GKalliatakis/Keras-VGG16-places365/HEAD/categories_hybrid1365.txt -------------------------------------------------------------------------------- /categories_places365.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GKalliatakis/Keras-VGG16-places365/HEAD/categories_places365.txt -------------------------------------------------------------------------------- /places365_class_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GKalliatakis/Keras-VGG16-places365/HEAD/places365_class_index.json -------------------------------------------------------------------------------- /places_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GKalliatakis/Keras-VGG16-places365/HEAD/places_utils.py -------------------------------------------------------------------------------- /vgg16-hybrid1365.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GKalliatakis/Keras-VGG16-places365/HEAD/vgg16-hybrid1365.png -------------------------------------------------------------------------------- /vgg16-places365.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GKalliatakis/Keras-VGG16-places365/HEAD/vgg16-places365.png -------------------------------------------------------------------------------- /vgg16_hybrid_places_1365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GKalliatakis/Keras-VGG16-places365/HEAD/vgg16_hybrid_places_1365.py -------------------------------------------------------------------------------- /vgg16_places_365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GKalliatakis/Keras-VGG16-places365/HEAD/vgg16_places_365.py --------------------------------------------------------------------------------