├── LICENSE ├── Plant Disease Prediction-densenet121.ipynb ├── PlantDNet.h5 ├── Procfile ├── README.md ├── app.py ├── requirements.txt ├── runtime.txt ├── static ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── font-awesome.min.css │ ├── main.css │ ├── normalize.css │ ├── style.css │ └── test.css ├── images │ ├── plant-1.jpg │ ├── plant-1.png │ └── plant-2.png └── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ ├── bootstrap.min.js.map │ ├── jquery.min.js │ ├── newjs.js │ ├── plugins.js │ └── vendor │ ├── jquery-1.12.0.min.js │ └── modernizr-2.8.3.min.js ├── templates ├── import.html └── index.html └── uploads ├── 0a0744dc-8486-4fbb-a44b-4d63e6db6197___RS_Early.B_7575.JPG └── 0d9dbf50-53a9-42b2-8b29-0360fb7dbd98___RS_Early.B_6692.JPG /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/LICENSE -------------------------------------------------------------------------------- /Plant Disease Prediction-densenet121.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/Plant Disease Prediction-densenet121.ipynb -------------------------------------------------------------------------------- /PlantDNet.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/PlantDNet.h5 -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.4 -------------------------------------------------------------------------------- /static/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/bootstrap-grid.css -------------------------------------------------------------------------------- /static/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /static/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /static/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /static/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /static/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /static/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /static/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/normalize.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/css/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/css/test.css -------------------------------------------------------------------------------- /static/images/plant-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/images/plant-1.jpg -------------------------------------------------------------------------------- /static/images/plant-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/images/plant-1.png -------------------------------------------------------------------------------- /static/images/plant-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/images/plant-2.png -------------------------------------------------------------------------------- /static/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /static/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /static/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/js/bootstrap.js.map -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /static/js/newjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/js/newjs.js -------------------------------------------------------------------------------- /static/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/js/plugins.js -------------------------------------------------------------------------------- /static/js/vendor/jquery-1.12.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/js/vendor/jquery-1.12.0.min.js -------------------------------------------------------------------------------- /static/js/vendor/modernizr-2.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/static/js/vendor/modernizr-2.8.3.min.js -------------------------------------------------------------------------------- /templates/import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/templates/import.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/templates/index.html -------------------------------------------------------------------------------- /uploads/0a0744dc-8486-4fbb-a44b-4d63e6db6197___RS_Early.B_7575.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/uploads/0a0744dc-8486-4fbb-a44b-4d63e6db6197___RS_Early.B_7575.JPG -------------------------------------------------------------------------------- /uploads/0d9dbf50-53a9-42b2-8b29-0360fb7dbd98___RS_Early.B_6692.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vignesh227/Plant-Disease-Prediction/HEAD/uploads/0d9dbf50-53a9-42b2-8b29-0360fb7dbd98___RS_Early.B_6692.JPG --------------------------------------------------------------------------------