<!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>Exploiting Visual-based Intent Classification for Diverse Social Image Retrieval</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Bo Wang</string-name>
          <email>b.wang-6@student.tudelft.nl</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Martha Larson</string-name>
          <email>m.a.larson@tudelft.nl</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Delft University of Technology</institution>
          ,
          <country country="NL">Netherlands</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Radboud University</institution>
          ,
          <country country="NL">Netherlands</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2017</year>
      </pub-date>
      <fpage>13</fpage>
      <lpage>15</lpage>
      <abstract>
        <p>In the 2017 MediaEval Retrieving Diverse Social Images task, we (TUD-MMC team) propose a novel method, namely an intent-based approach, for social image search result diversification. The underlying assumption is that the visual appearance of social images is impacted by the underlying photographic act, i.e., why the images were taken. Better understanding the rationale behind the photographic act could potentially benefit social image search result diversification. To investigate this idea, we employ a manual content analysis approach to create a taxonomy of intent classes. Our experiments show that a CNN-based neural network classifier is able to capture the visual diference between the classes in the intent taxonomy. We cluster images of the Flickr baseline based on predicted intent class and generate a re-ranked list by alternating images from diferent clusters. Our results reveal that, compared to conventional diversification strategies, intent-based search result diversification is able to bring a considerable improvement in terms of cluster recall with several extra benefits.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>INTRODUCTION</title>
      <p>
        The recent advances in deep learning, especially convolutional
