<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Corn Leaf Disease Identification with Improved Accuracy</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Prateek Srivastava</string-name>
          <email>psrivastava@gehu.ac.in</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Graphic Era Hill University</institution>
          ,
          <addr-line>Clement Town, Dehradun, Uttarakhand</addr-line>
          ,
          <country country="IN">India</country>
        </aff>
      </contrib-group>
      <fpage>55</fpage>
      <lpage>60</lpage>
      <abstract>
        <p>The corn is a major food crops in many countries along with rice and wheat. It is one that is produced easily and used to feed millions of hungry stomachs. The production of corn is always affected by various diseases that might have different treatments. So incorrect classification of diseases may lead to incorrect remedial measures and reduced production efficiency also. The proposed model is formed with various convolutional layers and fully connected layers and predicts corn leaf disease correctly. This work utilizes corn leaf images from Mendeley dataset for all four health conditions of leaves like; Gray Leaf Spot, Common Rust, Blight, Healthy and contains 3852 images in all. After exhaustive iterations, the proposed work classifies corn disease with 95.60% training and 97.60% validation accuracy. All the performance metrics are presented and discussed here for a clear understanding. The F1-score calculated for each disease shows the strength of this work.</p>
      </abstract>
      <kwd-group>
        <kwd>1 Corn leaf disease</kwd>
        <kwd>deep learning</kwd>
        <kwd>convolution layers</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>The following Eq. 2 describes Softmax activation method mathematically.</p>
      <p>σ z = ∑'()#*$%#$'
(2)
Where σ = Softmax, z = Input Vector, e9% = standard exponential function for input vector,
k = number of classes in the multi − class classiBier,
e9' = standard exponential function for output vector and
e9' = standard exponential function for output vector</p>
      <p>The Softmax will produce a vector having probabilities of each class. Using agrmax() method of
NumPy library, an index value of the highest probability class can be found.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related work</title>
      <p>
        The research presented in [
        <xref ref-type="bibr" rid="ref5">6</xref>
        ] classifies rice plant disease by using colour features with an accuracy
of 94.65% and SVM is considered as a classifier. A model is proposed in [
        <xref ref-type="bibr" rid="ref6">7</xref>
        ] for automatic grape leaf
disease identification with a validation accuracy of 99.17%. The model presented in [
        <xref ref-type="bibr" rid="ref7">8</xref>
        ], is based on
deep forest that predicts maize leaf disease with an accuracy of 96.25%. In this model three disease
classes and one healthy class with 100 images for each were considered. The research outlined in [
        <xref ref-type="bibr" rid="ref8">9</xref>
        ],
investigates a real time method based on deep convolutional neural network for identification of corn
leaf with an accuracy of 88.46%. The model proposed in [
        <xref ref-type="bibr" rid="ref9">10</xref>
        ] uses K-Mean clustering and deep
learning to predict corn leaf diseases with an average accuracy of 93%. The work given in [
        <xref ref-type="bibr" rid="ref10">11</xref>
        ]
proposes a model using CNN and AlexNet architecture to identify maize leaf diseases. The CNN
model achieved an accuracy of 87%. The model given in [
        <xref ref-type="bibr" rid="ref11">12</xref>
        ] identifies maize diseases using support
vector machine and achieves 95.63% as average accuracy. The article outlined in [
        <xref ref-type="bibr" rid="ref12">13</xref>
        ] detects and
classifies groundnut leaf diseases using KNN classifier with an accuracy of 75%. The literatures given
in [
        <xref ref-type="bibr" rid="ref13 ref14 ref15">14, 15, 16</xref>
        ] justify the use of deep learning for the detection of diseases. The model presented in
[
        <xref ref-type="bibr" rid="ref16">17</xref>
        ] classifies plant disease using neural network and hyperspectral images. The work given is [
        <xref ref-type="bibr" rid="ref17">18</xref>
        ]
classifies 26 diseases among 14 crops. Here, Alexnet and Googlenet pre-trained models are used and
achieve an accuracy of 99.35%. And the model presented in [
        <xref ref-type="bibr" rid="ref18">19</xref>
        ]) classifies leaf disease using leaf
image processing.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Dataset and preprocessing</title>
      <p>
        This work utilizes images from the Mendeley dataset (Pandian et al. 2019[
        <xref ref-type="bibr" rid="ref19">20</xref>
        ]) for four health
conditions like Gray Spot, Common Rust, Blight, and Healthy with 513, 1192, 985, and 1162
corresponding images. To enrich the dataset with a variety of images, a data augmentation technique
with various parameters is applied here to generate images. The Figure 2, shows the four classes of
the images that are considered here. Before feeding to the convolutional layer the images are reshaped
as (160,160) by data augmentation.
      </p>
    </sec>
    <sec id="sec-4">
      <title>4. The proposed model</title>
      <p>The overall process for creating a trained model is given in Figure 3. The total size of dataset
