<!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>BigVid at MediaEval 2016: Predicting Interestingness in Images and Videos</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Baohan Xu</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yanwei Fu</string-name>
          <email>yanweifu@fudan.edu.cn</email>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yu-Gang Jiang</string-name>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>School of Computer Science, Fudan University</institution>
          ,
          <country country="CN">China</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>School of Data Science, Fudan University</institution>
          ,
          <country country="CN">China</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Shanghai Key Laboratory of Intelligent Information Processing, Fudan University</institution>
          ,
          <country country="CN">China</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2016</year>
      </pub-date>
      <fpage>20</fpage>
      <lpage>21</lpage>
      <abstract>
        <p>Despite growing research interest, the tasks of predicting the interestingness of images and videos remain as an open challenge. The main obstacles come from both the diversity and complexity of video content and highly subjective and varying judgements of interestingness of di erent persons. In the MediaEval 2016 Predicting Media Interestingness Task, our team of BigVid@Fudan had submitted ve runs exploring various methods of extraction, and modeling the low-level features (from visual and audio modalities) and hundreds of high-level semantic attributes; and fusing these features for classi cation. We not only investigated the use of the SVM (Support Vector Machine) model; but the recent deep learning methods were explored as well. We had submitted 5 runs using SVM/Ranking-SVM (Run1, Run3 and Run4) and Deep Neural Networks (Run2 and Run5) respectively. We achieved a mean average precision of 0.23 for the image subtask and 0.15 for the video subtask. Furthermore, our experiments revealed some insights of this task which are interesting and potential useful. For example, our results show that the visual features and high-level attributes are complementary to each other.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. INTRODUCTION</title>
      <p>The problem of automatically predicting the
interestingness of images and videos has started to receive increasing
attention. Interestingness prediction has a number of
realworld applications, such as interestingness-based video
recommendation system for social media platform.</p>
      <p>
        MediaEval introduced the \2016 Predicting Media
Interestingness Task". This task requires participants to
automatically select images and/or video segments which are
considered to be the most interesting for a common viewer.
Interestingness of the media is to be judged based on visual
appearance, audio information and text accompanying the
data. To solve the task, participants are strongly
encouraged to deploy multimodal approaches. For the de nitions,
dataset and evaluation of the task, please refer to the o cial
document [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ].
      </p>
      <p>This paper describes the rst participation of
MediaEval 2016 from the team of BigVid@Fudan. For this task
we developed an approach to investigate how features and
classi ers a ect the interestingness in images and videos.</p>
      <p>Both visual features and high-level attributes were explored
in our framework. We also compared SVM with deep
neural networks to further study the relations between di erent
features.
2.</p>
    </sec>
    <sec id="sec-2">
      <title>SYSTEM DESCRIPTION</title>
      <p>Figure 1 gives an overview of our system. The whole
system is composed of two key components: feature extraction
and classi ers.
2.1</p>
      <p>
        There are several pre-computed features provided by the
