├── README.md ├── VGG16.py ├── VGG16.pyc ├── create_tfrecords.py ├── model └── checkpoint ├── test.py ├── test ├── 0-image_0003.jpg ├── 1-image_0102.jpg ├── 10-image_0810.jpg ├── 11-image_0884.jpg ├── 15-image_1207.jpg ├── 16-image_1311.jpg ├── 3-image_0241.jpg └── 8-image_0645.jpg └── train.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMingda92/VGG16_TF/HEAD/README.md -------------------------------------------------------------------------------- /VGG16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMingda92/VGG16_TF/HEAD/VGG16.py -------------------------------------------------------------------------------- /VGG16.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMingda92/VGG16_TF/HEAD/VGG16.pyc -------------------------------------------------------------------------------- /create_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMingda92/VGG16_TF/HEAD/create_tfrecords.py -------------------------------------------------------------------------------- /model/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMingda92/VGG16_TF/HEAD/model/checkpoint -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMingda92/VGG16_TF/HEAD/test.py -------------------------------------------------------------------------------- /test/0-image_0003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMingda92/VGG16_TF/HEAD/test/0-image_0003.jpg -------------------------------------------------------------------------------- /test/1-image_0102.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMingda92/VGG16_TF/HEAD/test/1-image_0102.jpg -------------------------------------------------------------------------------- /test/10-image_0810.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMingda92/VGG16_TF/HEAD/test/10-image_0810.jpg -------------------------------------------------------------------------------- /test/11-image_0884.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMingda92/VGG16_TF/HEAD/test/11-image_0884.jpg -------------------------------------------------------------------------------- /test/15-image_1207.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMingda92/VGG16_TF/HEAD/test/15-image_1207.jpg -------------------------------------------------------------------------------- /test/16-image_1311.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMingda92/VGG16_TF/HEAD/test/16-image_1311.jpg -------------------------------------------------------------------------------- /test/3-image_0241.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMingda92/VGG16_TF/HEAD/test/3-image_0241.jpg -------------------------------------------------------------------------------- /test/8-image_0645.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMingda92/VGG16_TF/HEAD/test/8-image_0645.jpg -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMingda92/VGG16_TF/HEAD/train.py --------------------------------------------------------------------------------