<!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>ImageCLEF 2020: Deep Learning for Tuberculosis in Chest CT Image Analysis based on multi-axis pro jections</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Tetsuya Asakawa</string-name>
          <email>asakawa@kde.cs.tut.ac.jp</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Masaki Aono</string-name>
          <email>aono@tut.jp</email>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Computer Science and Engineering, Toyohashi University of Technology</institution>
          ,
          <addr-line>Aichi</addr-line>
          ,
          <country country="JP">Japan</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>ImageCLEF 2020 Tuberculosis Task is an example of the challenging research problem in the field of CT image analysis. The purpose of this research is to make accurate estimates for the three labels (affected, pleurisy, caverns) for each of the lungs. We describe the tuberculosis task and approach for chest CT image analysis, then perform multi-label CT image analysis using the task dataset. We propose finetuning deep neural network model that uses inputs from multiple CNN features. In addition, this paper presents two approaches for applying mask data to the extracted 2D image data and for extracting a set of 2D projection images along multi-axis based on the 3D chest CT data. Our submissions on the task test dataset reached a mean AUC value of about 75% and a minimum AUC value of about 69% Copyright ⃝c 2020 for this paper by its authors. Use permitted under Creative Commons License Attribution 4.0 International (CC BY 4.0). CLEF 2020, 22-25 September 2020, Thessaloniki, Greece.</p>
      </abstract>
      <kwd-group>
        <kwd>Computed Tomography</kwd>
        <kwd>Tuberculosis</kwd>
        <kwd>Deep Learning</kwd>
        <kwd>Multilabel classification</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        With the spread of various virus (such as Tuberculosis, Coronavirus, and
Influenza), medical researchers perform to give the necessary treatment for viruses
in recent years. However, there is nothing to identify the disease early. Early
diagnosis needed to give the necessary treatment, develop specific medicine, and
prevent the death of patients. Therefore, several researchers have invested their
efforts in recent years, especially within the medical image analysis community.
In fact, a task dedicated to the tuberculosis had been adopted as part of the
ImageCLEF evaluation campaign in its editions of the four last years [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ][
        <xref ref-type="bibr" rid="ref2">2</xref>
        ][
        <xref ref-type="bibr" rid="ref3">3</xref>
        ][
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
In ImageCLEF 2020 the main task [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ], “ImageCLEFmed Tuberculosis” is
considered to be CT Report (CTR). In the task, the problem consists of generating
an automatic report that includes the following information in binary form (0
or 1): Left Lung Affected, Right Lung Affected, Caverns Left, Caverns Right,
Pleurisy Left, Pleurisy Right. The purpose of this research is to automatically
analyze the 3D CT images of TB patients to detect semantic information for the
type of Tuberculosis.
      </p>
      <p>In this paper, we also employ a new fine-tuning neural network model which
uses features coming from pre-trained CNN models as input. In addition, existing
deep learning MODELS had weak classifications, therefore we propose a new
fully connected 2 layers. The new contributions of this paper is to propose a novel
feature building techniques, which incorporates features from two CNN models
to predict Tuberculosis from images, unlike most recent research only concerned
with adopting single CNN features. In the following, we first describe the tasks
which were conducted in Section 2 followed by dataset of ImageCLEF2020, In
Section 3, we introduce masking the dataset, experimental settings, and feature
used in this research . In Section 4, we describe experiments we have carried out.
In Section 5 we conclude this paper .
2</p>
    </sec>
    <sec id="sec-2">
      <title>Dataset of ImageCLEF 2020</title>
      <p>
        The tuberculosis task of ImageCLEF 2020 Challenge included part of chest in
format of 3D CT images [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ][
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. A dataset contains the chest CT scan imaging
data which included 283 images in the Training (also referred as Development)
dataset and 120 in the Test dataset. Since the labels are provided on lung-wise
scale rather than CT-wise scale, the total number of cases is virtually increased
twice.
      </p>
      <p>This task participants have to generate automatic lung-wise reports based
on CT image data. Each report should include the probability scores
(ranging from 0 to 1) for each of the three labels and for each of the lungs
(resulting in 6 entries per CT). The resulting list of entries includes:
LeftLungAffected, RightLungAffected, CavernsLeft, CavernsRight, PleurisyLeft,
PleurisyRight. Table 1 shows labels for the chest CT scan in the Training
dataset.</p>
      <p>In Training set</p>
    </sec>
    <sec id="sec-3">
      <title>Proposed Method</title>
      <p>We propose a multi-label analysis system to predict Tuberculosis from CT scan
images. The first step is the input data pre-processing. After pre-processing input
data, we will describe our deep neural network model that enables the
multilabel outputs, given CT scan images. In addition, we add an optional step to
the first step. We use a CT scan movie not CT scan images. We will detail our
proposed system in the following section.
3.1</p>
      <sec id="sec-3-1">
        <title>Input Data Pre-processing</title>
        <p>First, we remind the reader that in train and test data, 3D CT scans are provided
in compressed Nifti format. We decompressed the files and extracted the slices
of x-axis, y-axis, and z-axis from the three dimensions of the 3D image shown in
Fig. 1. For each dimension for each Nifti image, we obtained a number of slices
ranging according to the dimension: 512 images for the X and Y dimensions,
and from 110 to 250 images for the Z dimension.</p>
        <p>
          After extracting slices along x-axis, y-axis, and z-axis, we propose to filter
the slices of each patient using mask data [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ][
          <xref ref-type="bibr" rid="ref8">8</xref>
          ]. We extract a filtering CT scan
image, as shown in Fig. 2. Indeed, we can notice that many slices contain relevant
information including bone, space, fat, and skin except for the lungs that could
help to classify the samples. This is why we added a step to the filter and selected
a number of slices per patient.
3.2
        </p>
      </sec>
      <sec id="sec-3-2">
        <title>Proposed deep neural network model</title>
        <p>To solve our multi-label problem, we propose new combined neural network
models which allow inputs coming from End-to-end (CNN) features.
Training and Validation sets The training dataset consists of 108 891, 77
468, 31 497 images extracted from the filtered CT image for x, y and z axis
respectively.</p>
        <p>We have divided the train data into training and validation data with 8:2
ratio in random. CNN features were extracted using pre-trained CNN-based
neural networks, including VGG16, ResNet50, NasNet-Large and EfficientNet
B07. In order to deal with the above feature, we propose a deep neural network
architecture where we allow multiple inputs and a multi-hot vector output.</p>
        <p>
          Our system incorporates CNN features, which can be extracted using deep
convolutional neural networks pre-trained on the ImageNet [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] such as VGG16
[
          <xref ref-type="bibr" rid="ref10">10</xref>
          ], ResNet50[
          <xref ref-type="bibr" rid="ref11">11</xref>
          ], NasNet-Large [12] and EfficientNet B07[13]. Because of the
lack of dataset in visual sentiment analysis, we adopt transfer learning for the
feature extraction to prevent over fitting. We decreased the dimensions of
fullyconnected layers used in CNN models. In addition, we reduced the vector to 2048
dimensions. This was introduced with the expectation of reducing the number
of parameters and unifying the dimensions.
        </p>
      </sec>
      <sec id="sec-3-3">
        <title>Training and Validation sets and Test data We employ from the top</title>
        <p>AUC for four fine-tuning the CNN model from above. As illustrated in Fig. 3,
CNN feature is combined and represented by an integrated feature as a linearly
weighted average, where weights are w3 for CNN features, respectively. CNN
feature is passed out on “Fusion” processing to generate the integrated features,
followed by “softmax” activation function.
3.3</p>
      </sec>
      <sec id="sec-3-4">
        <title>Probability of multi-label</title>
        <p>We propose a method illustrated in Algorithm 1. The input is a collection of
features extracted from each image with K kinds of sentiments, while the output
is a K-dimensional multi-hot vector.</p>
        <p>In Algorithm 1, we assume that the extracted CNN feature is represented by
their probabilities. For each Tuberculosis, we sum up the features, followed by
median of the result, which is denoted by Tik in Algorithm 1. In short, the vector
Si represents the output multi-hot vector. We repeat this computation until all
the test (unknown) images are processed.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Experiments</title>
      <sec id="sec-4-1">
        <title>AUC of training and validation sets</title>
        <p>The train dataset consists in filtering CT image on x-axis, y-axis, or z-axis.
The train dataset consists of 108 891, 77 468, 31 497 images extracted from the
filtered CT image for x, y and z axis respectively.</p>
        <p>Algorithm 1 Predicting multi hot vector for an image
Input: Image data i including K kinds of disease for Lungs
Output: Multi hot vector Si
1: for k do range (K):
2: P robi,k=F eatureExtractioni,k
3: Tik=median(P robi,k)
4: end for</p>
        <p>Here, we have divided the filtering data into training and validation data
with 8:2 ratio. We determined the following hyper-parameters; batch size as 256,
optimization function as “SGD” with a learning rate of 0.001 and momentum
0.9, and the number of epochs 200. For the implementation, we employ
TensorFlow[14] as our deep learning framework. For the evaluation of multi-label
classification, we employ mean Area Under Curve (AUC). Table 2 shows the
results. Here we compare in terms of AUC for multiple axes. For fine-tuning
EfficientNet B07 in x, y, and z-axis, it turns out that our proposed CNN model has
the best AUC. Finally, we employ EfficientNet B07 for training and validation
sets and test data. The result shows as below (4.2).
axis
x-axis
y-axis
z-axis</p>
        <p>Model
VGG16</p>
        <p>ResNet50</p>
        <p>NasNet-Large
EfficientNet B07</p>
        <p>VGG16</p>
        <p>ResNet50</p>
        <p>NasNet-Large
EfficientNet B07</p>
        <p>VGG16</p>
        <p>ResNet50</p>
        <p>NasNet-Large
EfficientNet B07</p>
      </sec>
      <sec id="sec-4-2">
        <title>The result for training and validation sets and test data using our proposed model</title>
        <p>The test dataset consists of 46 605, 32 901, 13 938 images extracted from the
filtered CT image for x, y and z axis respectively.</p>
        <p>We expect that our proposed models could give better results after a more
advanced data preprocessing including the use of filtering image, and data
augmentation for multi-axis. Here, we described above, we employ fine-tuning CNN
models in EfficientNet B07 based on multi axis. Table 3 shows the results.
“xaxis and y-axis” mean the probabilities of x-axis and y-axis. “y-axis and z-axis”
mean the probabilities of y-axis and z-axis. “x-axis, y-axis, and z-axis” mean the
probabilities of x-axis, y-axis, and z-axis.</p>
        <p>Here we compare in terms of AUC. For z-axis on fine-tuning EfficientNet
B07, it turns out that our proposed CNN model has the good mean AUC and
minimum AUC.</p>
        <p>
          In addition, results of the participants’ submissions with the highest AUC
values are shown in Table 4 [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ]. Here we compare in terms of mean AUC and
minimum AUC. For KDE-lab team, it turns out that our proposed CNN model
has the best mean AUC and minimum AUC. The results achieved by our
submissions are well ranked compared to those of the top of the list, we can notice
that several runs belong to the same teams that had good results, and they
probably do not differ too much. Our rank is 5th.
        </p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>Conclusions</title>
      <p>In this research, we proposed a model for predicting each of the three labels
and for each of the lungs as a multi-label problem from chest CT images. We
performed Chest CT Image analysis where we proposed a combined deep neural
network model which enabled inputs to come from CNN features. In
multilabel Chest CT Image analysis, we also introduced a threshold-based multi-label
prediction algorithm. Specifically, after training our deep neural network, we
could predict the existence of a disease for given unknown CT scan images.
Experimental results demonstrate that all our proposed models outperform the
individual pre-trained CNN model in terms of mean AUC and minimum AUC.</p>
      <p>In this research, we proposed a model for Tuberculosis CT Image analysis
which accurately estimates multi-label problems from given images. The
multilabel problems are evoking multiple different types of Tuberculosis findings
simultaneously.</p>
      <p>In the future, given an arbitrary CT or X-ray image might be included the
optimal weights for the neural networks. Moreover, we hope our proposed model
can encourage further research on the early detection of several viruses or
unknown diseases. We also expect that our proposed model will be widely used in
the field of medical computing.</p>
    </sec>
    <sec id="sec-6">
      <title>Acknowledgment</title>
      <p>A part of this research was carried out with the support of the Grant-in-Aid for
Scientific Research (B) (issue number 17H01746), and Grant for Education and
Research in Toyohashi University of Technology.
12. Barret Zoph, Vijay Vasudevan, Jonathon Shlens, and Quoc V. Le. Learning
transferable architectures for scalable image recognition. 2018 IEEE/CVF Conference
on Computer Vision and Pattern Recognition, Jun 2018.
13. Mingxing Tan and Quoc V. Le. Efficientnet: Rethinking model scaling for
convolutional neural networks. ICML 2019, 05 2019.
14. Google. Tensorflow. https://github.com/tensorflow.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <given-names>Yashin</given-names>
            <surname>Dicente</surname>
          </string-name>
          <string-name>
            <surname>Cid</surname>
          </string-name>
          , Alexander Kalinovsky, Vitali Liauchuk, Vassili Kovalev, , and Henning Mu¨ller.
          <source>Overview of ImageCLEFtuberculosis</source>
          <year>2017</year>
          <article-title>- predicting tuberculosis type and drug resistances</article-title>
          .
          <source>In CLEF2017 Working Notes, CEUR Workshop Proceedings</source>
          , Dublin, Ireland,
          <source>September</source>
          <volume>11</volume>
          -14
          <year>2017</year>
          .
          <article-title>CEUR-WS</article-title>
          .org &lt;http://ceurws.org&gt;.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <given-names>Bogdan</given-names>
            <surname>Ionescu</surname>
          </string-name>
          , Henning Mu¨ller, Mauricio Villegas, Alba Garc´ıa Seco de Herrera, Carsten Eickhoff, Vincent Andrearczyk, Yashin Dicente Cid, Vitali Liauchuk, Vassili Kovalev, Sadid A.
          <string-name>
            <surname>Hasan</surname>
          </string-name>
          , Yuan Ling, Oladimeji Farri, Joey Liu, Matthew Lungren,
          <string-name>
            <surname>Duc-Tien</surname>
            Dang-Nguyen,
            <given-names>Luca</given-names>
          </string-name>
          <string-name>
            <surname>Piras</surname>
            , Michael Riegler, Liting Zhou, Mathias Lux, and
            <given-names>Cathal</given-names>
          </string-name>
          <string-name>
            <surname>Gurrin</surname>
          </string-name>
          .
          <source>Overview of ImageCLEF</source>
          <year>2018</year>
          :
          <article-title>Challenges, datasets and evaluation</article-title>
          .
          <source>In Experimental IR Meets Multilinguality</source>
          , Multimodality, and
          <string-name>
            <surname>Interaction</surname>
          </string-name>
          ,
          <source>Proceedings of the Ninth International Conference of the CLEF Association (CLEF</source>
          <year>2018</year>
          ), Avignon, France,
          <source>September 10-14 2018. LNCS Lecture Notes in Computer Science</source>
          , Springer.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <given-names>Bogdan</given-names>
            <surname>Ionescu</surname>
          </string-name>
          , Henning Mu¨ller, Renaud P´eteri, Yashin Dicente Cid, Vitali Liauchuk, Vassili Kovalev, Dzmitri Klimuk, Aleh Tarasau, Asma Ben Abacha, Sadid A.
          <string-name>
            <surname>Hasan</surname>
          </string-name>
          , Vivek Datla, Joey Liu, Dina Demner-Fushman,
          <string-name>
            <surname>Duc-Tien</surname>
            <given-names>DangNguyen</given-names>
          </string-name>
          , Luca Piras, Michael Riegler,
          <string-name>
            <surname>Minh-Triet</surname>
            <given-names>Tran</given-names>
          </string-name>
          , Mathias Lux, Cathal Gurrin, Obioma Pelka,
          <string-name>
            <surname>Christoph M. Friedrich</surname>
          </string-name>
          , Alba Garc´ıa Seco de Herrera, Narciso Garcia, Ergina Kavallieratou,
          <source>Carlos Roberto del Blanco</source>
          , Carlos Cuevas Rodr´ıguez, Nikos Vasillopoulos, Konstantinos Karampidis, Jon Chamberlain, Adrian Clark, and Antonio Campello.
          <source>ImageCLEF</source>
          <year>2019</year>
          :
          <article-title>Multimedia Retrieval in Medicine, Lifelogging, Security and Nature: Multimedia Retrieval in Medicine, Lifelogging, Security and Nature</article-title>
          . In Experimental IR Meets Multilinguality, Multimodality, and Interaction, volume
          <volume>2380</volume>
          <source>of Proceedings of the 10th International Conference of the CLEF Association (CLEF</source>
          <year>2019</year>
          ), Lugano, Switzerland,
          <source>September 9-12 2019. LNCS Lecture Notes in Computer Science</source>
          , Springer.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <given-names>Obioma</given-names>
            <surname>Pelka</surname>
          </string-name>
          , Christoph M Friedrich, Alba Garc´ıa Seco de Herrera, and
          <article-title>Henning Mu¨ller. Medical image understanding: Overview of the ImageCLEFmed 2020 concept prediction task</article-title>
          .
          <source>In CLEF2020 Working Notes, Workshop Proceedings</source>
          , Thessaloniki, Greece,
          <source>September</source>
          <volume>22</volume>
          -25
          <year>2020</year>
          .
          <article-title>CEUR-WS.org</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <given-names>Bogdan</given-names>
            <surname>Ionescu</surname>
          </string-name>
          , Henning Mu¨ller, Renaud P´eteri, Asma Ben Abacha, Vivek Datla, Sadid A.
          <string-name>
            <surname>Hasan</surname>
          </string-name>
          , Dina Demner-Fushman, Serge Kozlovski, Vitali Liauchuk, Yashin Dicente Cid, Vassili Kovalev, Obioma Pelka,
          <string-name>
            <surname>Christoph M. Friedrich</surname>
          </string-name>
          , Alba Garc´ıa Seco de Herrera,
          <string-name>
            <surname>Van-Tu</surname>
            <given-names>Ninh</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tu-Khiem</surname>
            <given-names>Le</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liting Zhou</surname>
            , Luca Piras,
            <given-names>Michael</given-names>
          </string-name>
          <string-name>
            <surname>Riegler</surname>
          </string-name>
          , P˚al Halvorsen,
          <string-name>
            <surname>Minh-Triet</surname>
            <given-names>Tran</given-names>
          </string-name>
          , Mathias Lux, Cathal Gurrin,
          <string-name>
            <surname>Duc-Tien</surname>
          </string-name>
          Dang-Nguyen, Jon Chamberlain, Adrian Clark, Antonio Campello, Dimitri Fichou, Raul Berari, Paul Brie, Mihai Dogariu, Liviu Daniel S¸tefan, and Mihai Gabriel Constantin.
          <article-title>Overview of the ImageCLEF 2020: Multimedia Retrieval in Medical, Lifelogging, Nature, and Internet Applications</article-title>
          . In Experimental IR Meets Multilinguality, Multimodality, and Interaction, volume
          <volume>12260</volume>
          <source>of Proceedings of the 11th International Conference of the CLEF Association (CLEF</source>
          <year>2020</year>
          ), Thessaloniki, Greece,
          <source>September 22-25 2020. LNCS Lecture Notes in Computer Science</source>
          , Springer.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <given-names>Serge</given-names>
            <surname>Kozlovski</surname>
          </string-name>
          , Vitali Liauchuk, Yashin Dicente Cid, Aleh Tarasau, Vassili Kovalev, and
          <article-title>Henning Mu¨ller. Overview of ImageCLEFtuberculosis 2020 - automatic CT-based report generation</article-title>
          .
          <source>In CLEF2020 Working Notes, CEUR Workshop Proceedings</source>
          , Thessaloniki, Greece,
          <source>September</source>
          <volume>22</volume>
          -25
          <year>2020</year>
          .
          <article-title>CEUR-WS</article-title>
          .org &lt;http://ceur-ws.
          <source>org&gt;.</source>
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <given-names>Yashin</given-names>
            <surname>Dicente</surname>
          </string-name>
          <string-name>
            <surname>Cid</surname>
          </string-name>
          ,
          <source>Oscar Alfonso Jim´enez del Toro</source>
          ,
          <article-title>Adrien Depeursinge, and Henning Mu¨ller. Efficient and fully automatic segmentation of the lungs in ct volumes</article-title>
          .
          <source>In Orcun Goksel, Oscar Alfonso Jim´enez del Toro</source>
          , Antonio FoncubiertaRodr´ıguez, and Henning Mu¨ller, editors,
          <source>Proceedings of the VISCERAL Anatomy Grand Challenge at the 2015 IEEE ISBI, CEUR Workshop Proceedings</source>
          , pages
          <fpage>31</fpage>
          -
          <lpage>35</lpage>
          . CEUR-WS, May
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <given-names>Vitali</given-names>
            <surname>Liauchuk</surname>
          </string-name>
          and
          <string-name>
            <given-names>Vassili</given-names>
            <surname>Kovalev</surname>
          </string-name>
          .
          <source>Imageclef</source>
          <year>2017</year>
          :
          <article-title>Supervoxels and cooccurrence for tuberculosis CT image classification</article-title>
          .
          <source>In Linda Cappellato</source>
          , Nicola Ferro, Lorraine Goeuriot, and Thomas Mandl, editors,
          <source>Working Notes of CLEF 2017 - Conference and Labs of the Evaluation Forum</source>
          , Dublin, Ireland,
          <source>September 11-14</source>
          ,
          <year>2017</year>
          , volume
          <volume>1866</volume>
          <source>of CEUR Workshop Proceedings. CEUR-WS.org</source>
          ,
          <year>2017</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <given-names>Olga</given-names>
            <surname>Russakovsky</surname>
          </string-name>
          , Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein,
          <string-name>
            <surname>Alexander C. Berg</surname>
          </string-name>
          , and
          <string-name>
            <surname>Li</surname>
          </string-name>
          Fei-Fei.
          <article-title>ImageNet Large Scale Visual Recognition Challenge</article-title>
          .
          <source>International Journal of Computer Vision (IJCV)</source>
          ,
          <volume>115</volume>
          (
          <issue>3</issue>
          ):
          <fpage>211</fpage>
          -
          <lpage>252</lpage>
          ,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <given-names>Karen</given-names>
            <surname>Simonyan</surname>
          </string-name>
          and
          <string-name>
            <given-names>Andrew</given-names>
            <surname>Zisserman</surname>
          </string-name>
          .
          <article-title>Very deep convolutional networks for large-scale image recognition</article-title>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Kaiming</surname>
            <given-names>He</given-names>
          </string-name>
          , Xiangyu Zhang, Shaoqing Ren, and
          <string-name>
            <given-names>Jian</given-names>
            <surname>Sun</surname>
          </string-name>
          .
          <article-title>Deep residual learning for image recognition</article-title>
          .
          <source>2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR)</source>
          ,
          <year>Jun 2016</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>