├── README.md ├── conf └── conf.json ├── extract_features.py ├── license.md ├── organize_flowers17.py ├── out.gif ├── output └── flowers_17 │ ├── inceptionv3 │ ├── classifier.cpickle │ ├── features.h5 │ ├── labels.h5 │ └── results.txt │ ├── resnet50 │ ├── classifier.cpickle │ ├── features.h5 │ ├── labels.h5 │ └── results.txt │ ├── vgg16 │ ├── classifier.cpickle │ ├── features.h5 │ ├── labels.h5 │ └── results.txt │ └── vgg19 │ ├── classifier.cpickle │ ├── features.h5 │ ├── labels.h5 │ └── results.txt ├── test.py └── train.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/README.md -------------------------------------------------------------------------------- /conf/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/conf/conf.json -------------------------------------------------------------------------------- /extract_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/extract_features.py -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/license.md -------------------------------------------------------------------------------- /organize_flowers17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/organize_flowers17.py -------------------------------------------------------------------------------- /out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/out.gif -------------------------------------------------------------------------------- /output/flowers_17/inceptionv3/classifier.cpickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/inceptionv3/classifier.cpickle -------------------------------------------------------------------------------- /output/flowers_17/inceptionv3/features.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/inceptionv3/features.h5 -------------------------------------------------------------------------------- /output/flowers_17/inceptionv3/labels.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/inceptionv3/labels.h5 -------------------------------------------------------------------------------- /output/flowers_17/inceptionv3/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/inceptionv3/results.txt -------------------------------------------------------------------------------- /output/flowers_17/resnet50/classifier.cpickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/resnet50/classifier.cpickle -------------------------------------------------------------------------------- /output/flowers_17/resnet50/features.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/resnet50/features.h5 -------------------------------------------------------------------------------- /output/flowers_17/resnet50/labels.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/resnet50/labels.h5 -------------------------------------------------------------------------------- /output/flowers_17/resnet50/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/resnet50/results.txt -------------------------------------------------------------------------------- /output/flowers_17/vgg16/classifier.cpickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/vgg16/classifier.cpickle -------------------------------------------------------------------------------- /output/flowers_17/vgg16/features.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/vgg16/features.h5 -------------------------------------------------------------------------------- /output/flowers_17/vgg16/labels.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/vgg16/labels.h5 -------------------------------------------------------------------------------- /output/flowers_17/vgg16/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/vgg16/results.txt -------------------------------------------------------------------------------- /output/flowers_17/vgg19/classifier.cpickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/vgg19/classifier.cpickle -------------------------------------------------------------------------------- /output/flowers_17/vgg19/features.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/vgg19/features.h5 -------------------------------------------------------------------------------- /output/flowers_17/vgg19/labels.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/vgg19/labels.h5 -------------------------------------------------------------------------------- /output/flowers_17/vgg19/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/output/flowers_17/vgg19/results.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogul09/flower-recognition/HEAD/train.py --------------------------------------------------------------------------------