<!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>Bird Sound Classification using Convolutional Neural Networks</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Chih-Yuan Koh</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Jaw-Yuan Chang</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Chiang-Lin Tai</string-name>
          <email>taijohnny38@gapp.nthu.edu.tw</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Da-Yo Huang</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Han-Hsing Hsieh</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yi-Wen Liu</string-name>
          <email>ywliu@ee.nthu.edu.tw</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>National Chiao Tung University</institution>
          ,
          <addr-line>Hsinchu 30010</addr-line>
          ,
          <country country="TW">Taiwan</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>National Tsing Hua University</institution>
          ,
          <addr-line>Hsinchu 30013</addr-line>
          ,
          <country country="TW">Taiwan</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Accurate prediction of bird species from audio recordings is beneficial to bird conservation. Thanks to the rapid advance in deep learning, the accuracy of bird species identification from audio recordings has greatly improved in recent years. This year, the BirdCLEF2019[4] task invited participants to design a system that could recognize 659 bird species from 50,000 audio recordings. The challenges in this competition included memory management, the number of bird species for the machine to recognize, and the mismatch in signal-to-noise ratio between the training and the testing sets. To participate in this competition, we adopted two recently popular convolutional neural network architectures - the ResNet[1] and the inception model[13]. The inception model achieved 0.16 classification mean average precision (c-mAP) and ranked the second place among five teams that successfully submitted their predictions.</p>
      </abstract>
      <kwd-group>
        <kwd>Deep Learning</kwd>
        <kwd>Inception-v3</kwd>
        <kwd>Bird sound recognition</kwd>
        <kwd>BirdCLEF2019 Source code of this project</kwd>
        <kwd>https</kwd>
        <kwd>//github</kwd>
        <kwd>com/jimmy133719/BirdCLEF2019</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Public consciousness about environmental conservation and sustainable
development has awakened in recent years. Demands for automatic bird call classification
have also been rising owing to the key role of birds in the ecosystem. Compared
to video-based monitoring, sounds have the advantage of propagation to a long
distance without being occluded by objects in between the emitting source (a
bird in this case) and the recording devices. Therefore, a robust system to
identify bird vocalization may become useful for monitoring species diversity at a
fixed location as well as detecting bird migration along a route. Realizing the
importance of this task, a competition called BirdCLEF has been hosted every
year by the LifeCLEF lab[
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] since 2014. The goal of the competition is to
identify bird species in audio recordings. In the competition this year, participants
needed to detect bird calls in every 5 seconds of the soundscape recordings from
the Xeno-Canto database3 and identify the species if bird calls are present.
      </p>
      <p>
        Previous attempts to use machine learning approaches for bird call
