<!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>Media Memorability Prediction Based on Machine Learning</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Dazhan Xu</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Xiaoyu Wu</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Guoquan Sun</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Communication University of China</institution>
          ,
          <country country="CN">China</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2020</year>
      </pub-date>
      <fpage>14</fpage>
      <lpage>15</lpage>
      <abstract>
        <p>In the context of videos today, with billions of hours of user generated video content on online platforms like social media, prediction of a cognitive measure like memorability has many potential applications including content recommendation, advertisement design and so on, which can bring convenience to people in everyday life and profit to companies. This paper describes our approach designed for the MediaEval 2020 Predicting Media Memorability Task. Our approach uses the preextracted features and the features extracted through a deep mutillevel encoding network along with provided textual description to predict a probability-like memorability score of videos. We use the same set of features for predicting both short-term and longterm media memorability respectively.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1 INTRODUCTION AND RELATED WORK</title>
      <p>
        The Predicting Media Memorability Task [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] is proposed at the
MediaEval 2020. The goal of this task is to automatically predict a
memorability score for a video reflecting its probability to be
remembered. For this, it is provided an available dataset
composed of 1500 videos, an initial development set of 590
videos and a supplemental development set of 410 videos with
short-term and long-term memorability scores along with an
official test set of 500 videos without ground-truth. We build a
model using the training data and utilize the trained model to
predict the short-term and long-term memorability of the test data.
      </p>
      <p>
        People have an ability to remember and recall photos and
videos with a surprising amount of detail. Interestingly, not all
content is stored and recalled equally well. Media Memorability
has attracted research interest recently in the area of Computer
Vision [
        <xref ref-type="bibr" rid="ref2 ref3">2, 3</xref>
        ]. The authors in [
        <xref ref-type="bibr" rid="ref2 ref3">2, 3</xref>
        ] used spatio-temporal features
to represent video dynamics and used a regression framework for
predicting memorability. Previous attempt [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] at predicting image
and video memorability discuss factors affecting memorability.
      </p>
      <p>
        In this paper, we investigate the use of various visual and
