<!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>Fashion and Apparel Classification using Convolutional Neural Networks</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Alexander Schindler</string-name>
          <email>alexander.schindler@ait.ac.at</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Thomas Lidy</string-name>
          <email>lidy@ifs.tuwien.ac.at</email>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Stephan Karner, Matthias Hecker</string-name>
          <email>matthias.hecker@monstyle.io</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Austrian Institute of Technology, Digital Safety and Security</institution>
          ,
          <addr-line>Vienna</addr-line>
          ,
          <country country="AT">Austria</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>MonStyle</institution>
          ,
          <addr-line>Vienna</addr-line>
          ,
          <country country="AT">Austria</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Vienna University of Technology, Institute of Software Technology</institution>
          ,
          <addr-line>Vienna</addr-line>
          ,
          <country country="AT">Austria</country>
        </aff>
      </contrib-group>
      <fpage>24</fpage>
      <lpage>27</lpage>
      <abstract>
        <p>-We present an empirical study of applying deep Convolutional Neural Networks (CNN) to the task of fashion and apparel image classification to improve meta-data enrichment of e-commerce applications. Five different CNN architectures were analyzed using clean and pre-trained models. The models were evaluated in three different tasks person detection, product and gender classification, on two small and large scale datasets.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>I. INTRODUCTION</title>
      <p>The recent progress in the image retrieval domain provides
new possibilities for a vertical integration of research results
into industrial or commercial applications. Based on the
remarkable success of Deep Neural Networks (DNN) applied to
image processing tasks, this study focuses on the task of
fashion image classification. Photographs of clothes and apparels
have to be classified into a set of pre-annotated categories such
as skirt, jeans or sport-shoes. Online e-commerce companies
such as Asos-EU 1, Farfetch 2 or Zalando 3 provide access
to the data of their products in stock including
item-metadata and images. Especially the provided meta-data varies
in quality, granularity and taxonomy. Although, most of the
companies provide categorical descriptions of their products,
the applied terminology varies as well as the depth of the
categorical hierarchy. Fashion image classification is thus
used to consolidate the meta-data by enriching it with new
generalized categorical labels.</p>
      <p>
        This is a traditional image processing task with domain
