This repository contains the source code for the paper Color-aware two-branch DCNN for efficient plant disease classification by Joao Paulo Schwarz Schuler, Santiago Romani, Mohamed Abdel-Nasser, Hatem Rashwan and Domenec Puig.
Deep convolutional neural networks (DCNNs) have been successfully applied to plant disease detection. Unlike most existing studies, we propose feeding a DCNN CIE Lab instead of RGB color coordinates. We modified an Inception V3 architecture to include one branch specific for achromatic data (L channel) and another branch specific for chromatic data (AB channels). This modification takes advantage of the decoupling of chromatic and achromatic information. Besides, splitting branches reduces the number of trainable parameters and computation load by up to 50% of the original figures using modified layers. We achieved a state-of-the-art classification accuracy of 99.48% on the Plant Village dataset and 76.91% on the Cropped-PlantDoc dataset.
The source code for the experiments described in the paper can be found at the raw folder:
- Plant Village with baseline model.
- Plant Village with L+AB branches model.
- Cropped-PlantDoc with L+AB branches model.
Raw notebook files with source code for tables 3, 4 and 5 are available.
You'll need to import the K-CAI Neural API. Then, you can create a 20%L+80%AB Inception V3 model with 6 mixed layers as per example:
import os
if not os.path.isdir('k'):
!git clone https://github.com/joaopauloschuler/k-neural-api.git k
else:
!cd k && git pull
!cd k && pip install .
l_ratio = 0.2
model = cai.models.compiled_two_path_inception_v3(
input_shape=(224,224,3),
classes=38,
two_paths_first_block=True,
two_paths_second_block=False,
l_ratio=l_ratio,
ab_ratio=(1-l_ratio),
max_mix_idx=5,
model_name='two_path_inception_v3'
)
You may be interested in our other paper about making plant disease classification noise resistant. You may also be interested at optimizing deeper layers of a DCNN: V1 and V2.
Due to library updates, the code used for the paper doesn't run on current tensorflow/keras. As of the writting of this readme file, the current version of tensorflow is 2.8. An updated version of the code was done after the paper publication. This version is now compatible with tensorflow 2.8:
This project is an open source project. If you like what you see, please give it a star on github.
@article{Schuler_2022_2branches,
title={Color-Aware Two-Branch DCNN for Efficient Plant Disease Classification},
volume={28},
url={https://mendel-journal.org/index.php/mendel/article/view/176},
DOI={10.13164/mendel.2022.1.055},
number={1},
journal={MENDEL},
author={Schwarz Schuler, Joao Paulo and Romani, Santiago and Abdel-Nasser, Mohamed and Rashwan, Hatem and Puig, Domenec},
year={2022},
month={Jun.},
pages={55-62}
}