Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fusarium Wilt Disease Detection using DL #423

Merged
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions Fusarium Wilt Disease Detection/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Introduction

Disease detection Model is a model which will classify the fusarium wilt images among various different classes based on the severity of disease.

# Dataset

The dataset used in this project is take from the Kaggle website.
<br>
<b>Dataset Link:- https://www.kaggle.com/datasets/tolgahayit/fusarium-wilt-disease-in-chickpea-dataset/data </b>
<br>

<br>
The Data Set consists of raw and augmented images with categories of healthy and fusarium wilt diseased leaf images. It is foreseen that the data set will guide related studies in the area.
<br>

<br>
Severity level images from the dataset:
<br>1: Highly Resistant (HR): The plant has been wilted by 0%-10%,
<br>3: Resistant (R): The plant has been wilted by 11%-20%,
<br>5: Moderately Resistant/ Tolerant (MR): The plant has been wilted by 21%-30%,
<br>7: Susceptible (S): The plant has been wilted by 31%-50%,
<br>9: Highly Susceptible (HS): The plant has been wilted by more than 51%
<br>


# Aim

The main aim is to build a Deep Learning model using various approaches that will be able to classify a image into its appropriate class with the highest accuracy.

# Approach

We will try to build the models using different approaches and compare their accuracy. In this notebook we will be building models using VGG16, DenseNet and MobileNet.

# VGG16
![VGG16](https://github.com/the-silent-geek/DL-Simplified/blob/7652413344186a95ec90a15f639f3efc10da6493/Fusarium%20Wilt%20Disease%20Detection/images/VGG16.jpg)

# MobileNet
![MobileNet](https://github.com/the-silent-geek/DL-Simplified/blob/01c08181398f712cb364bbe9f71749a23ef668fb/Fusarium%20Wilt%20Disease%20Detection/images/MobileNet.jpg)

# DenseNet
![DenseNet](https://github.com/the-silent-geek/DL-Simplified/blob/97e0d242b9c5dbc11bae466b6f4dc8ba9f1b01e5/Fusarium%20Wilt%20Disease%20Detection/images/DenseNet210.jpg)

19 changes: 19 additions & 0 deletions Fusarium Wilt Disease Detection/dataset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Dataset

The dataset used in this project is take from the Kaggle website.
<br>
<b>Dataset Link:- https://www.kaggle.com/datasets/tolgahayit/fusarium-wilt-disease-in-chickpea-dataset/data </b>
<br>

<br>
The Data Set consists of raw and augmented images with categories of healthy and fusarium wilt diseased leaf images. It is foreseen that the data set will guide related studies in the area.
<br>

<br>
Severity level images from the dataset:
<br>1: Highly Resistant (HR): The plant has been wilted by 0%-10%,
<br>3: Resistant (R): The plant has been wilted by 11%-20%,
<br>5: Moderately Resistant/ Tolerant (MR): The plant has been wilted by 21%-30%,
<br>7: Susceptible (S): The plant has been wilted by 31%-50%,
<br>9: Highly Susceptible (HS): The plant has been wilted by more than 51%
<br>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Fusarium Wilt Disease Detection/images/VGG16.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
662 changes: 662 additions & 0 deletions Fusarium Wilt Disease Detection/model/model.ipynb

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions Fusarium Wilt Disease Detection/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
python
numpy
pandas
imageio
tensorflow
sklearn
keras
Loading