specific challenges of large variating styles, textures, shapes
and colors. A major advantage is the image quality which
are professionally produced high quality and high resolution
images. There are generally two categories of photographs.
The first arranges products in front of a white background. The
second portraits a person or parts of a person who is wearing
the products. While the first category reduces semantic noise
of the images, the second one introduces it, because a person
wearing multiple items such as jeans, t-shirt, shoes and belt is
only assigned to a single label. Clothing and apparel retrieval
has been addressed to find clothes similar to a photograph
[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] or a given style [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. The main challenge these studies
faced was the definition and extraction of relevant features
1http://www.asos.de/
2https://www.farfetch.com
3https://www.zalando.de/
to describe the semantic content of the images with respect to
the high variability and deformability of clothing items. Recent
approaches harness the potential of Deep Neural Networks
(DNN) to learn the image representation. In [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] a siamese
network of pre-trained Convolutional Neural Networks (CNN)
is used to train a distance function which can be used to asses
similarities between fashion images.
      </p>
      <p>In this study we present an empirical evaluation of various
DNN architectures concerning their classification accuracy in
different classification tasks. These tasks are evaluated on two
different datasets on further two different scales. First, a wide
evaluation is performed on a smaller scale dataset and the best
performing models are then applied to large scale datasets. The
remainder of this paper is organized as follows. In Section II
we review related work. In Section III the datasets used for the
evaluation are presented. Section IV provides an overview of
the evaluated neural network architectures. Section V describes
the evaluation setup and summarizes as well as discusses the
results. Finally, conclusions and outlooks to future work are
given in Section VI.</p>
    </sec>
    <sec id="sec-2">
      <title>II. RELATED WORK</title>
      <p>
        Recently, CBIR has experienced remarkable progress in the
fields of image recognition by adopting methods from the area
of deep learning using convolutional neural networks (CNNs).
A full review of deep learning and convolutional neural
networks is provided by [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. Neural networks and CNNs are
not new technologies, but with early successes such as LeNet
[
        <xref ref-type="bibr" rid="ref5">5</xref>
        ], it is only recently that they have shown competitive results
for tasks such as in the ILSVRC2012 image classification
Challenge [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. With this remarkable reduction in a previously
stalling error-rate there has been an explosion of interest in
CNNs. Many new architectures and approaches were presented
such as GoogLeNet [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], Deep Residual Networks (ResNets)
[
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] or the Inception Architecture [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. Neural networks have
also been applied to metrics learning [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] with applications
in image similarity estimation and visual search. Recently
two datasets have been published. The MVC Dataset [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]
for view-invariant clothing retrieval (161.638) images and the
DeepFashion Dataset [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] with 800.000 annotated real life
images.
      </p>
      <p>The data provided was retrieved from online e-commerce
companies such as Asos-EU, Farfetch or Zalando.
Person: The persons dataset consists of 7833 images and the
corresponding ground truth assignments. 5.669 images are
labeled as Person and 2.164 images are labeled as Products.
Products: The product dataset consists of 234.884 images and
their corresponding ground-truth assignments. These images
belong to 39.474 products where each product is described by
5,95 images on average. Ground-truth labels are provided for
categories category, gender and age. All labels, including age,
are provided on a categorical scale. The provided ground-truth
assignments consists of 43 classes for the category attribute.
These categories are based on a hirarchical taxonnomy. The
hirarchy for the provided dataset is depicted in Figure 1.
Its largest class SPORTS SHOES contains 66.439 images
(10.807 products) and its smallest class JUMPSUITS 6 images
(1 product). To facilitate more rapid experimentation, the
provided dataset was sub-sampled to approximately 10% of its
initial size. Further, due to the class imbalance of the provided
category labels, an artificial threshold has been applied to
the class sizes of the assignments. All classes with less
than 100 images have been skipped. The remaining classes
have been sub-sampled to a 10% subset. The sub-sampling
adhered to further restriction. First, stratification was used to
ensure that the frequency distribution of class labels in the
subsample corresponds to that of the original one. Second,
subsampling was performed on product-level. This ensured the
consistency of product-images and that there are no products
with only one image. Finally, sub-sampling of a class was
stopped when a minimum of 100 images was reached. This
resulted in a subset of 23.305 instances, ranging from 5.659
images for SPORTS SHOES (922 products) and 103 images
for STRAIGHT LEG TROUSERS (19 products).</p>
    </sec>
    <sec id="sec-3">
      <title>IV. DEEP NEURAL NETWORK MODELS</title>
      <p>
        In this study we compared vfie different DNN architectures
which varied in depth and number of trainable parameters,
including three winning contributions to the ImageNet Large
Scale Visual Recognition Challenge (ILSVRC) [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] and two
compact custom CNNs with fewer trainable parameters. The
following architectures were evaluated:
      </p>
      <p>
        Vgg16 and Vgg19: very deep convolutional neural
networks (VGGnet) [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] with 16/19 layers and 47/60 million
trainable parameters, reaching an ILSVRC top-5 error rate
of 6.8%.
      </p>
      <p>
        InceptionV3: high performance network at a relatively
modest computational cost [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] with 25 million trainable
parameters reaching an ILSVRC top-5 error rate of 5.6%.
Custom CNN and Vgg-like: compact convolutional
neural network with only 10 million trainable parameters.
The models were implemented in Python 2.7 using the keras4
Deep Learning library on top of the Theano5 backend.
      </p>
    </sec>
    <sec id="sec-4">
      <title>V. EVALUATION</title>
      <p>The Convolutional Neural Networks were evaluated towards
their classification accuracies in the tasks of differentiating
persons from products as well as classifying product images
according their product category and gender. We performed
three-fold cross-evaluation and calculated the accuracies on a
per-image and a per-product scale. To calculate the per-product</p>
    </sec>
    <sec id="sec-5">
      <title>4https://github.com/fchollet/keras 5https://github.com/Theano/Theano</title>
      <p>P</p>
      <p>P
e
&gt; 0.9 rs
o
n
accuracy the cumulative maximum of all predicted product
images was taken into account.</p>
      <sec id="sec-5-1">
        <title>A. Detecting Persons</title>
        <p>Person detection was introduced based on the observation
that products are presented in two general types. First, there
are images of products placed in front of a white background
or table. The other type of images are worn products. Because
persons on these images are wearing more than one product
such as trousers, shirts, shoes and belts, it is hard for a
classifier to learn the right boundaries. Thus, the intention was
to train a person detector and to either filter person images, or
to use this additional information as input for further models.</p>
        <p>We applied a custom VGG-like CNN with three layers of
batch-normalized stacked convolution layers with 32, 64 and
64 3x3 filters and a 256 units fully connected layer with 0.5
dropout. We realized this task as a binary classification
problem by using a sigmoid activation function for the output layer.
Predictions greater or equal 0.5 were classified as persons.
This approach already provided an accuracy of 91.07% on the
person dataset. Figure 2 shows example images of the person
detection model. Images on the bottom row were predicted
with values below 0.1 and are thus categorized as products,
whereas images in the top-row are considered to be persons.</p>
      </sec>
      <sec id="sec-5-2">
        <title>B. Product Classification</title>
        <p>The product classification experiments were conducted
using the different CNN architectures presented in Section IV on
two different scales. First, a broad evaluation was performed
on the small-scale subset of 23.305 images. Then, the best
performing models were evaluated on the large scale 234.408
images dataset. All models, except those where explicitly
mentioned, were trained using image data augmentation, including
horizontal flipping of the image, shifting it by 25% in height
and width as well as a 25% zoom range.</p>
      </sec>
      <sec id="sec-5-3">
        <title>1) Train from scratch or Fine-tune: This part of the evalu</title>
        <p>ation deals with the question of whether to train a model from
scratch or to fine-tune a pre-trained model. The availability of
a large collection of high quality images and a relative small
number of classes suggests that models can be effectively fitted
according the specific domain.</p>
        <p>The results presented in Table I show that pre-trained
models outperform clean models that have been specifically
trained from scratch using only the images of the fashion
image collection. Additionally, we evaluated the two different
types of applying pre-trained models: a) resetting and training
only the top fully connected layers while keeping all other
parameters fixed, and b) continued fitting of all parameters
on the new data - which is also referred to as fine-tuning. In
either way the 1000 unit output layer of the pre-trained models
had to be replaced with a 30 units layer representing the 30
product categories.The results of the evaluation show that
finetuning outperforms the fitting of clean fully connected layers
by 5.9% (VGG16) to 7.9% (InceptionV3). The smaller custom
models did provide an advantage concerning processing time
of fitting and applying the model, but their accuracy results
differ by 16.1% to the top performing fine-tuned model.</p>
        <p>Figure 3 shows the prediction accuracy per class for the best
model (fine-tuned IncepionV3) on the 234.408 images dataset.
The most reliably predicted classes are SPORT SHOES,</p>
      </sec>
      <sec id="sec-5-4">
        <title>STRAIGHT LEG TROUSERS and BELTS, the least reliable classes are STRAIGHT JEANS, JEANS and SKINNY JEANS.</title>
        <p>These results indicate the problem of different granularity
within the provided ground-truth assignments. Root- and
leafbest fold
0.706
0.658
0.646
0.569
0.579
0.564
0.578
0.603
0.585
0.640
0.492
0.506
0.463
0.438
0.439
0.437
0.819
0.798
0.762
best fold cum max
0.794
0.729
0.711
0.685
0.673
0.673
0.669
0.652
0.650
0.636
0.594
0.568
0.556
0.549
0.455
0.447
0.887
0.863
0.846
nodes are used interchangeably which results from the
aggregation of different e-commerce catalogs using different
taxonomies. Although confusion a child- with a parent-class
is semantically not wrong, but the trained models do not take
this hierarchy into account and predict each label individually.
Thiseffect can be seen in the confusion matrix in Figure 4
where spezialized classes such as JEANS and SKINNY JEANS
or SKINNY and SKINNY JEANS or are confused frequently.</p>
      </sec>
      <sec id="sec-5-5">
        <title>C. Gender Prediction</title>
        <p>The aim of the gender prediction task was to predict
the intended gender of the product into the classes MALE,
FEMALE and UNISEX. The results are comparable to the
product classification task in the sense that pre-trained and
fine-tuned models provide the highest accuracies with a best
performing value of 88%.</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>VI. CONCLUSIONS AND FUTURE WORK</title>
      <p>In this study we presented an empirical evaluation of
different Convolutional Neural Network (CNN) architectures
concerning their performance in different tasks in the domain
of fashion image classification. The experiments indicated that
dispite the large amount and high quality of provided fashion
images, pre-trained and fine-tuned models outperform those
which were trained on the given collections alone. Future work
will concentrate on analyzing models on a scale of two million
images.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>S.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Song</surname>
          </string-name>
          , G. Liu,
          <string-name>
            <given-names>C.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Lu</surname>
          </string-name>
          , and
          <string-name>
            <given-names>S.</given-names>
            <surname>Yan</surname>
          </string-name>
          , “
          <article-title>Street-toshop: Cross-scenario clothing retrieval via parts alignment and auxiliary set,” in Computer Vision and Pattern Recognition (CVPR</article-title>
          ),
          <source>2012 IEEE Conference on. IEEE</source>
          ,
          <year>2012</year>
          , pp.
          <fpage>3330</fpage>
          -
          <lpage>3337</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>W.</given-names>
            <surname>Di</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Wah</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Bhardwaj</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Piramuthu</surname>
          </string-name>
          , and
          <string-name>
            <given-names>N.</given-names>
            <surname>Sundaresan</surname>
          </string-name>
          , “
          <article-title>Style finder: Fine-grained clothing style detection and retrieval</article-title>
          ,”
          <source>in Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition Workshops</source>
          ,
          <year>2013</year>
          , pp.
          <fpage>8</fpage>
          -
          <lpage>13</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>A.</given-names>
            <surname>Veit</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Kovacs</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Bell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>McAuley</surname>
          </string-name>
          , K. Bala, and S. Belongie, “
          <article-title>Learning visual clothing style with heterogeneous dyadic cooccurrences</article-title>
          ,”
          <source>in Proceedings of the IEEE International Conference on Computer Vision</source>
          ,
          <year>2015</year>
          , pp.
          <fpage>4642</fpage>
          -
          <lpage>4650</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>K.</given-names>
            <surname>Chatfield</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Simonyan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Vedaldi</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <given-names>A.</given-names>
            <surname>Zisserman</surname>
          </string-name>
          , “
          <article-title>Return of the devil in the details: Delving deep into convolutional nets</article-title>
          ,
          <source>” arXiv preprint arXiv:1405.3531</source>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>Y.</given-names>
            <surname>LeCun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. S.</given-names>
            <surname>Denker</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. A.</given-names>
            <surname>Solla</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. E.</given-names>
            <surname>Howard</surname>
          </string-name>
          , and
          <string-name>
            <given-names>L. D.</given-names>
            <surname>Jackel</surname>
          </string-name>
          , “
          <article-title>Optimal brain damage</article-title>
          .” in NIPs, vol.
          <volume>2</volume>
          ,
          <issue>1989</issue>
          , pp.
          <fpage>598</fpage>
          -
          <lpage>605</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>A.</given-names>
            <surname>Krizhevsky</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Sutskever</surname>
          </string-name>
          , and
          <string-name>
            <given-names>G. E.</given-names>
            <surname>Hinton</surname>
          </string-name>
          , “
          <article-title>Imagenet classification with deep convolutional neural networks</article-title>
          ,
          <source>” in Advances in neural information processing systems</source>
          ,
          <year>2012</year>
          , pp.
          <fpage>1097</fpage>
          -
          <lpage>1105</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>C.</given-names>
            <surname>Szegedy</surname>
          </string-name>
          , W. Liu,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Jia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Sermanet</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Reed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Anguelov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Erhan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Vanhoucke</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <given-names>A.</given-names>
            <surname>Rabinovich</surname>
          </string-name>
          , “
          <article-title>Going deeper with convolutions</article-title>
          ,
          <source>” in Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition</source>
          ,
          <year>2015</year>
          , pp.
          <fpage>1</fpage>
          -
          <lpage>9</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>K.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , S. Ren, and
          <string-name>
            <given-names>J.</given-names>
            <surname>Sun</surname>
          </string-name>
          , “
          <article-title>Deep residual learning for image recognition,”</article-title>
          <source>in Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition</source>
          ,
          <year>2016</year>
          , pp.
          <fpage>770</fpage>
          -
          <lpage>778</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>P.</given-names>
            <surname>Jain</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Kulis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. V.</given-names>
            <surname>Davis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>and I. S.</given-names>
            <surname>Dhillon</surname>
          </string-name>
          , “
          <article-title>Metric and kernel learning using a linear transformation</article-title>
          ,
          <source>” Journal of Machine Learning Research</source>
          , vol.
          <volume>13</volume>
          , no.
          <source>Mar</source>
          , pp.
          <fpage>519</fpage>
          -
          <lpage>547</lpage>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <surname>K.-H. Liu</surname>
          </string-name>
          , T.-Y. Chen, and C.-S. Chen, “
          <article-title>Mvc: A dataset for viewinvariant clothing retrieval and attribute prediction</article-title>
          ,”
          <source>in Proceedings of the 2016 ACM on International Conference on Multimedia Retrieval</source>
          , ser.
          <source>ICMR '16</source>
          . New York, NY, USA: ACM,
          <year>2016</year>
          , pp.
          <fpage>313</fpage>
          -
          <lpage>316</lpage>
          . [Online]. Available: http://doi.acm.
          <source>org/10</source>
          .1145/2911996.2912058
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Luo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Qiu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Wang</surname>
          </string-name>
          , and
          <string-name>
            <given-names>X.</given-names>
            <surname>Tang</surname>
          </string-name>
          , “Deepfashion:
          <article-title>Powering robust clothes recognition and retrieval with rich annotations</article-title>
          ,”
          <source>in Proceedings of IEEE Conference on Computer Vision and Pattern Recognition (CVPR)</source>
          ,
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>O.</given-names>
            <surname>Russakovsky</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Deng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Su</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Krause</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Satheesh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Ma</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Karpathy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Khosla</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Bernstein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. C.</given-names>
            <surname>Berg</surname>
          </string-name>
          , and L.
          <string-name>
            <surname>Fei-Fei</surname>
          </string-name>
          ,
          <article-title>“ImageNet Large Scale Visual Recognition Challenge</article-title>
          ,”
          <source>International Journal of Computer Vision (IJCV)</source>
          ,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>K.</given-names>
            <surname>Simonyan</surname>
          </string-name>
          and
          <string-name>
            <given-names>A.</given-names>
            <surname>Zisserman</surname>
          </string-name>
          , “
          <article-title>Very deep convolutional networks for large-scale image recognition</article-title>
          ,
          <source>” arXiv preprint arXiv:1409.1556</source>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>