including all classes is 3852. Here, 985 images belong to Blight class, 1192 images belong to
Common Rust class, 513 images belong to Gray Leaf Spot class and rest 1162 images belong to
Healthy class. The ImageDataGenerator library is used for data augmentation.</p>
      <p>At first, a dataset will be provided for augmentation for more quantity and variety of images.
During augmentation with the use of the validation_split attribute of ImageDataGenerator, the
training and validation sets will be specified. In this model, 50 images in one batch are considered.
So, during the training of the model, 50 images will be provided in the each iteration. After the
completion of all the iterations in each epoch, the validation process will be started. Here 50 images
are considered in each batch; hence, in the each iteration 50 images will be provided by
ImageDataGenerator for validation of the model. Figure 4, demonstrates the model testing process,
where a corn leave image will be provided to classify.</p>
    </sec>
    <sec id="sec-5">
      <title>5. Model Description</title>
      <p>In this model three convolutional layers are considered with the different numbers of kernels (or
masks). The first, second, and third layers consist of 32, 64, and 128 kernels with sizes (3,3), (2,2),
and (2,2) respectively. The image shape is considered as (160,160). To add non-linearity, the ReLU
activation function is used. At the first layer batch normalization is applied. To downsample the
inputs along height and width Maxpool2D class is used after each convolutional layer.
After convolutional layers, a flattening layer is applied to create a long vector of feature values and
then a fully connected layer is applied. The fully connected neural network is composed of two layers.
The first layer consists of 64 neurons, ReLU as an activation function and to regulate the overfitting,
dropout (with 50%) and L2 regularization techniques (with regularization parameter=0.01) are
applied. Regularization also controls the model complexity. The second (or last) layer consists of 4
neurons that represent the 4 class labels. In this layer, the Softmax activation function is used that
ensures the sum of output probabilities is 1. At the time of model training and validation,
ImageDataGenerator plays an important role. It creates a batch (here batch = 50) of augmented
images and provides to model for training and validation for the first iteration. In second (or other)
iteration again creates a new batch of augmented images and provides for training and validation. The
same batch will be created for each iteration until the whole training dataset is exhausted. In this way,
the trained model becomes very robust and accurate. Here 70% of data is considered for training and
the remaining 30% of data is considered for validation. During compilation of model, Adam optimizer
(Learning_rate=1e-03 and Decay= learning_rate /1000) is used. This model is trained for 50 epochs.
The early stopping callback is used to stop the model training when no improvement in validation
accuracy is observed in later epochs. Hence it saves the model from overfitting. Here early stopping is
used with patience point=2. Figure 5, presents that model training stops at epoch 5 since after epoch 3
the validation loss increases continuously.</p>
    </sec>
    <sec id="sec-6">
      <title>6. Result discussion and comparison</title>
      <p>The proposed model achieves a training accuracy of 95.60% and validation accuracy of 97.60%.
This model is trained for 50 epochs with early stopping and patience point is 2. The training gets
terminated at epoch 5 due to a continuous increase in validation loss (at epoch 4 and 5) after the
3rd epoch. However, there is the scope for further enhancement of training and validation accuracy
with the help of pretrained networks and may be considered as future work.</p>
    </sec>
    <sec id="sec-7">
      <title>8. References</title>
      <p>[1] Kumar V., Garg M. L. : Deep Learning Techniques and Their Applications: A Short Review.</p>
      <p>Biosc.Biotech.Res.Comm. 11(4) (2018).</p>
      <p>Here, 40 images are considered for testing where 10 images belong to each class. This matrix
shows 9 correct predictions of Gray leaf spot disease (Class 0), 10 correct predictions of Common
Rust disease (Class 1), 10 correct predictions of Blight disease (Class 2), and 10 correct predictions of
healthy leaves (Class 3). There are various models that are already given for the classification of corn
leaf diseases. Table 2 presents a comparison between different given models and the proposed model.
The proposed model performs well and achieves an accuracy of 97.60%.</p>
    </sec>
    <sec id="sec-8">
      <title>7. Conclusion</title>
      <p>Technique used</p>
      <p>Deep Forest</p>
      <p>Deep CNN
K-Mean Clustering and Deep Learning</p>
      <p>Convolutional neural network
CNN Based on Multi-Pathway Activation</p>
      <p>Function Module