semantic features to predict video memorability. Among the
features provided we train models over AlexNetFC7, HOG, LBP,
HSVHist, RGBHist features and C3D-Predictions semantic
feature. In addition, we train models over textual features which
were extracted from BERT feature extractor [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ], and over features
extracted from a mutil-level encoding network [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. The models
are evaluated using Spearman’s rank correlation as the metric.
      </p>
    </sec>
    <sec id="sec-2">
      <title>2 APPROACH</title>
      <p>In this section, we discuss the task of Predicting Media
Memorability using video, image and textual features. We were
provided with the development set’s labels only. Statically we
divided the development set into the training video data (800
videos), and 200 videos for the validation set, which each data
sample is associated with its visual features and the corresponding
memorability score. Our approach is to develop individual models
per set of features provided or extracted and to then combine
some features that seem to have a better performance. In addition,
the short-term memorability and long-term memorability were
modelled independently using the same set of features in our
experiments.
2.1
We used image level features: Color Histogram in HSV and RGB
space, AlexNetFC7, HOG, LBP, VGGFC7 and video-level
feature: C3D. For the image-level features were extracted from 3
frames for each video, the 3 frames per each video represent the
first, the middle and the last frame in the movie. C3D feature was
used to represent spatio-temporal aspect of a video. We also
employed two additional features:</p>
      <p>
        Multi-level encoding feature. For a given video, we extract
uniformly a sequence of n frames with a pre-specified interval of
0.5 second. Per frame we extract deep features using a pertained
ImageNet CNN, as commonly used for video content analysis.
Consequently, the video is described by a sequence of feature
vectors {v1, v2,…,vn}, where vt indicates the deep feature vector
of the t-th frame. We utilize a multi-level encoding network [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]
that encodes the CNN feature vectors to get the most
representative feature. By jointly exploiting multi-level encodings,
the network explicitly and progressively learns to represent global,
local and temporal patterns in videos.
      </p>
      <p>
        Caption. Following a prior work [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], we considered utilizing
text description information provided in the development set.
Given the textual metadata per video, we generated a feature
vector using BERT model [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ].This yields a 768 dimensional
vector for each text description of the provided videos.
2.2
      </p>
    </sec>
    <sec id="sec-3">
      <title>Model description</title>
      <p>
        Here, we describe our proposed model and provide the training
details. The development set is randomly divided into 8:2 split for
training and validation respectively. We simply consider three
types of regressors, namely Gradient Boosting Regression (GBR),
Random Forest Regression (RFR) and a mutil-layer perceptron
neural network (MLP neural network). The input feature of each
model was standardized. For the MLP neural network, we input
each set of features to the first input layer of it, two hidden layer
along with ReLU activation and a fully connected linear layer is
applied on it to obtain a single number representing the
memorability score in the range from 0 to 1. The model is trained
using Adam optimizer [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] with Mean Squared Error Loss function
for 50 epochs on the training set.
      </p>
      <p>We trained different models for both short-term and
longterm memorability scores. For each set of features we tried each
of these 3 models on the validation dataset and results are
presented in Table1.
The results of each single feature for short-term and long-term
memorability prediction on the validation dataset are shown in
Table1. From Table 1, the multi-level encoding feature preforms
better than other visual representations. We think that the network
explicitly and progressively learns to represent global, local and
temporal patterns in videos by jointly exploiting multi-level
encodings. It means that the proposed method of feature
representation is effective.</p>
      <p>In addition, we think that the captions contain more clear
descriptions about the elements in the videos. If a specific object
is depicted by a word, the word embedding can describe the
relations of this object and others in the whole environment. The
visual features may contain some details of regions but not that
intuitive. So we consider combining the two features to predict the
final memorability score.</p>
      <p>
        We used the simple concatenation to combine the mutil-level
encoding feature and the textual feature extracted utilizing BERT
feature extractor [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. We input the combination of the features to
the MLP neural network to train a model and use the model to
predict the memorability score. The prediction results on the test
set are shown in Table 2. But the performance of the prediction
results seems poor according to the official feedback. We think
that since most of the features provided or extracted are very high
dimensional and the number of videos is less, over-fitting is a
major potential concern in this task. Though we drop few data in a
certain ratio, it seems not to work. Another possible reason is that
the division of the training set and validation set is random,
leading to the contingency of the results. Overall, our results seem
poor for the above reason or because of insufficient tuning of
parameter settings in our experiments.
3
      </p>
    </sec>
    <sec id="sec-4">
      <title>CONCLUSIONS</title>
      <p>In this work, we explored visual and textual representations for
videos and built a few regression models which can calculate a
memorability score for a given video. From our experiments, it
was clear that multi-level feature would improve the short-term
and long-term video memorability prediction, but it seemed poor
performance.</p>
      <p>Due to the new dataset which is more complicated and with
more actions happening. In future, we plan to conduct the Video
Memorability experiment with improved features like Dense
Optical Flow features, Action based features representing the
sequence of actions in the video, and also aim to leverage the
audio in the videos.</p>
    </sec>
    <sec id="sec-5">
      <title>ACKNOWLEDGMENTS</title>
      <p>This work was supported in part by the Natural Science
Foundation of China under Grant 61801441, in part by the Project
of the Beijing National Research Center for Information Science
and Technology of China under Grant BNR2019TD01022,in part
by the Fundamental Research Funds for the Central Universities
under Grant CUC19ZD003, Grant CUC2019B066, and in part by
the State Key Laboratory of Media Convergence and
Communication, Communication University of China.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>Alba</given-names>
            <surname>García Seco De Herrera</surname>
          </string-name>
          , Rukiye Savran Kiziltepe, Jon Chamberlain, Mihai Gabriel Constantin,
          <string-name>
            <surname>Claire-Hélène</surname>
            <given-names>Demarty</given-names>
          </string-name>
          , Faiyaz Doctor, Bogdan Ionescu,
          <string-name>
            <given-names>and Alan F.</given-names>
            <surname>Smeaton</surname>
          </string-name>
          .
          <source>Overview of MediaEval 2020 Predicting Media Memorability task: What Makes a Video Memorable? Working Notes Proceedings of the MediaEval 2020 Workshop. December</source>
          <volume>14</volume>
          -15
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>Romain</given-names>
            <surname>Cohendet</surname>
          </string-name>
          , Karthik Yadati, Ngoc QK Duong, and
          <string-name>
            <surname>Claire-Hélène Demarty</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>Annotating, understanding, and predicting long-term video memorability</article-title>
          .
          <source>In Proceedings of the 2018 ACM on International Conference on Multimedia Retrieval. ACM</source>
          ,
          <volume>178</volume>
          -
          <fpage>186</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Sumit</given-names>
            <surname>Shekhar</surname>
          </string-name>
          , Dhruv Singal, Harvineet Singh,
          <string-name>
            <given-names>Manav</given-names>
            <surname>Kedia</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Akhil</given-names>
            <surname>Shetty</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Show and recall: Learning what makes videos memorable</article-title>
          .
          <source>In Proceedings of the IEEE International Conference on Computer Vision</source>
          . 2730-
          <fpage>2739</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Michael</given-names>
            <surname>Gygli</surname>
          </string-name>
          , Helmut Grabner, Hayko Riemenschneider, Fabian Nater, and Luc Van Gool.
          <year>2013</year>
          .
          <article-title>The interestingness of images</article-title>
          .
          <source>In Proceedings of the IEEE International Conference on Computer Vision</source>
          .1633-
          <fpage>1640</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>Jacob</given-names>
            <surname>Devlin</surname>
          </string-name>
          ,
          <string-name>
            <surname>Ming-Wei</surname>
            <given-names>Chang</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Kenton</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>and Kristina</given-names>
            <surname>Toutanova</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding</article-title>
          . CoRR abs/
          <year>1810</year>
          .04805 (
          <year>2018</year>
          ). http://arxiv.org/abs/
          <year>1810</year>
          .04805.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>Jianfeng</given-names>
            <surname>Dong;Xirong Li</surname>
          </string-name>
          ;
          <article-title>Chaoxi Xu;Shouling Ji;Yuan He;Gang Yang;Xun Wang 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR).</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <surname>Diederik</surname>
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Kingma</surname>
            and
            <given-names>Jimmy</given-names>
          </string-name>
          <string-name>
            <surname>Ba</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Adam: A Method for Stochastic Optimization</article-title>
          . (
          <year>2017</year>
          ).
          <source>arXiv:cs.LG/1412</source>
          .6980.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>