neural networks, have been successfully applied in various computer
vision and multimedia tasks such as object recognition and scene
labeling [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. However, recognition of the literally depicted content
of multimedia documents (i.e., what is visible in the image) has
absorbed most of the research attention. In contrast, less research
has focused on social, afective and subjective properties of data,
for example, why the image was taken.
      </p>
      <p>
        In this paper, we focus on user intent, i.e., the goals that users
are pursuing when they take photos. We assume that intent has
visual reflexes that can be captured by automatic visual classifiers.
Intent classes can be further applied to search result diversification.
The goals of the photographer provide a simple, easily
understandable explanation for the diferences observed between photos [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ].
However, given the lack of intent taxonomies (definitions of intent
classes) and data sets annotated with intent labels, we will start
with creating a taxonomy of intent classes, which we turn to next.
2.1
      </p>
    </sec>
    <sec id="sec-2">
      <title>INTENT DISCOVERY</title>
    </sec>
    <sec id="sec-3">
      <title>Data Set Generation</title>
      <p>
        The intent taxonomy was created using a manual content
analysis [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] approach on the basis of YFCC100M [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ], the largest social
image collection that has ever been released. Since we are interested
in building a taxonomy of intent classes with higher abstraction
level that goes beyond concept detection, we choose to use
NUSWIDE concepts (81 concepts) [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. We use these concepts as queries
to retrieve images from the YFCC100M data set (using a tag-based
retrieval system). For each query, we collect the top-200 relevant
images. We use the entire results list if less than 200 images are
found. After querying for all NUS-WIDE concepts, we arrive at a
data set containing 15618 images.
2.2
      </p>
    </sec>
    <sec id="sec-4">
      <title>Intent Labeling</title>
      <p>
        The intent taxonomy and labeled data set were produced by an
expert annotator, who examined each image in turn. The manual
content analysis approach used by the annotator consists of several
steps. For each image, the annotator first assigns a preliminary
intent label. Each new image is then judged as either belonging to
an existing intent class, or requiring the creation of a new intent
class. Before introducing a new class, the annotator returns to
the previous annotated images to ensure that it is not possible to
accommodate the new image by updating the description of an
existing class. If no existing class can be extended to incorporate
the new image, a new intent class is introduced. The final 14 classes
intent taxonomy are described in [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ].
3
      </p>
    </sec>
    <sec id="sec-5">
      <title>INTENT CLASSIFICATION</title>
      <p>
        We adopt a conventional transfer learning scheme to predict the
intent class of an image. Transfer learning trains models on one
task, and leverages them for a diferent, but related task [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. In
our case, we used VGGNet [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] to extract visual content features
from our images (originally trained on ImageNet [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]). The last fully
connected layer (between 2048 neurons and 1000 class scores) was
removed and the rest of the network serves as a feature extractor.
We retrained a Softmax classifier using a cross-entropy Softmax
loss on our image data set annotated with 14 intent classes. We
used 70% of the data for training and held 25% of the data out for
validation purposes. (The remaining 5% is not used here.) Before
we trained, we re-sized all images to 224x224 pixels, and applied
data augmentation (random horizontal flipping, chopping and
rescaling). Our model achieved 71% accuracy on the validation set,
suggesting that intent classes are visually stable enough to allow a
classifier to generalize over them.
4
      </p>
    </sec>
    <sec id="sec-6">
      <title>DIVERSIFICATION</title>
      <p>The intent-based search result diversification works as follows:
The first step is to create a refined initial ranked list by re-ranking
the Flickr baseline using textual features (vector space model with
tf-idf weights) with the aim of increasing precision. After that,
the top N images in the re-ranked list are classified by our intent
classifier. In our case, N is 50. To generate the final results list, we
apply a round-robin approach. We consider each intent class to
be a cluster of images, and pick the top-ranked photo from each
intent cluster (without replacement) in turn. This approach applies
the assumption that new clusters reflect diversity as captured by
photographer’s intent.</p>
      <p>In addition to the intent-based approach, we also submitted three
runs: visual (run1), text-rerank+text (run2) and text-rerank+visual
(run3) for search result diversification. The intent based approach
is designated text-rerank+intent (run4).</p>
      <p>
        For visual (run 1), we directly apply k-means clustering to the
CNN-based descriptors provided by the task organizers [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ]. We
employed a heuristic approach to initialize k. Specifically, we treat
k as a variable and initialize k ∈ (1, n] and apply k-means clustering
for n times. For each k, we evaluate clustering performance with
silhouette analysis [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] and select the best k with respect to the
achieved silhouette score.
      </p>
      <p>Our text-rerank+visual (run3) adopts the same general strategy as
the visual-based approach. The diference is that instead of directly
apply k-means clustering, we first re-rank the Flickr baseline with
tf-idf weights and then cluster.</p>
      <p>
        For our text-rerank+text(run2) approach, again, we first re-rank
the Flickr baseline with tf-idf weights. Since in this case, we are
not allowed to use visual descriptors, the most critical issue is to
learn a good representation for each “short document" consisting
of title, description and tags. To achieve this, we adopted the idea
of weighted word embedding aggregation proposed by Cedric et
al. [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. More concretely, for each term associated with an image, we
use its 50-dimensional word embedding vector. (Word embedding
vectors were supplied by the organizers.) Each image is thus
represented as a set of vectors. For an image with m terms, we have
set of m 50-dimensional vectors. To model an image, we take the
coordinate-wise maximum and minimum of the set of m vectors.
We concatenate the two resulting vectors (min and max) to arrive
at a 100-dimensional vector, which is our final text-based image
representation. For each query, we have a set of 300 image vectors,
to which we apply k-means clustering with silhouette analysis.
5
      </p>
    </sec>
    <sec id="sec-7">
      <title>RESULTS AND ANALYSIS</title>
      <p>Table 1 reports the results in terms of the oficial MediaEval 2017
evaluation metrics P@20, CR@20 and F1@20. In general, higher
precision is usually associated with relatively higher cluster recall and
F1 scores because non-relevant images have no associated diversity
cluster label. This phenomenon can be clearly observed
comparing visual and text-rerank+visual. What is surprising is that the
text-based image representation achieves a better clustering result
on the test set compared with the visual CNN representation. The
text-based approach text-rerank+text and our intent-based strategy
text-rerank+intent perform comparably on the test set. The
intentbased approach appears to give a boost to relevance as measured
by P@20 and F@20.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>Cedric</given-names>
            <surname>De Boom</surname>
          </string-name>
          , Steven Van Canneyt,
          <string-name>
            <surname>Thomas Demeester</surname>
            , and
            <given-names>Bart</given-names>
          </string-name>
          <string-name>
            <surname>Dhoedt</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Representation learning for very short texts using weighted word embedding aggregation</article-title>
          .
          <source>Pattern Recognition Letters</source>
          <volume>80</volume>
          (
          <year>2016</year>
          ),
          <fpage>150</fpage>
          -
          <lpage>156</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <surname>Tat-Seng</surname>
            <given-names>Chua</given-names>
          </string-name>
          , Jinhui Tang, Richang Hong,
          <string-name>
            <given-names>Haojie</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Zhiping</given-names>
            <surname>Luo</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Yantao</given-names>
            <surname>Zheng</surname>
          </string-name>
          .
          <year>2009</year>
          .
          <article-title>NUS-WIDE: a real-world web image database from National University of Singapore</article-title>
          .
          <source>In Proceedings of the 8th ACM International Conference on Image and Video Retrieval</source>
          ,
          <string-name>
            <surname>CIVR</surname>
          </string-name>
          <year>2009</year>
          ,
          <string-name>
            <given-names>Santorini</given-names>
            <surname>Island</surname>
          </string-name>
          ,
          <source>Greece, July</source>
          <volume>8</volume>
          -
          <issue>10</issue>
          ,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Jia</given-names>
            <surname>Deng</surname>
          </string-name>
          , Wei Dong, Richard Socher,
          <string-name>
            <surname>Li-Jia</surname>
            <given-names>Li</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Kai</given-names>
            <surname>Li</surname>
          </string-name>
          , and
          <string-name>
            <surname>Fei-Fei Li</surname>
          </string-name>
          .
          <year>2009</year>
          .
          <article-title>ImageNet: A large-scale hierarchical image database</article-title>
          .
          <source>In 2009 IEEE Computer Society Conference on Computer Vision and Pattern Recognition (CVPR</source>
          <year>2009</year>
          ),
          <fpage>20</fpage>
          -
          <lpage>25</lpage>
          June 2009, Miami, Florida, USA.
          <fpage>248</fpage>
          -
          <lpage>255</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Jiuxiang</given-names>
            <surname>Gu</surname>
          </string-name>
          , Zhenhua Wang, Jason Kuen, Lianyang Ma, Amir Shahroudy, Bing Shuai, Ting Liu,
          <string-name>
            <given-names>Xingxing</given-names>
            <surname>Wang</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Gang</given-names>
            <surname>Wang</surname>
          </string-name>
          .
          <year>2015</year>
          .
          <article-title>Recent Advances in Convolutional Neural Networks</article-title>
          .
          <source>CoRR abs/1512</source>
          .07108 (
          <year>2015</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <surname>Kimberly</surname>
            <given-names>A</given-names>
          </string-name>
          <string-name>
            <surname>Neuendorf</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>The content analysis guidebook</article-title>
          .
          <source>Sage.</source>
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>Sinno</given-names>
            <surname>Jialin</surname>
          </string-name>
          Pan and
          <string-name>
            <given-names>Qiang</given-names>
            <surname>Yang</surname>
          </string-name>
          .
          <year>2010</year>
          .
          <article-title>A Survey on Transfer Learning</article-title>
          .
          <source>IEEE Trans. Knowl. Data Eng</source>
          .
          <volume>22</volume>
          ,
          <issue>10</issue>
          (
          <year>2010</year>
          ),
          <fpage>1345</fpage>
          -
          <lpage>1359</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Michael</given-names>
            <surname>Riegler</surname>
          </string-name>
          , Martha Larson, Mathias Lux, and
          <string-name>
            <given-names>Christoph</given-names>
            <surname>Kofler</surname>
          </string-name>
          .
          <year>2014</year>
          .
          <article-title>How 'How' Reflects What's What: Content-based Exploitation of How Users Frame Social Images</article-title>
          .
          <source>In Proceedings of the ACM International Conference on Multimedia, MM '14</source>
          ,
          <string-name>
            <surname>Orlando</surname>
          </string-name>
          , FL, USA, November
          <volume>03</volume>
          -
          <issue>07</issue>
          ,
          <year>2014</year>
          .
          <fpage>397</fpage>
          -
          <lpage>406</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <surname>Peter J Rousseeuw</surname>
          </string-name>
          .
          <year>1987</year>
          .
          <article-title>Silhouettes: a graphical aid to the interpretation and validation of cluster analysis</article-title>
          .
          <source>Journal of computational and applied mathematics 20</source>
          (
          <year>1987</year>
          ),
          <fpage>53</fpage>
          -
          <lpage>65</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <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>
          .
          <year>2014</year>
          .
          <article-title>Very Deep Convolutional Networks for Large-Scale Image Recognition</article-title>
          .
          <source>CoRR abs/1409</source>
          .1556 (
          <year>2014</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <surname>Bart</surname>
            <given-names>Thomee</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>David A.</given-names>
            <surname>Shamma</surname>
          </string-name>
          , Gerald Friedland, Benjamin Elizalde, Karl Ni, Douglas Poland, Damian Borth, and
          <string-name>
            <surname>Li-Jia Li</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>YFCC100M: the new data in multimedia research</article-title>
          .
          <source>Commun. ACM 59</source>
          ,
          <issue>2</issue>
          (
          <year>2016</year>
          ),
          <fpage>64</fpage>
          -
          <lpage>73</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>Bo</given-names>
            <surname>Wang</surname>
          </string-name>
          and
          <string-name>
            <given-names>Martha</given-names>
            <surname>Larson</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Beyond Concept Detection: The Potential of User Intent for Image Retrieval</article-title>
          .
          <source>In Proceedings of the ACM MM'17 Workshop on Multimodal Understanding of Social, Afective and Subjective Attributes MUSA'17</source>
          . to appear.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <surname>Maia</surname>
            <given-names>Zaharieva</given-names>
          </string-name>
          , Bogdan Ionescu,
          <string-name>
            <surname>Alexandru-Lucian</surname>
            <given-names>Gînsca</given-names>
          </string-name>
          , Rodrygo L.T. Santos, and
          <string-name>
            <given-names>Henning</given-names>
            <surname>Müller</surname>
          </string-name>
          .
          <year>2017</year>
          . Retrieving Diverse Social Images at MediaEval 2017:
          <article-title>Challenges, Dataset and Evaluation</article-title>
          .
          <source>In Working Notes Proceedings of the MediaEval 2017 Workshop</source>
          , Dublin, Ireland,
          <source>September 13-15</source>
          ,
          <year>2017</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>