├── .gitignore ├── PlantDisPre_Densenet_Image_Classifier_training_notebook.ipynb ├── Procfile ├── README.md ├── app.json ├── app.py ├── helper.py ├── inference.py ├── mappings.json ├── plantDensenet121.pt ├── remidies.json ├── requirements.txt ├── runtime.txt ├── static └── css │ └── style.css └── templates ├── app.html ├── index.html └── result.html /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /PlantDisPre_Densenet_Image_Classifier_training_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanmitraD/Plant-disease-prediction-using-CNNs/HEAD/PlantDisPre_Densenet_Image_Classifier_training_notebook.ipynb -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanmitraD/Plant-disease-prediction-using-CNNs/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanmitraD/Plant-disease-prediction-using-CNNs/HEAD/app.json -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanmitraD/Plant-disease-prediction-using-CNNs/HEAD/app.py -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanmitraD/Plant-disease-prediction-using-CNNs/HEAD/helper.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanmitraD/Plant-disease-prediction-using-CNNs/HEAD/inference.py -------------------------------------------------------------------------------- /mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanmitraD/Plant-disease-prediction-using-CNNs/HEAD/mappings.json -------------------------------------------------------------------------------- /plantDensenet121.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanmitraD/Plant-disease-prediction-using-CNNs/HEAD/plantDensenet121.pt -------------------------------------------------------------------------------- /remidies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanmitraD/Plant-disease-prediction-using-CNNs/HEAD/remidies.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanmitraD/Plant-disease-prediction-using-CNNs/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.1 2 | -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanmitraD/Plant-disease-prediction-using-CNNs/HEAD/static/css/style.css -------------------------------------------------------------------------------- /templates/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanmitraD/Plant-disease-prediction-using-CNNs/HEAD/templates/app.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanmitraD/Plant-disease-prediction-using-CNNs/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanmitraD/Plant-disease-prediction-using-CNNs/HEAD/templates/result.html --------------------------------------------------------------------------------