Convolutional neural network
Accuracy (%)
96.25
88.46
93.00
87.00
97.41</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [2]
          <string-name>
            <surname>Deng</surname>
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yu</surname>
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Deep Learning: Methods and Applications in Fundamentals and</article-title>
          Trends in Signal Processing,
          <volume>7</volume>
          (
          <issue>3</issue>
          ),
          <fpage>197</fpage>
          -
          <lpage>387</lpage>
          (
          <year>2014</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [3]
          <string-name>
            <surname>Ding</surname>
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Qian</surname>
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhou</surname>
            <given-names>J</given-names>
          </string-name>
          . :
          <article-title>Activation functions and their characteristics in deep neural networks</article-title>
          .
          <source>Chinese Control and Decision Conference (CCDC)</source>
          .
          <year>1836</year>
          -
          <fpage>1841</fpage>
          (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [4]
          <string-name>
            <surname>Apicella</surname>
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Donnarumma</surname>
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Isgrò</surname>
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Prevete</surname>
            <given-names>R.:</given-names>
          </string-name>
          <article-title>A survey on modern trainable activation functions</article-title>
          .
          <source>Neural Networks. (138)</source>
          ,
          <fpage>14</fpage>
          -
          <lpage>32</lpage>
          (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>Jason</given-names>
            <surname>BB</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>A Gentle Introduction to the Rectified Linear Unit (ReLU). Machine Learning Mastery</article-title>
          . https://machinelearningmastery.com
          <article-title>/rectified-linear-activation-function-for-deeplearning-neural-networks/</article-title>
          , last accessed 09/04/
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [6]
          <string-name>
            <surname>Shrivastava</surname>
            <given-names>V. K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pradhan</surname>
            <given-names>M. K.</given-names>
          </string-name>
          :
          <article-title>Rice plant disease classification using color features: a machine learning paradigm</article-title>
          .
          <source>Journal of Plant Pathology</source>
          .
          <volume>103</volume>
          (
          <issue>1</issue>
          ),
          <fpage>17</fpage>
          -
          <lpage>26</lpage>
          (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [7]
          <string-name>
            <surname>Ji</surname>
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhang</surname>
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wu</surname>
            <given-names>Q.</given-names>
          </string-name>
          :
          <article-title>Automatic grape leaf diseases identification via united model based on multiple convolutional neural networks</article-title>
          .
          <source>Information Processing in Agriculture</source>
          ,
          <volume>7</volume>
          (
          <issue>3</issue>
          ),
          <fpage>418</fpage>
          -
          <lpage>426</lpage>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [8]
          <string-name>
            <surname>Arora</surname>
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Agrawal</surname>
            <given-names>U.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sharma</surname>
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Classification of Maize leaf diseases from healthy leaves using Deep Forest</article-title>
          .
          <source>Journal of Artificial Intelligence and Systems</source>
          ,
          <volume>2</volume>
          ,
          <fpage>14</fpage>
          -
          <lpage>26</lpage>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [9]
          <string-name>
            <surname>Mishra</surname>
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sachan</surname>
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rajpal</surname>
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Deep Convolutional Neural Network based Detection System for Real-time Corn Plant Disease Recognition</article-title>
          , Procedia Computer Science, (
          <volume>167</volume>
          ),
          <fpage>2003</fpage>
          -
          <lpage>2010</lpage>
          , ISSN 1877-
          <volume>0509</volume>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [10]
          <string-name>
            <surname>Yu</surname>
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liu</surname>
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chen</surname>
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Heidari</surname>
            <given-names>A. A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhang</surname>
            <given-names>Q.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chen</surname>
            <given-names>H.</given-names>
          </string-name>
          :
          <article-title>Corn Leaf Diseases Diagnosis Based on K-Means Clustering and Deep Learning</article-title>
          .
          <source>in IEEE Access, (9)</source>
          ,
          <fpage>143824</fpage>
          -
          <lpage>143835</lpage>
          (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [11]
          <string-name>
            <surname>Malliga</surname>
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nandhini</surname>
            <given-names>P. S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kogilavani</surname>
            <given-names>S. V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Harini</surname>
            <given-names>R.J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shree</surname>
            <given-names>S.J.</given-names>
          </string-name>
          , Jeeva G. :
          <article-title>Maize leaf disease classification using convolutional neural network</article-title>
          .
          <source>AIP Conference Proceedings</source>
          <volume>2387</volume>
          ,
          <issue>040001</issue>
          (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [12]
          <string-name>
            <surname>Alehegn</surname>
            <given-names>E.</given-names>
          </string-name>
          <year>2019</year>
          .
          <article-title>Ethiopian maize diseases recognition and classification using support vector machine</article-title>
          .
          <source>International Journal of Computational Vision and Robotics</source>
          ,
          <volume>9</volume>
          (
          <issue>1</issue>
          ):
          <fpage>90</fpage>
          -
          <lpage>109</lpage>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [13]
          <string-name>
            <surname>Vaishnnave</surname>
            <given-names>M. P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Devi</surname>
            <given-names>K. S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Srinivasan</surname>
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jothi</surname>
            <given-names>G. A. P.</given-names>
          </string-name>
          :
          <article-title>Detection and classification of groundnut leaf diseases using KNN classifier</article-title>
          .
          <source>Proceedings of the IEEE International Conference on System, Computation, Automation and Networking (ICSCAN)</source>
          . pp.
          <fpage>1</fpage>
          -
          <lpage>5</lpage>
          , Pondicherry, India (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [14]
          <string-name>
            <surname>Gupta</surname>
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Arora</surname>
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Agrawal</surname>
            <given-names>U.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Khanna</surname>
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Albuquerque</surname>
            <given-names>H. C. V.</given-names>
          </string-name>
          <string-name>
            <surname>Optimized Binary</surname>
          </string-name>
          <article-title>Bat algorithm for classification of white blood cells</article-title>
          ,
          <source>Measurement. (143)</source>
          ,
          <fpage>180</fpage>
          -
          <lpage>190</lpage>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [15]
          <string-name>
            <surname>Arora</surname>
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Agrawal</surname>
            <given-names>U.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tiwari</surname>
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gupta</surname>
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Khanna</surname>
            <given-names>A</given-names>
          </string-name>
          .
          <article-title>Ensemble Feature Selection Method based on recently developed Nature-inspired algorithms</article-title>
          ,
          <source>Proceedings of ICICC</source>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [16]
          <string-name>
            <surname>Shankar</surname>
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Prabu</surname>
            <given-names>S.K. L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gupta</surname>
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Maseleno</surname>
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Albuquerque</surname>
            <given-names>H. C. V.</given-names>
          </string-name>
          :
          <article-title>Optimal featuresbased multi kernel SVM approach for thyroid disease classification</article-title>
          ,
          <source>Journal of Supercomputing</source>
          (Springer), (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [17]
          <string-name>
            <surname>Golhani</surname>
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Siva</surname>
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ganesan</surname>
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Biswajeet</surname>
            <given-names>P. :</given-names>
          </string-name>
          <article-title>A Review of Neural Networks in Plant Disease Detection using hyper-spectral data</article-title>
          .
          <source>Information Processing in Agriculture. Goodfellow I</source>
          ,
          <string-name>
            <surname>Bengio</surname>
            <given-names>Y.</given-names>
          </string-name>
          , Courville..
          <source>Deep Learning</source>
          . MIT Press, Online (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [18]
          <string-name>
            <surname>Mohanty</surname>
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>David</surname>
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Marcel</surname>
            <given-names>S. :</given-names>
          </string-name>
          <article-title>Using Deep Learning for Image-Based Plant Disease Detection</article-title>
          . Frontiers in Plant Science (
          <year>2016</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [19]
          <string-name>
            <surname>Khirade</surname>
            <given-names>S. D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Patil</surname>
            <given-names>A. B. : Plant</given-names>
          </string-name>
          <string-name>
            <surname>Disease Detection Using Image Processing</surname>
          </string-name>
          ,
          <source>2015 International Conference on Computing Communication Control and Automation</source>
          , pp.
          <fpage>768</fpage>
          -
          <lpage>771</lpage>
          .
          <string-name>
            <surname>Pune</surname>
          </string-name>
          (
          <year>2015</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [20]
          <string-name>
            <surname>Pandian</surname>
            <given-names>J. A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Geetharamani</surname>
            <given-names>G.</given-names>
          </string-name>
          :
          <article-title>Data for: Identification of Plant Leaf Diseases Using a 9-layer Deep Convolutional Neural Network, Mendeley Data</article-title>
          ,
          <source>V1</source>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [21]
          <string-name>
            <surname>Sammut</surname>
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Webb</surname>
            <given-names>G. I.</given-names>
          </string-name>
          :
          <article-title>Encyclopedia of machine learning:</article-title>
          <source>Springer Science &amp; Business Media</source>
          (
          <year>2011</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [22]
          <string-name>
            <surname>Zhang</surname>
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wa</surname>
            <given-names>S.</given-names>
          </string-name>
          , Liu,
          <string-name>
            <given-names>Y.</given-names>
            ,
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            ,
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            ,
            <surname>Ma</surname>
          </string-name>
          ,
          <string-name>
            <surname>Q.</surname>
          </string-name>
          :
          <article-title>High-Accuracy Detection of Maize Leaf Diseases CNN Based on Multi-Pathway Activation Function Module</article-title>
          .
          <source>Remote Sens</source>
          .
          <volume>13</volume>
          ,
          <issue>4218</issue>
          (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>