<!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>Music theme recognition using CNN and self-atention</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Manoj Sukhavasi</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Sainath Adapa manoj.sukhavasi</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>@gmail.com</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>adapasainath@gmail.com</string-name>
        </contrib>
      </contrib-group>
      <pub-date>
        <year>2019</year>
      </pub-date>
      <fpage>27</fpage>
      <lpage>29</lpage>
      <abstract>
        <p>We present an eficient architecture to detect mood/themes in music tracks on autotagging-moodtheme subset of the MTG-Jamendo dataset. Our approach consists of two blocks, a CNN block based on MobileNetV2 architecture and a self-attention block from Transformer architecture to capture long term temporal characteristics. We show that our proposed model produces a significant improvement over the baseline model. Our model (team name: AMLAG) achieves 4th place on PR-AUC-macro Leaderboard in MediaEval 2019: Emotion and Theme Recognition in Music Using Jamendo.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>INTRODUCTION</title>
      <p>
        Automatic music tagging is a multi-label classification task to
predict the music tags corresponding to the audio contents. Tagging
music with themes (action, documentary) and mood (sad, upbeat)
can be useful in music discovery and recommendation. MediaEval
2019: Emotion and Theme Recognition in Music Using
Jamendo aims to improve the machine learning algorithms to
automatically recognize the emotions and themes conveyed in a
music recording [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. This task involves the prediction of moods and
themes conveyed by a music track, given the raw audio on the
autotagging-moodtheme subset of the MTG-Jamendo dataset [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
The overview paper [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] describes the task in more detail, and also
introduces us to a baseline solution based on VGG-ish features. In
this paper, we describe our Fourth place submission on
PR-AUCmacro Leaderboard 1 which improves the results significantly on
the baseline solution.
      </p>
    </sec>
    <sec id="sec-2">
      <title>RELATED WORK</title>
      <p>
        Conventionally feature extraction from audio relied on signal
processing to compute relevant features from time or frequency domain
representation. As an alternative to these solutions, architectures
based on Convolutional Neural Networks(CNN) [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] have become
more popular recently following their success in CV, speech
processing. Extensions to CNNs have also been proposed to capture
the long term temporal information in the form of CRNN [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ].
Recently [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ] has shown that self-attention applied to music tagging
captures temporal information. This architecture was based on the
transformer architecture which was very successful in Natural
Language Processing (NLP)[
        <xref ref-type="bibr" rid="ref19">19</xref>
        ]. In this paper, we propose two methods
MobileNetV2 and MobileNetV2 with self-attention which are based
mainly on these two previous works [
        <xref ref-type="bibr" rid="ref1 ref20">1, 20</xref>
        ].
1https://multimediaeval.github.io/2019-Emotion-and-Theme-Recognition-in-Music-Task/
results
      </p>
    </sec>
    <sec id="sec-3">
      <title>APPROACH</title>
      <p>We used the pre-computed Mel-spectrograms made available by
the organizers of the challenge2. No additional pre-processing steps
were undertaken other than the normalization of the input
Melspectrogram features.</p>
      <p>
        As image-based data augmentation techniques have been shown
to be efective in audio tagging [
        <xref ref-type="bibr" rid="ref1 ref2">1, 2</xref>
        ], we used transformations such
as Random crop and Random Scale. Additionally, we also employed
SpecAugment and Mixup. SpecAugment[
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] proposed initially for
speech recognition, masks blocks of frequency channels or time
steps of a log Mel-spectrogram. Mixup [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ] samples two training
examples randomly and linearly mixes them (both the feature space
and the labels).
      </p>
      <p>We propose two methods: MobilenetV2 architecture, and
MobileNetV2 architecture combined with a self-attention block to
capture long term temporal characteristics. We describe both of
these methods in detail below.
3.1</p>
    </sec>
    <sec id="sec-4">
      <title>MobileNetV2</title>
      <p>
        It has been shown previously that using pre-trained ImageNet
models helps in the case of audio tagging [
        <xref ref-type="bibr" rid="ref1 ref13">1, 13</xref>
        ]. Hence, we employed
MobileNetV2 [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] for the current task. Since Mel-spectrograms are
single channel, the input data is transformed into a three-channel
tensor by passing it through two convolution layers. This tensor
is then sent to the MobileNetV2 unit. As the number of labels is
diferent here, the linear layer at the very end is replaced. No other
modifications were performed to the original MobileNetV2
architecture.
3.2
      </p>
    </sec>
    <sec id="sec-5">
      <title>MobileNetV2 with Self-attention</title>
      <p>
        The architecture described in sub-section 3.1 might not be able to
capture the long-term temporal characteristics. The dataset
consists of tracks with varying lengths with a majority longer than
200s. Self-attention has been shown to capture long-range
temporal characteristics in the context of music tagging [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ]. Hence
self-attention mechanism can be helpful in the current task. In this
section, we describe our extended MobileNetV2 architecture with
self-attention.
      </p>
      <p>
        The architecture consists of 2 main blocks: modified MobileNetV2
(identical to the architecture described in [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]) to capture freq-time
characteristics, and the self-attention block to capture long term
temporal characteristics.
      </p>
      <p>
        Similar to the transformer model [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ], multi-head self-attention
with positional encoding was implemented for the current
architecture. Since our task consists only of classification we use only
the encoder part of it similar to BERT [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]. Our implementation
is based on the architecture described in [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ]. We use 4 attention
heads and 2 attention layers. The input sequence length is 16 and
has embedding size of 256.
2https://github.com/MTG/mtg-jamendo-dataset
The control flow within this architecture is as follows:
• Input is a Mel-spectrogram tensor of length 4096 (number
of bands being 96). This input is divided length-wise into
16 segments, with each segment’s length being 256.
• Each of the 16 slices is sent through the modified
MobileNetV2 block to extract the features.
• The feature maps are then fed into the Self-attention block.
      </p>
      <p>At the end of this block, two dense layers are put to use to
generate the predictions.
• Additionally, the feature maps from the MobileNetV2 block
are also used to generate predictions. With each segment,
we have a set of predictions. All the sixteen predictions are
averaged to obtain the final prediction.</p>
      <p>As described above, the architecture generates two predictions:
one solely using the MobileNetV2, and the other using the
MobileNetV2 and the Self-attention blocks. While training, combined
loss from both the predictions are used for back-propagation.
4</p>
    </sec>
    <sec id="sec-6">
      <title>TRAINING AND RESULTS</title>
      <p>
        We made two submissions under the team name AMLAG3, one
each using the two architectures described in sections 3.1 and 3.2.
Both the submissions employ the same Mel-spectrogram inputs
and Binary Cross-entropy loss as the optimization metric. PyTorch
[
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] was used for training the model in both cases.
      </p>
      <p>
        For submission 1, the AMSGrad variant of the Adam algorithm
[
        <xref ref-type="bibr" rid="ref12 ref16">12, 16</xref>
        ] with a learning rate of 1e-3 was utilized for optimization.
Whenever the overall loss on the validation set stopped improving
for five epochs, the learning rate was reduced by a factor of 10. For
this training we use input Mel-spectrogram of length 6590, padding
is used to make all the inputs of constant length. We observed that
not all classes benefited from being trained together (see Figure 1).
Hence, following the approach taken in [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ], early stopping was done
separately for each class based on the loss value for that particular
class. Additionally, an attempt was made to find subsets of classes
that train well together, but ultimately the overall performance had
been lower than when all the classes were jointly trained. This is
one avenue for future research with this dataset.
      </p>
      <p>
        To prepare submission 2, we use input Mel-spectrogram of length
4096, padding is used to make all the inputs of constant length. We
train the model for 120 epochs while utilizing Adam as the initial
optimizer. We then employ an optimization technique proposed in
[
        <xref ref-type="bibr" rid="ref10 ref20">10, 20</xref>
        ]: the optimizer is switched from Adam to Stochastic gradient
descent (with Nesterov momentum [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ]) after 60 epochs for better
generalization of the model. Early stopping was done jointly for all
classes based on the macro-averaged AUC-ROC on the validation
set.
      </p>
      <p>We present the results for both the submissions in Table 1. Also,
results from the baseline approach that uses VGG-ish architecture
are shown for comparison purposes. In all the metrics, the
MobileNetV2 with a self-attention block exhibits an improvement over
solely using the MobileNetV2. With respect to the baseline model,
submission 2 proved to be an improvement over all but the
microaveraged F-score and Precision metrics. On the task leaderboard,
our model achieved 4th position in case of PR-AUC-macro, and 5th
position in case of F-score-macro.
3https://github.com/sainathadapa/mediaeval-2019-moodtheme-detection
M. Sukhavasi, S. Adapa
PR-AUC-macro
ROC-AUC-macro
F-score-macro
precision-macro
recall-macro
PR-AUC-micro
ROC-AUC-micro
F-score-micro
precision-micro
recall-micro</p>
      <p>
        Baseline
(vggish)
• A dense layer architecture that uses OpenL3 embeddings
[
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]
• A dense layer architecture that uses the pre-computed
statistical features from Essentia using the feature extractor
for AcousticBrainz. This data was made available by the
organizers, along with the raw audio and Mel-spectrogram
data.
• CNN architecture that directly uses the raw audio
representation, as described in [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ]
• Similar to using the MobileNetV2 in Section 3.1, we tested
another ImageNet pre-trained architecture - ResNeXt model
[
        <xref ref-type="bibr" rid="ref21">21</xref>
        ].
      </p>
      <p>Emotion and Theme recognition in music using Jamendo</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>Sainath</given-names>
            <surname>Adapa</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Urban Sound Tagging using Convolutional Neural Networks</article-title>
          . (
          <year>2019</year>
          ).
          <article-title>arXiv:cs</article-title>
          .SD/
          <year>1909</year>
          .12699
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>Ruslan</given-names>
            <surname>Baikulov</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Argus solution Freesound Audio Tagging</article-title>
          <year>2019</year>
          . (
          <year>2019</year>
          ). https://github.com/lRomul/argus-freesound Accessed:
          <fpage>2019</fpage>
          -10-01.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Dmitry</given-names>
            <surname>Bogdanov</surname>
          </string-name>
          , Alastair Porter,
          <string-name>
            <given-names>Philip</given-names>
            <surname>Tovstogan</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Minz</given-names>
            <surname>Won</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>MediaEval 2019: Emotion and Theme Recognition in Music Using Jamendo</article-title>
          .
          <source>In 2019 Working Notes Proceedings of the MediaEval Workshop</source>
          , MediaEval
          <year>2019</year>
          .
          <article-title>1-3</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Dmitry</given-names>
            <surname>Bogdanov</surname>
          </string-name>
          , Minz Won, Philip Tovstogan,
          <string-name>
            <given-names>Alastair</given-names>
            <surname>Porter</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Xavier</given-names>
            <surname>Serra</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>The MTG-Jamendo Dataset for Automatic Music Tagging</article-title>
          .
          <source>In Machine Learning for Music Discovery Workshop, International Conference on Machine Learning (ICML</source>
          <year>2019</year>
          ). Long Beach, CA, United States. http://hdl.handle.
          <source>net/10230/42015</source>
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>Rich</given-names>
            <surname>Caruana</surname>
          </string-name>
          .
          <year>1998</year>
          .
          <article-title>A dozen tricks with multitask learning</article-title>
          .
          <source>In Neural networks: tricks of the trade. Springer</source>
          ,
          <fpage>165</fpage>
          -
          <lpage>191</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>Keunwoo</given-names>
            <surname>Choi</surname>
          </string-name>
          , George Fazekas, and
          <string-name>
            <given-names>Mark</given-names>
            <surname>Sandler</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Automatic tagging using deep convolutional neural networks</article-title>
          .
          <source>arXiv eprints, Article arXiv:1606.00298 (Jun</source>
          <year>2016</year>
          ), arXiv:
          <fpage>1606</fpage>
          .00298 pages.
          <source>arXiv:cs.SD/1606.00298</source>
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Keunwoo</given-names>
            <surname>Choi</surname>
          </string-name>
          , György Fazekas,
          <string-name>
            <given-names>Mark B.</given-names>
            <surname>Sandler</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Kyunghyun</given-names>
            <surname>Cho</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Convolutional Recurrent Neural Networks for Music Classification</article-title>
          .
          <source>CoRR abs/1609</source>
          .04243 (
          <year>2016</year>
          ). arXiv:
          <volume>1609</volume>
          .04243 http: //arxiv.org/abs/1609.04243
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>Jason</given-names>
            <surname>Cramer</surname>
          </string-name>
          ,
          <string-name>
            <surname>Ho-Hsiang</surname>
            <given-names>Wu</given-names>
          </string-name>
          , Justin Salamon, and Juan Pablo Bello.
          <year>2019</year>
          . Look, Listen, and Learn More:
          <article-title>Design Choices for Deep Audio Embeddings</article-title>
          .
          <source>In ICASSP 2019-2019 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)</source>
          . IEEE,
          <fpage>3852</fpage>
          -
          <lpage>3856</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>Jacob</given-names>
            <surname>Devlin</surname>
          </string-name>
          ,
          <string-name>
            <surname>Ming-Wei</surname>
            <given-names>Chang</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Kenton</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>and Kristina</given-names>
            <surname>Toutanova</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding</article-title>
          . arXiv e-prints, Article arXiv:
          <year>1810</year>
          .
          <volume>04805</volume>
          (Oct
          <year>2018</year>
          ), arXiv:
          <year>1810</year>
          .04805 pages.
          <article-title>arXiv:cs</article-title>
          .CL/
          <year>1810</year>
          .04805
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>Nitish</given-names>
            <surname>Shirish</surname>
          </string-name>
          Keskar and Richard Socher.
          <year>2017</year>
          .
          <article-title>Improving Generalization Performance by Switching from Adam to SGD</article-title>
          .
          <source>CoRR abs/1712</source>
          .07628 (
          <year>2017</year>
          ). arXiv:
          <volume>1712</volume>
          .07628 http://arxiv.org/abs/1712. 07628
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <surname>Taejun</surname>
            <given-names>Kim</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Jongpil</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>and Juhan</given-names>
            <surname>Nam</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Comparison and Analysis of SampleCNN Architectures for Audio Classification</article-title>
          .
          <source>IEEE Journal of Selected Topics in Signal Processing 13</source>
          ,
          <issue>2</issue>
          (
          <year>2019</year>
          ),
          <fpage>285</fpage>
          -
          <lpage>297</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <surname>Diederik</surname>
            <given-names>P</given-names>
          </string-name>
          <string-name>
            <surname>Kingma and Jimmy Ba</surname>
          </string-name>
          .
          <year>2014</year>
          .
          <article-title>Adam: A method for stochastic optimization</article-title>
          .
          <source>arXiv preprint arXiv:1412.6980</source>
          (
          <year>2014</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>Mario</given-names>
            <surname>Lasseck</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>Acoustic Bird Detection With Deep Convolutional Neural Networks</article-title>
          .
          <source>In Proceedings of the Detection and Classification of Acoustic Scenes and Events 2018 Workshop</source>
          . Tampere University of Technology.
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <surname>Daniel S Park</surname>
            ,
            <given-names>William</given-names>
          </string-name>
          <string-name>
            <surname>Chan</surname>
          </string-name>
          , Yu Zhang, Chung-Cheng Chiu, Barret Zoph,
          <string-name>
            <surname>Ekin D Cubuk</surname>
          </string-name>
          , and
          <string-name>
            <surname>Quoc</surname>
            <given-names>V</given-names>
          </string-name>
          <string-name>
            <surname>Le</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Specaugment: A simple data augmentation method for automatic speech recognition</article-title>
          . arXiv preprint arXiv:
          <year>1904</year>
          .
          <volume>08779</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <surname>Adam</surname>
            <given-names>Paszke</given-names>
          </string-name>
          , Sam Gross, Soumith Chintala, Gregory Chanan, Edward Yang,
          <string-name>
            <surname>Zachary</surname>
            <given-names>DeVito</given-names>
          </string-name>
          , Zeming Lin, Alban Desmaison, Luca Antiga, and
          <string-name>
            <given-names>Adam</given-names>
            <surname>Lerer</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Automatic diferentiation in pytorch</article-title>
          . (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <surname>Sashank J Reddi</surname>
            , Satyen Kale, and
            <given-names>Sanjiv</given-names>
          </string-name>
          <string-name>
            <surname>Kumar</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>On the convergence of adam and beyond</article-title>
          . arXiv preprint arXiv:
          <year>1904</year>
          .
          <volume>09237</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>Mark</given-names>
            <surname>Sandler</surname>
          </string-name>
          , Andrew Howard, Menglong Zhu, Andrey Zhmoginov, and
          <string-name>
            <surname>Liang-Chieh Chen</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>Mobilenetv2: Inverted residuals and linear bottlenecks</article-title>
          .
          <source>In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition</source>
          .
          <fpage>4510</fpage>
          -
          <lpage>4520</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <surname>Ilya</surname>
            <given-names>Sutskever</given-names>
          </string-name>
          , James Martens, George Dahl, and
          <string-name>
            <given-names>Geofrey</given-names>
            <surname>Hinton</surname>
          </string-name>
          .
          <year>2013</year>
          .
          <article-title>On the importance of initialization and momentum in deep learning</article-title>
          .
          <source>In International conference on machine learning</source>
          .
          <volume>1139</volume>
          -
          <fpage>1147</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <surname>Ashish</surname>
            <given-names>Vaswani</given-names>
          </string-name>
          , Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones,
          <string-name>
            <given-names>Aidan N.</given-names>
            <surname>Gomez</surname>
          </string-name>
          , Lukasz Kaiser, and
          <string-name>
            <given-names>Illia</given-names>
            <surname>Polosukhin</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Attention Is All You Need</article-title>
          . arXiv e-prints,
          <source>Article arXiv:1706.03762 (Jun</source>
          <year>2017</year>
          ), arXiv:
          <fpage>1706</fpage>
          .03762 pages.
          <source>arXiv:cs.CL/1706.03762</source>
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <surname>Minz</surname>
            <given-names>Won</given-names>
          </string-name>
          , Sanghyuk Chun, and
          <string-name>
            <given-names>Xavier</given-names>
            <surname>Serra</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Toward Interpretable Music Tagging with Self-Attention. arXiv eprints</article-title>
          , Article arXiv:
          <year>1906</year>
          .
          <volume>04972</volume>
          (
          <year>Jun 2019</year>
          ), arXiv:
          <year>1906</year>
          .04972 pages.
          <article-title>arXiv:cs</article-title>
          .SD/
          <year>1906</year>
          .04972
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <surname>Saining</surname>
            <given-names>Xie</given-names>
          </string-name>
          , Ross Girshick, Piotr Dollár, Zhuowen Tu, and
          <string-name>
            <given-names>Kaiming</given-names>
            <surname>He</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Aggregated residual transformations for deep neural networks</article-title>
          .
          <source>In Proceedings of the IEEE conference on computer vision and pattern recognition</source>
          .
          <volume>1492</volume>
          -
          <fpage>1500</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <surname>Hongyi</surname>
            <given-names>Zhang</given-names>
          </string-name>
          , Moustapha Cisse,
          <string-name>
            <surname>Yann N Dauphin</surname>
          </string-name>
          , and David LopezPaz.
          <year>2017</year>
          .
          <article-title>mixup: Beyond empirical risk minimization</article-title>
          .
          <source>arXiv preprint arXiv:1710.09412</source>
          (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>