<!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>A Hybrid Approach for Video Memorability Prediction</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Alexander Viola</string-name>
          <email>violaa1@tcnj.edu</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Sejong Yoon</string-name>
          <email>yoons@tcnj.edu</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>The College of New Jersey</institution>
          ,
          <country country="US">USA</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2019</year>
      </pub-date>
      <fpage>27</fpage>
      <lpage>29</lpage>
      <abstract>
        <p>In this working note, we present our approach and investigation on the Predicting Media Memorability Task at MediaEval 2019. We used original video frames and caption data from the provided dataset, but extracted features ourselves using selected pretrained networks. Several combinations of pretrained models and recurrent networks were attempted to conduct a comparative study. Oficial results, as well as our investigation on the task data are provided. The best combination yielded a Spearman's correlation score of 0.455 on short-term task and 0.218 on long-term task in the test set.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>INTRODUCTION</title>
      <p>
        MediaEval 2019 Predicting Media Memorability [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] is a continuing
multimedia analysis task following up from previous years of media
memorability [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] and interestingness prediction challenges [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. The
dataset and evaluation setup are identical to the previous year’s.
It consists of two subtasks. In the first task, the system should
predict whether the viewer will remember a video in the
shortterm (minutes). The second subtask was for the system to predict
whether the viewer will remember a video in the long-term (24-72
hours). Within the total of 10,000 videos that were annotated, 8,000
of them were provided as devset, and the remaining 2,000 videos
were reserved for the test-set. Details of the annotation protocol and
the prior work survey can be found in the task overview paper [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ].
      </p>
    </sec>
    <sec id="sec-2">
      <title>APPROACH</title>
      <p>
        In our prior attempt [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ], we tried to directly optimize a large neural
network combining various features using early fusion strategy.
Based on the lessons learned, we aim to find a good combination of
existing pretrained network models that covers multiple semantic
levels of the data. To achieve this goal, we investigate
combinations of four building blocks: (a) a recurrent neural network [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] to
capture sequential nature of the video data, (b) an image-based
memorability prediction model to take high level, task-relevant semantic
information into account, (c) a convolutional neural network-based
pretrained model to make sure we are not missing any fundamental
lower level information, and (d) video captions that readily contain
the highest semantic of the data. Encouraged by the high prediction
performance reported by other teams [
        <xref ref-type="bibr" rid="ref13 ref6">6, 13</xref>
        ], we examined the use
of following features in the process of developing our RNN-based
model. We used classic RNNs, as we could not find significant
differences in using LSTM [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] potentially due to our one layer RNN
model design [
        <xref ref-type="bibr" rid="ref5 ref9">5, 9</xref>
        ].
      </p>
      <p>
        ResNet. ResNet [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], initially trained as an image classification
model, generates rich penultimate-layer output pertinent to the
semantic content of the image. We extracted ResNet output of three
ResNet
frames (first, middle, and last of each video). These visual features
are used as sequential input into a one-layer RNN, whose output
is funneled through a series of fully connected layers before it
either regresses to a memorability score (in models where it alone
is used) or where it is part of a concatenation that contributes to a
memorability score (in an ensemble model).
      </p>
      <p>
        AMNet. Compared to the ResNet, AMNet [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] captures relatively
higher-level information of the data. We extracted final image
memorability scores of each frame in a given video, seven of which are
supplied as sequential input to a respective RNN. Like ResNet, this
feature slips through a number of linear layers before contributing
to a final regression. We put one additional fully connected layer
after RNN to improve generalization performance.
      </p>
      <p>
        Caption. As a high-level semantic feature, we considered the
videos caption data. As reported by multiple teams last year, caption
data seems to be efective in video memorability prediction tasks [
        <xref ref-type="bibr" rid="ref1 ref14 ref6">1,
6, 14</xref>
        ]. We had technical issues while implementing RNN-based
model using the caption data. For the interest of task schedule, we
resorted to discarding the RNN-based approach using the caption
feature in favor of creating a simple 25x100-dimensional word
embedding feature that funneled through subsequent linear layers.
This was functional, but results were far worse than the pretrained
Word2Vec word embeddings [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] we employed last year [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ].
      </p>
      <p>
        Hybrid Fusion with Recurrent Network. To combine the
features with diferent level of semantic information, we stacked
all features into a single vector and plug it into a linear penultimate
layer, that will regress to the ground truth memorability score. The
training was done in an end-to-end fashion, and we found that,
for feature combinations with RNN, RMSProp [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] seems to be the
most efective optimization method. We also tested models without
RNN for comparison, and found that Nesterov’s stochastic gradient
descent is the most efective method. For all experiments, we used
initial learning rate of 0.001, batch size was 20, and trained for 35
epochs.
      </p>
      <p>5-fold Cross Validation
Spearman’s ρ Pearson’s ρ</p>
    </sec>
    <sec id="sec-3">
      <title>DISCUSSION AND OUTLOOK</title>
    </sec>
    <sec id="sec-4">
      <title>ACKNOWLEDGMENTS</title>
      <p>This work was supported in part by The College of New Jersey
under Mentored Undergraduate Summer Experience (MUSE) 2019.
The authors acknowledge use of the ELSA high performance
computing cluster at The College of New Jersey for conducting the
research reported in this paper. This cluster is funded by the
National Science Foundation under grant number OAC-1828163.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>Romain</given-names>
            <surname>Cohendet</surname>
          </string-name>
          ,
          <string-name>
            <surname>Claire-Hélène</surname>
            <given-names>Demarty</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ngoc Q. K. Duong</surname>
          </string-name>
          , Mats Sjöberg, Bogdan Ionescu, and
          <string-name>
            <surname>Thanh-Toan Do</surname>
          </string-name>
          .
          <source>MediaEval</source>
          <year>2018</year>
          :
          <article-title>Predicting Media Memorability</article-title>
          .
          <source>In Proc. of MediaEval 2018 Workshop</source>
          , Sophia Antipolis, France, Oct.
          <volume>29</volume>
          -
          <fpage>31</fpage>
          ,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>Mihai</given-names>
            <surname>Gabriel</surname>
          </string-name>
          <string-name>
            <given-names>Constantin</given-names>
            , Bogdan Ionescu,
            <surname>Claire-Hélène</surname>
          </string-name>
          <string-name>
            <given-names>Demarty</given-names>
            ,
            <surname>Ngoc Q. K. Duong</surname>
          </string-name>
          , Xavier Alameda-Pineda, and
          <string-name>
            <given-names>Mats</given-names>
            <surname>Sjöberg</surname>
          </string-name>
          .
          <source>The Predicting Media Memorability Task at MediaEval</source>
          <year>2019</year>
          .
          <source>In Proc. of MediaEval 2019 Workshop</source>
          , Sophia Antipolis, France, Oct.
          <volume>27</volume>
          -
          <fpage>29</fpage>
          ,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <surname>Claire-Hélène</surname>
            <given-names>Demarty</given-names>
          </string-name>
          , Mats Sjöberg, Bogdan Ionescu,
          <string-name>
            <surname>Thanh-Toan</surname>
            <given-names>Do</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Michael</given-names>
            <surname>Gygli</surname>
          </string-name>
          , and
          <string-name>
            <surname>Ngoc</surname>
            <given-names>Q. K.</given-names>
          </string-name>
          <string-name>
            <surname>Duong</surname>
          </string-name>
          .
          <article-title>Predicting Media Interestingness Task at MediaEval 2017</article-title>
          .
          <source>In Proc. of MediaEval 2017 Workshop</source>
          , Dublin, Ireland, Sept.
          <fpage>13</fpage>
          -
          <lpage>15</lpage>
          ,
          <year>2017</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Jiri</given-names>
            <surname>Fajtl</surname>
          </string-name>
          , Vasileios Argyriou, Dorothy Monekosso, and
          <string-name>
            <given-names>Paolo</given-names>
            <surname>Remagnino</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>AMNet: Memorability Estimation With Attention</article-title>
          .
          <source>In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR).</source>
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>A.</given-names>
            <surname>Graves</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Mohamed</surname>
          </string-name>
          , and
          <string-name>
            <given-names>G.</given-names>
            <surname>Hinton</surname>
          </string-name>
          .
          <year>2013</year>
          .
          <article-title>Speech recognition with deep recurrent neural networks</article-title>
          .
          <source>In 2013 IEEE International Conference on Acoustics, Speech and Signal Processing</source>
          .
          <fpage>6645</fpage>
          -
          <lpage>6649</lpage>
          . https://doi.org/ 10.1109/ICASSP.
          <year>2013</year>
          .6638947
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>Rohit</given-names>
            <surname>Gupta</surname>
          </string-name>
          and
          <string-name>
            <given-names>Kush</given-names>
            <surname>Motwani</surname>
          </string-name>
          .
          <article-title>Linear Models for Video Memorability Prediction Using Visual and Semantic Features</article-title>
          .
          <source>In Proc. of MediaEval 2018 Workshop</source>
          , Sophia Antipolis, France, Oct.
          <volume>29</volume>
          -
          <fpage>31</fpage>
          ,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <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>
          .
          <year>2016</year>
          .
          <article-title>Deep Residual Learning for Image Recognition</article-title>
          .
          <source>In 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR)</source>
          .
          <volume>770</volume>
          -
          <fpage>778</fpage>
          . https://doi.org/10.1109/CVPR.
          <year>2016</year>
          .90
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>Sepp</given-names>
            <surname>Hochreiter</surname>
          </string-name>
          and
          <string-name>
            <given-names>Jürgen</given-names>
            <surname>Schmidhuber</surname>
          </string-name>
          .
          <year>1997</year>
          .
          <article-title>Long Short-Term Memory</article-title>
          .
          <source>Neural Computation</source>
          <volume>9</volume>
          ,
          <issue>8</issue>
          (
          <year>1997</year>
          ),
          <fpage>1735</fpage>
          -
          <lpage>1780</lpage>
          . https://doi.org/ 10.1162/neco.
          <year>1997</year>
          .
          <volume>9</volume>
          .8.
          <fpage>1735</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <surname>Yann</surname>
            <given-names>LeCun</given-names>
          </string-name>
          , Yoshua Bengio, and
          <string-name>
            <given-names>Geofrey</given-names>
            <surname>Hinton</surname>
          </string-name>
          .
          <year>2015</year>
          .
          <article-title>Deep learning</article-title>
          .
          <source>Nature</source>
          <volume>521</volume>
          (
          <issue>27 May 2015</issue>
          ),
          <volume>436</volume>
          . https://doi.org/10.1038/nature14539
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <surname>Tomas</surname>
            <given-names>Mikolov</given-names>
          </string-name>
          , Kai Chen, Greg Corrado, and
          <string-name>
            <given-names>Jefrey</given-names>
            <surname>Dean</surname>
          </string-name>
          .
          <year>2013</year>
          .
          <article-title>Efifcient Estimation of Word Representations in Vector Space</article-title>
          .
          <source>CoRR abs/1301</source>
          .3781 (
          <year>2013</year>
          ). arXiv:
          <volume>1301</volume>
          .3781 http://arxiv.org/abs/1301.3781
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <surname>David</surname>
            <given-names>E.</given-names>
          </string-name>
          <string-name>
            <surname>Rumelhart</surname>
            ,
            <given-names>Geofrey E.</given-names>
          </string-name>
          <string-name>
            <surname>Hinton</surname>
            , and
            <given-names>Ronald J.</given-names>
          </string-name>
          <string-name>
            <surname>Williams</surname>
          </string-name>
          .
          <year>1986</year>
          .
          <article-title>Learning representations by back-propagating errors</article-title>
          .
          <source>Nature</source>
          <volume>323</volume>
          ,
          <issue>6088</issue>
          (
          <year>1986</year>
          ),
          <fpage>533</fpage>
          -
          <lpage>536</lpage>
          . https://doi.org/10.1038/323533a0
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>Tijmen</given-names>
            <surname>Tieleman</surname>
          </string-name>
          and
          <string-name>
            <given-names>Geofrey</given-names>
            <surname>Hinton</surname>
          </string-name>
          .
          <source>2012. Lecture 6</source>
          .5
          <article-title>-rmsprop: Divide the gradient by a running average of its recent magnitude</article-title>
          .
          <source>COURSERA: Neural Networks for Machine Learning</source>
          . (
          <year>2012</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <surname>Duy-Tue Tran-Van</surname>
            ,
            <given-names>Le-Vu</given-names>
          </string-name>
          <string-name>
            <surname>Tran</surname>
          </string-name>
          , and
          <string-name>
            <surname>Minh-Triet Tran</surname>
          </string-name>
          .
          <article-title>Predicting Media Memorability Using Deep Features and Recurrent Network</article-title>
          .
          <source>In Proc. of MediaEval 2018 Workshop</source>
          , Sophia Antipolis, France, Oct.
          <volume>29</volume>
          -
          <fpage>31</fpage>
          ,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <surname>Aaron</surname>
            <given-names>Weiss</given-names>
          </string-name>
          , Benjamin Sang, and
          <string-name>
            <given-names>Sejong</given-names>
            <surname>Yoon</surname>
          </string-name>
          .
          <article-title>Predicting Memorability via Early Fusion Deep Neural Network</article-title>
          .
          <source>In Proc. of MediaEval 2018 Workshop</source>
          , Sophia Antipolis, France, Oct.
          <volume>29</volume>
          -
          <fpage>31</fpage>
          ,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>