├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── data └── wgetgdrive.sh ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ ├── index.rst │ ├── install.rst │ ├── module.rst │ └── result.rst ├── models ├── cnn_custom.py ├── ensemble_majority_voting.py ├── ensemble_stacked_prediction.py ├── random_forest.py ├── svm.py └── vgg16.py ├── preprocessing ├── 001_load_data.py ├── 002_data_augmentation.py ├── 003_hog.py └── utils.py ├── requirements.txt ├── setup.py └── visualization.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/app.py -------------------------------------------------------------------------------- /data/wgetgdrive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/data/wgetgdrive.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/docs/source/module.rst -------------------------------------------------------------------------------- /docs/source/result.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/docs/source/result.rst -------------------------------------------------------------------------------- /models/cnn_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/models/cnn_custom.py -------------------------------------------------------------------------------- /models/ensemble_majority_voting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/models/ensemble_majority_voting.py -------------------------------------------------------------------------------- /models/ensemble_stacked_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/models/ensemble_stacked_prediction.py -------------------------------------------------------------------------------- /models/random_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/models/random_forest.py -------------------------------------------------------------------------------- /models/svm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/models/svm.py -------------------------------------------------------------------------------- /models/vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/models/vgg16.py -------------------------------------------------------------------------------- /preprocessing/001_load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/preprocessing/001_load_data.py -------------------------------------------------------------------------------- /preprocessing/002_data_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/preprocessing/002_data_augmentation.py -------------------------------------------------------------------------------- /preprocessing/003_hog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/preprocessing/003_hog.py -------------------------------------------------------------------------------- /preprocessing/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/preprocessing/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/setup.py -------------------------------------------------------------------------------- /visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjana7395/Grape-disease-classification/HEAD/visualization.py --------------------------------------------------------------------------------