identification include decision trees, convolutional neural networks (CNN), and recurrent
neural networks (RNN). For instance, randomized decision trees were applied [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]
and the input consists of features derived from statistics of the spectrograms.
By ranking the feature importance returned from the decision trees, one can find
relevant segments to identify each sound class. Due to the computation load in
deriving the statistics from spectrograms, the decision-tree technique might not
be most suitable for the current BirdCLEF challenge; its ability to handle more
than 600 species remains a concern, too. The RNN-based model was adopted
in last year’s BirdCLEF challenge. In particular, the bidirectional long
shortterm memory (LSTM) architecture was applied [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. It made use of sequential
information in bird calls audio. However, because of the gradient vanishing and
explosion problems associated with the sigmoid gate function, the model is
difficult to reach convergence. Besides, due to the nature of RNN, preprocessing and
augmentation are difficult to implement. Therefore, it seems that CNN-based
models become the most common approach in bird call recognition. In general,
the spectrogram of bird sound audio is regarded as the input and the model
would treat the bird-call identification task as an image classification problem.
This is intuitive, because features of bird calls unique to each species, such as
the pitch and the timbre, can be observed in the spectrograms by experienced
human eyes.
      </p>
      <p>To participate in BirdCLEF 2019, we thus decided to apply two modern
CNN-based models, ResNet and Inception. The rest of this paper is organized as
follows. In Section 2, we briefly review the background of ResNet and Inception.
More details concerning model implementation and training are described in
Section 3. Experiments and results are described and analyzed in Section 4. In
retrospect, Section 5 points out several flaws of our attempts, and conclusions
and future directions are given in Section 6.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Background</title>
      <p>In this section, we briefly review the spirits underpinning Inception and ResNet.</p>
      <sec id="sec-2-1">
        <title>3 https://www.xeno-canto.org/</title>
        <p>
          (a) the inception module
(b) the residual block
Titled “Going Deeper with Convolutions”, the GoogleNet[
          <xref ref-type="bibr" rid="ref12">12</xref>
          ] presented a brand
new neural network structure which, rather than blindly stacking convolution
layers, emphasized on reducing the sparsity of the feature map. It replaced a
general convolution layer by what is called the inception module; that is, instead of
using a large-sized kernel in the convolution layer for feature extraction, smaller
kernels were constructed in parallel. The concept is depicted in Fig. 1a.
Titled “Deep Residual Learning for Image Recognition”[
          <xref ref-type="bibr" rid="ref1">1</xref>
          ], the ResNet mainly
addressed the issue of model degradation. Because of the nonlinear activation
function, the back-propagation gradients might vanish, which degrades the
performance of deep CNNs. Hence, a highway pass between the upper and the lower
layers was introduced and the result is known as the residual block. It can be
expressed in the following general form,
yi = h(xi) + F (xi; Wi);
(1)
where xi and yi are the input and the output of the ith block, and F denotes
a flexible residual function which is parameterized by the weight array Wi. A
common practice is to set h(xi) as the identity mapping and use the rectified
linear unit (ReLU) between the weight function inside F , and Fig. 1b illustrates
the main idea of ResNet.
3
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Methods</title>
      <p>This section describes details concerning the data processing and how the models
were trained and tested.
3.1</p>
      <sec id="sec-3-1">
        <title>Preprocessing</title>
        <p>
          Spectrogram extraction Our strategy for the task was to treat bird sound
classification as image classification; hence we need to visualize bird sounds.
A commonly used technique is the MEL-scale[
          <xref ref-type="bibr" rid="ref11">11</xref>
          ] log-amplitude spectrogram,
a kind of time-frequency representation that takes human auditory sensitivity
with respect to frequency into consideration. Since the occurrence of bird calls
could be sparse, we chopped the signal into 1-second chunks instead of extracting
a spectrogram for the entire 5-second recording. A band-pass filter with cut-off
frequencies of 500Hz and 15kHz was applied, since most bird species vocalize
within this frequency range.
.
        </p>
        <p>
          Parameters for computing the spectrograms are shown in Table 1. Note that
the hop length was determined so that each clip of one second contains exactly
255 frames. With this specification, each a Mel-scale log amplitude spectrogram
has a size of 128 256. To decide whether each second contains bird calls, we
applied a simple signal-to-noise ratio (SNR) threshold based on the methods
described by BirdCLEF participants in previous years[
          <xref ref-type="bibr" rid="ref10 ref5">5,10</xref>
          ]. Fig. 2 shows a few
examples of spectrograms with different SNRs. By inspection, a spectorgram
with a higher SNR indeed contains clearer traces that indicate the presence
of a bird call. In contrast, a spectrogram with a low SNR may only contain
background noise. Based on the SNR, we could set a threshold to include only
the spectrograms with a sufficiently high SNR as samples for training the neural
networks.
        </p>
        <p>Fig. 2: Extracted spectrograms with different SNR</p>
        <p>Data Augmentation We found class imbalance due to two reasons; first, the
SNR in some classes (i.e., bird species) is low. Secondly, some classes simply have
few recordings in the database. Hence, we randomly applied several
augmentation methods (Table 2) to the spectrograms of those classes with insufficient
training samples. By inspection, the spectrograms of soundscape recordings in
the validation set all seem to contain noise. Therefore, in two of our
submissions, we added Gaussian noise to all of spectrograms, and fed both the orginal
spectrograms and those with Gaussian noise to the neural-network models.
Normalization In two of our submissions, normalization was applied. The
mean and the variance for transformation was calculated from the entire training
dataset.</p>
        <p>Output format By observing the training data, we find out that bird
vocalization could be quite sporadic. Also, in the validation data, audibly different bird
calls rarely occur at the same time. Hence, we determined to decode the output
of the neural network into a one-hot vector.
3.2</p>
      </sec>
      <sec id="sec-3-2">
        <title>Network architecture and configuration</title>
        <p>
          ResNet In one attempt, we adopted the ResNet-18[
          <xref ref-type="bibr" rid="ref1">1</xref>
          ] classifier for bird-call
identification. The optimizer was stochastic gradient descent (SGD) with
momentum and the batch size was set to 64. Weight initialization was applied,
which sampled from normal distribution N (0; 0:02) for convolution layers and
N (1; 0:02) for batch normalization2d layers. the number of channels in ResNet
has been reduced to 1 (because spectrograms do not have RGB colors); as the
number of input features decreased, the model complexity can also be lowered
so as to increase the training efficiency within a limited amount of time.
Inception model On the basis of Inception v3[
          <xref ref-type="bibr" rid="ref13">13</xref>
          ], we substituted two
connected convolution layers with kernel size (1; 7) and (7; 1) for the convolution
layer with kernel size (7; 7). Meanwhile, an additional activation function has
been added between the two small convolution layers. The optimizer was changed
to Adam and the batch size was set to 64. The same weight initialization that
was applied to ResNet has also been applied here. The number of channels was
decreased before the data flows into Inception module 5c. Other details about
modification of the Inception model can be found in our github contribution.4.
4
        </p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Results</title>
      <sec id="sec-4-1">
        <title>4 https://github.com/jimmy133719/BirdCLEF2019</title>
        <p>cmAP =</p>
        <p>PC
c=1 AveP(c)</p>
        <p>C</p>
        <p>;
AveP(c) =</p>
        <p>Pn
k=1 P (k)
nrel(c)
rel(k)
:
(2)
(3)
In Eq. (3), C denotes the number of species in the ground truth, and AveP(c)
is the average precision for a given species c, which is defined in Eq. (4) — k
denotes the rank of an item in the list of the predicted segments containing c, n
denotes the total number of predicted segments containing c, P (k) denotes the
precision at cut-off k in the list, rel(k) is an indicator function that equals 1 if
the segment at rank k is labeled as containing c in the ground truth (and zero
otherwise), and nrel is the total number of relevant segments for c.</p>
        <p>Due to the comparatively better performance of the inception model, we
adopted it in all of our submissions. Table 4 shows the official evaluation of each
run. In the first two runs, Gaussian noise was not added to the whole
spectrograms. The only difference between them was in the threshold of SNR with 0:005
and 0:001, respectively. In the third and forth runs, we added Gaussian noise
to all spectrograms and normalized all of the spectrograms before training. The
difference between them was the epochs we chose. The official results surprised
us since the first two runs actually performed better when evaluated in the
validation set. Otherwise, compared to other teams, our rmAP peculiarly was not
much higher than cmAP. This is not surprising, probably because we assigned
five classes to most of the five-second segments that contains bird sound, which
increases the denominator in the equation of rmAP.
5</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>Discussion</title>
      <p>The audio in the testing set contains various kinds of environmental noise (such
as the sounds of insects), but we ran out of time in designing a generalized
method to deal with it. The noise results in difficulties to extract the correct
feature from spectrograms. The SNR threshold we applied to determine the bird
calls’ presence also has some concerns, since we might have included a
spectrogram with intense noise instead of targets, and those spectrograms contain only
noise would be treated as training data. In data augmentation, though most of
the means in Table 2 could be useful in image processing, but in retrospect they
are not always suitable to spectrograms. In particular, the two axes of
spectrogram have different meanings (time vs. frequency), so a similiar shape occuring
at different locations may correspond to features that are unique to different bird
species. Hence, augmentation such as rotation might actually have been harmful
during the training stage.</p>
      <p>
        We deduce a simple reason why Inception-v3[
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] outperformed ResNet[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]
could be because of the number of parameters. The more parameters a model
has, the more accurately the model can representation the mapping between the
input and the output. In our experiment, the parameter size of ResNet-18 is
9.12 MB, the parameter size of ResNet-34 is 10.41 MB, and the parameter size
of Inception-v3 is 92.3 MB.
6
      </p>
    </sec>
    <sec id="sec-6">
      <title>Conclusion and Future work</title>
      <p>Our work is based on the baseline of BirdCLEF last year. The main difference
is that we change the model to Inception-v3. Future work will focus on
improving the preprocessing. We need to enhance clear bird sound features on the
spectrograms of soundscape recordings so that it can be similar to the
training set. In the current approach, we added Gaussian white noise as a mean of
data augmentation. We would like to change it to the noise from the
recording environments. Moreover, since the current preprocessing mainly focuses on
the magnitude spectrogram, it might beneficial to learn additionally
information from the phase spectrogram, especially when multiple recording channels
are available.</p>
      <p>
        On the part of model, due to the shift-invariance and the parameter-sharing
property, CNN may be in trouble distinguishing spectrograms that contain
features of similar shapes but occuring in different frequencies. A possible way to
mend this would be tiled convolution. Although it is still a CNN model, a tiled
convolution model [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] has locally confined receptive field; that is, the parameter
sharing of tiled convolution is not global. Employing attention mechanisms can
also be recommended, since not all the neurons would end up equally important
as the signal comes out from a specific range of frequency [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. Yet another neural
architecture, the SENet[
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], is worth trying because the resolution of
spectrograms can be increased in order to preserve more details.
7
      </p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgement</title>
      <p>This research is supported by Airoha Technology Corp. We are also grateful to
LifeCLEF2019 team for holding this challenge.</p>
    </sec>
    <sec id="sec-8">
      <title>Hyperparameter sheet and the corresponding validation results</title>
      <p>
        model
Resnet-18[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]
Resnet-18[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]
Resnet-18[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]
Resnet-34[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]
Resnet-34[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]
Resnet-34[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]
      </p>
      <p>
        Resnet-34[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]
Inception-v3[
        <xref ref-type="bibr" rid="ref13">13</xref>
        ]
cmAP
rmAP
      </p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>He</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhang</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ren</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sun</surname>
          </string-name>
          , J.:
          <article-title>Deep residual learning for image recognition</article-title>
          .
          <source>In: Proc. IEEE Conf. Computer Vision and Pattern Recognition</source>
          . pp.
          <fpage>770</fpage>
          -
          <lpage>778</lpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Hu</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shen</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sun</surname>
          </string-name>
          , G.:
          <article-title>Squeeze-and-excitation networks</article-title>
          .
          <source>In: Proc. IEEE Conf. Computer Vision and Pattern Recognition</source>
          . pp.
          <fpage>7132</fpage>
          -
          <lpage>7141</lpage>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Joly</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Goëau</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Botella</surname>
            ,
            <given-names>Christophe</given-names>
          </string-name>
          <string-name>
            <surname>Kahl</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Servajean</surname>
            , Maximillien Glotin,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bonnet</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vellinga</surname>
            ,
            <given-names>W.P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Planqué</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stöter</surname>
            ,
            <given-names>F.R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Müller</surname>
          </string-name>
          , H.:
          <article-title>Overview of lifeclef 2019: Identification of amazonian plants, south &amp; north american birds, and niche prediction</article-title>
          .
          <source>In: Proceedings of CLEF</source>
          <year>2019</year>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Kahl</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stöter</surname>
            ,
            <given-names>F.R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Glotin</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Planque</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vellinga</surname>
            ,
            <given-names>W.P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Joly</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Overview of birdclef 2019: Large-scale bird recognition in soundscapes</article-title>
          .
          <source>In: CLEF working notes 2019</source>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Kahl</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wilhelm-Stein</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hussein</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Klinck</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kowerko</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ritter</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Eibl</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Large-scale bird sound classification using convolutional neural networks</article-title>
          .
          <source>In: CLEF (Working Notes)</source>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Lasseck</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Bird song classification in field recordings: winning solution for NIPS4B 2013 competition</article-title>
          . In
          <source>: Proc. Int. Symp. Neural Information Scaled for Bioacoustics</source>
          , sabiod.org/nips4b, joint to NIPS, Nevada. pp.
          <fpage>176</fpage>
          -
          <lpage>181</lpage>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Liao</surname>
            ,
            <given-names>H.W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Huang</surname>
            ,
            <given-names>J.Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lan</surname>
            ,
            <given-names>S.S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lee</surname>
            ,
            <given-names>T.H.</given-names>
          </string-name>
          , Liu,
          <string-name>
            <given-names>Y.W.</given-names>
            ,
            <surname>Bai</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.R.</surname>
          </string-name>
          :
          <article-title>Sound event classification by a deep neural network with attention and minimum variance distortionless response enhancement</article-title>
          .
          <source>In: IEEE DCASE Challenge Technical Reports</source>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Müller</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Marti</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Bird sound classification using a bidirectional LSTM</article-title>
          .
          <source>In: Working Notes of CLEF</source>
          <year>2018</year>
          (
          <article-title>Cross Language Evaluation Forum) (</article-title>
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Ngiam</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chia</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Koh</surname>
            ,
            <given-names>P.W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Le</surname>
            ,
            <given-names>Q.V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ng</surname>
            ,
            <given-names>A.Y.</given-names>
          </string-name>
          :
          <article-title>Tiled convolutional neural networks</article-title>
          .
          <source>In: Advances in Neural Information Processing Systems</source>
          . pp.
          <fpage>1279</fpage>
          -
          <lpage>1287</lpage>
          (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Sprengel</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jaggi</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kilcher</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hofmann</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Audio based bird species identification using deep learning techniques</article-title>
          .
          <source>LifeCLEF</source>
          <year>2016</year>
          pp.
          <fpage>547</fpage>
          -
          <lpage>559</lpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Stevens</surname>
            ,
            <given-names>S.S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Volkmann</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Newman</surname>
            ,
            <given-names>E.B.</given-names>
          </string-name>
          :
          <article-title>A scale for the measurement of the psychological magnitude pitch</article-title>
          .
          <source>J. Acoust. Soc. Am</source>
          .
          <volume>8</volume>
          (
          <issue>3</issue>
          ),
          <fpage>185</fpage>
          -
          <lpage>190</lpage>
          (
          <year>1937</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Szegedy</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jia</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sermanet</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Reed</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Anguelov</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Erhan</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vanhoucke</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rabinovich</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Going deeper with convolutions</article-title>
          .
          <source>In: Proc. IEEE Conf. Computer Vision and Pattern Recognition</source>
          . pp.
          <fpage>1</fpage>
          -
          <lpage>9</lpage>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Szegedy</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vanhoucke</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ioffe</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shlens</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wojna</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          :
          <article-title>Rethinking the inception architecture for computer vision</article-title>
          .
          <source>In: Proc. IEEE Conf. Computer Vision and Pattern Recognition</source>
          . pp.
          <fpage>2818</fpage>
          -
          <lpage>2826</lpage>
          (
          <year>2016</year>
          )
          <article-title>The momentum of optimizer SGD is set to 0.9. The 1 and 2 for optimizer Adam are set to 0.9 and 0</article-title>
          .999, respectively.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>