organizers, such as denseSIFT [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ], pre-trained CNN fc7 layer
features using ImageNet model and face features. To
enlarge the useful information in data, we also consider two
other types of high-level features. These features have been
shown very useful in the tasks of aesthetics and
interestingness prediction in [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] and [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. The average pooling of all
the descriptors from all sampled frames is used to form the
video-level representation for each feature modality.
Style Attributes: We have considered the photographic
style attributes [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] as high-level descriptors. These attributes
have been shown highly related to aesthetics and
interestingness in [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. To compute these high-level features, the
descriptor is formed by concatenating the classi cation
outputs of 14 photographic styles (e.g., Complementary Colors,
Duotones, Rule of Thirds, Vanishing Point, etc).
SentiBank: There are 1,200 concepts in SentiBank, and
each is de ned as an adjective-noun pair, e.g., "crazy cat "
and "lovely girl ", where the adjective is strongly related to
emotions and the noun corresponds to objects and scenes
that are expected to be automatically detectable. Models
for detecting the concepts were trained on Flickr images [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].
This set of attributes is intuitively e ective on the
emotionrelated objects and scenes. Since interesting images/videos
often related with strong emotions, the attribute is expected
to be a very helpful clue for predicting interestingness.
2.2
      </p>
    </sec>
    <sec id="sec-3">
      <title>Classifiers</title>
      <p>Several classi ers are investigated here in order to be
robustness to the diversity and complexity of similar visual
content. Particularly, we discussed the SVM, Ranking-SVM
and Deep Neural Networks (DNN) for feature fusion and
classi cation. We explain them as follows,
SVM: 2 kernel was adopted for the bag-of-words features
(denseSIFT), and Gaussian RBF kernel was used for the
oth</p>
      <p>Feature Extraction
T
F
I
S
ers. For feature fusion, kernel-level average fusion was used
for the features, which linearly combines kernels computed
on di erent features.</p>
      <p>
        Ranking-SVM: As the interestingness level also a ects the
classi cation result, we consider training a model to compare
the interestingness of di erent images/videos. We therefore
adopt Joaquims' Ranking SVM [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] to enhance the nal
results. To fully use the training data, we organized them
in form of pairs, with ground-truth labels indicating which
one is more interesting for each pair. Score-level average
late fusion was adopted to combine the results of SVM and
Ranking-SVM.
      </p>
      <p>
        DNN: We also adopted a DNN-based classi er proposed in
our recent work [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. The fusion methods for the SVM
classiers may take advantage of di erent features; however, they
often neglect the hidden relations shared among features.
We proposed a regularized DNN to explore the relationship
of distinct features, which is found useful for image/video
classi cation. Speci cally, for each input feature, a layer of
neurons was rst used to perform feature abstraction. Then,
feature fusion is performed by another layer with carefully
designed structural-norm regularization on network weights.
The feature relationships is also considered in the
regularized DNN. And the fused representation was nally used to
construct a classi cation model in the last layer. With this
special network, we are able to fuse features by
considering both feature correlation and feature diversity, as well as
perform classi cation simultaneously. Please see [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] for more
details.
      </p>
    </sec>
    <sec id="sec-4">
      <title>3. SUBMITTED RUNS AND RESULTS</title>
      <p>There are two subtasks in this year's evaluation, namely
predicting video interestingness and predicting image
interestingness. We submitted 5 runs for o cial evaluation, among
which 2 runs for the image subtask and 3 runs for the video
subtask. Run1 and Run4 used SVM for video and image
subtasks respectively, Run 2 and Run 5 used DNN for video
and image subtasks respectively. Run 3 used SVM fusion
with Ranking-SVM for video subtask.</p>
      <p>Figure 2 summarized the results of all the submissions.
The o cial performance measure is MAP for both video and
image subtasks. For image subtask, the DNN (Run5)
significantly outperforms the SVM classi er (Run4) since feature
correlation plays an important role in feature fusion for the
interestingness task. This also clearly con rms the e
ectiveness of our proposed deep networks. Our experiments also
verify that the high-level attributes are complementary to
visual features and CNN features.</p>
      <p>For the video subtask, besides the visual and high-level
features, we combined the face features. The experiments
show these features are complementary with each other,
which means visual and high-level attribute both make
contribution to determine whether a video clip is interesting or
not. We found that adding the audio feature such as MFCC
(Mel-Frequency Cepstrum Coe cient) may cause worse
results. This is possibly due to the fact that the video shots are
very short and cannot provide continuous and useful audio
information. We also considered adding ranking information
for video tasks (Run3); it shows slightly improvement over
SVM (Run1) and DNN (Run2). The result also indicates
that interestingness level may further improve the result.</p>
      <p>It's also worth mentioning that the results of the image
subtask are better than for the video subtask. It may be
caused by the fact that the average of frame features weaken
the weights of interesting information. How to fully use the
e ective information in video clips is a future direction.
4.</p>
    </sec>
    <sec id="sec-5">
      <title>CONCLUSIONS</title>
      <p>We have explored both SVM model and DNN to achieve
better classi cation on image and video interestingness. Our
experiments have shown that DNN-based method
outperforms the SVM model by considering feature correlation.
Additionally, the high-level attributes are complementary to
visual and CNN features on predicting interestingness.
Nevertheless, our experimental results indicate that the visual
and audio features may lack of discrimination about
interestingness. Thus, as the future work of predicting the
interestingness, we will consider extracting from the image and
videos the text information which may contain the textual
descriptions of interestingness (from linguistic perspective).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>D.</given-names>
            <surname>Borth</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Ji</surname>
          </string-name>
          , and
          <string-name>
            <given-names>S. F.</given-names>
            <surname>Chang</surname>
          </string-name>
          .
          <article-title>Sentibank: large-scale ontology and classi ers for detecting sentiment and emotions in visual content</article-title>
          .
          <source>In ACM MM</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <surname>C.-H. Demarty</surname>
            , M. Sjoberg,
            <given-names>B.</given-names>
          </string-name>
          <string-name>
            <surname>Ionescu</surname>
            , T.-T. Do,
            <given-names>H.</given-names>
          </string-name>
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>N. Q.</given-names>
          </string-name>
          <string-name>
            <surname>Duong</surname>
            , and
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Lefebvre</surname>
          </string-name>
          .
          <article-title>Mediaeval 2016 predicting media interestingness task</article-title>
          .
          <source>In Proc. of the MediaEval 2016 Workshop</source>
          , Hilversum, Netherlands, Oct.
          <volume>20</volume>
          -
          <fpage>21</fpage>
          ,
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Y.-G.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Dai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Mei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Rui</surname>
          </string-name>
          , and
          <string-name>
            <given-names>S.-F.</given-names>
            <surname>Chang</surname>
          </string-name>
          .
          <article-title>Super fast event recognition in internet videos</article-title>
          .
          <source>IEEE TMM</source>
          ,
          <volume>17</volume>
          (
          <issue>8</issue>
          ):1{
          <fpage>13</fpage>
          ,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>T.</given-names>
            <surname>Joachims</surname>
          </string-name>
          .
          <article-title>Optimizing search engines using clickthrough data</article-title>
          .
          <source>In ACM SIGKDD</source>
          ,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>N.</given-names>
            <surname>Murray</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Marchesotti</surname>
          </string-name>
          , and
          <string-name>
            <given-names>F.</given-names>
            <surname>Perronnin</surname>
          </string-name>
          .
          <article-title>Ava: A large-scale database for aesthetic visual analysis</article-title>
          .
          <source>In CVPR</source>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.-G.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Pu</surname>
          </string-name>
          , and
          <string-name>
            <given-names>X.</given-names>
            <surname>Xue</surname>
          </string-name>
          .
          <article-title>Exploring inter-feature and inter-class relationships with deep neural networks for video classi cation</article-title>
          .
          <source>In ACM MM</source>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>