├── .gitignore ├── README.md ├── ScreenShots ├── cat vs dog.JPG ├── input Image.PNG ├── modelTraining.PNG └── output.PNG ├── classifier.py ├── model.h5 ├── model.json └── trained_Model.py /.gitignore: -------------------------------------------------------------------------------- 1 | Dataset/ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yatheen07/cat-dog-image-classifier/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShots/cat vs dog.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yatheen07/cat-dog-image-classifier/HEAD/ScreenShots/cat vs dog.JPG -------------------------------------------------------------------------------- /ScreenShots/input Image.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yatheen07/cat-dog-image-classifier/HEAD/ScreenShots/input Image.PNG -------------------------------------------------------------------------------- /ScreenShots/modelTraining.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yatheen07/cat-dog-image-classifier/HEAD/ScreenShots/modelTraining.PNG -------------------------------------------------------------------------------- /ScreenShots/output.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yatheen07/cat-dog-image-classifier/HEAD/ScreenShots/output.PNG -------------------------------------------------------------------------------- /classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yatheen07/cat-dog-image-classifier/HEAD/classifier.py -------------------------------------------------------------------------------- /model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yatheen07/cat-dog-image-classifier/HEAD/model.h5 -------------------------------------------------------------------------------- /model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yatheen07/cat-dog-image-classifier/HEAD/model.json -------------------------------------------------------------------------------- /trained_Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yatheen07/cat-dog-image-classifier/HEAD/trained_Model.py --------------------------------------------------------------------------------