<!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>Cross-modal Interaction for Video Memorability Prediction</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Youwei Lu</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>
        <aff id="aff0">
          <label>0</label>
          <institution>Communication University of China</institution>
          ,
          <country country="CN">China</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2021</year>
      </pub-date>
      <fpage>13</fpage>
      <lpage>15</lpage>
      <abstract>
        <p>It is important to select memorable videos from the huge amount of videos, which can serve other fields, such as video summary, movie production, etc. The Predicting Media Memorability task in MediaEval2021 focuses on predicting how well a video is remembered. In this paper, we use a text-guided visual cross-modal guidance approach for the video memorability prediction task. Based on this, we use a late fusion approach to fuse features from multiple modalities and predict the final video memorability scores.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>INTRODUCTION</title>
      <p>
        The image memorability task is already a relatively mature field,
and much work has been proposed to study it [
        <xref ref-type="bibr" rid="ref1 ref10 ref8 ref9">1, 8–10</xref>
        ]. However,
the video memorability prediction task is a brand new task from an
artificial intelligence perspective. For images, people may memorize
a certain region in the image, which leads to high memorability
scores. For videos, people may memorize certain frames in a video
and video memorability prediction is a more complex and dificult
task. The Predicting Media Memorability task in the MediaEval
2021 workshop [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] is designed for this purpose, with the aim of
investigating how to assess better the degree to which a video
gives a moment of memory. Video memorability scores are used to
measure this metric. Over the past two years, work has been done
on the video memorability prediction task in the 2019 [
        <xref ref-type="bibr" rid="ref14 ref19">14, 19</xref>
        ] and
2020 [
        <xref ref-type="bibr" rid="ref12 ref13">12, 13</xref>
        ] editions of the task, where we looked at and considered
the advantages and disadvantages of other methods, and finally
we proposed our own method for predicting video memorability
scores.
      </p>
    </sec>
    <sec id="sec-2">
      <title>RELATED WORK</title>
      <p>
        There are multiple attributes in videos, such as vision and audio,
which play important roles in video memorability prediction.
Researchers have used diferent methods to extract the features of
multiple modalities to obtain a good feature representation. For
example, the authors in [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ] tried to extract features of video frames
using 2D convolution method, Inception-V3 and used them to
compose features of the whole video. Authors in [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ] tried to extrat
textual features with Glove model [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ], which is a common model
used in the NLP field. Researchers in [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] used a VGGish model
[
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] to extract audio features.
      </p>
      <p>
        Cross-modal interaction approaches are widely used in the field
of computer vision. For example, in [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ], textual features are used
to enhance the representation of visual features in the image
captioning task and this is achieved with good results. We therefore
try to introduce the approach of cross-modal interaction methods
to the field of video memorability prediction.
3
      </p>
    </sec>
    <sec id="sec-3">
      <title>APPROACH</title>
      <p>
        As we have previously described, visual, textual, and audio
information play an important role in the video memorability prediction
task. We therefore carefully considered the feature extraction steps
for each modality. At the same time, we argued that since the text
was manually annotated based on the video content, there was
semantic consistency between the textual and visual content, and
since previous studies have shown that textual information played
a role in memorability prediction tasks [
        <xref ref-type="bibr" rid="ref18 ref3">3, 18</xref>
        ], textual features
were used to guide the representation of visual features, and the
two modal features were interacted. After obtaining the features
from each of the above three modalities, they were passed through
several MLP structures and predicted their respective video
memorability scores. Finally, we used an adaptive score fusion strategy
to fuse the scores of the three modalities.
3.1
      </p>
    </sec>
    <sec id="sec-4">
      <title>Visual Feature</title>
      <p>
        The 3D and 2D convolutional neural networks each have their own
advantages when dealing with video contents. The 3D
convolutional neural network takes into account the temporal features of
the video, while the 2D convolutional neural network has a smaller
number of parameters. We use a 3D convolutional neural network,
SlowFast [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ], to extract features from the video as Global-level
features. We also use a ResNet-101 network [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] to extract features
from the video frames. For each input video, we sample 8 frames
evenly. These video frame features are fed into the GRU network
[
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] to solve the timing-independent problem, and the GRU network
outputs the features as Temporal-aware level features. Afterwards,
these features are fed into a 1D convolutional neural network with
diferent convolutional kernel sizes 2,3,4,5 to sense visual features
of diferent local sizes, and the output of the 1D convolutional
neural network is used as the Local level features. We splice the Global,
Temporal-aware, and Local level features as visual features.
3.2
      </p>
    </sec>
    <sec id="sec-5">
      <title>Textual Feature</title>
      <p>
        We used the Bert model [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] to extract the textual features of the
video. For each text, we first perform a word separation operation
and prefix each text with a [CLS] token. The features corresponding
to the last layer of [CLS] token in Bert was used as features for the
whole text. For videos with multiple texts, we average the features
of multiple texts as the textual features corresponding to the video
because of the similarity of these texts.
3.3
      </p>
    </sec>
    <sec id="sec-6">
      <title>Audio Feature</title>
      <p>
        We used the VGGish model [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] to extract audio features. First, we
cut each video into segments without overlapping in 0.96s, and each
segment was fed into the VGGish network and a 128-D vector was
generated. We fed this vector into an MLP structure and predicted
the video memorability score of the segment. We take the median
score of these segments as the audio stream video memorability
prediction score for the video.
3.4
      </p>
    </sec>
    <sec id="sec-7">
      <title>Cross-modal Interaction</title>
      <p>With the visual and textual features already extracted above, we
used the textual features to interact with the visual features. For
the visual features extracted above, we first cut them into M=8
segments and mapped the visual features and textual features into
the same semantic space. Afterwards, the mapped textual features
and each segment of visual features were integrated to calculate
the weight of each segment of visual features. We used this weight
to weight and sum the cut M-segment visual features to obtain the
interacted features. Through this interaction, the visual features
exploited the semantic consistency with the textual features to
enhance the expressiveness of their own features.
3.5</p>
    </sec>
    <sec id="sec-8">
      <title>Score Fusion</title>
      <p>We trained simple MLP networks using visual, textual, and audio
features separately as regressors for predicting the video
memorability scores of the respective modalities. MLP network is composed
of several fully connected layers and non-linear activation
functions. Afterwards, an adaptive weight assignment strategy was used
to fuse the three scores. We varied the weights of each modality
score in steps of 0.05, but ensured that the total weight sums to 1.
In this way, we fused the three scores and predicted the final video
memorability score.
4</p>
    </sec>
    <sec id="sec-9">
      <title>RESULTS AND ANALYSIS</title>
      <p>In this section, we describe specifically how we used the TRECVid
and Memento10k dataset in our experiments and present the results
in Table 1 and Table 2 below. And this is followed by a brief analysis
of the results of the experiments.</p>
      <p>Table 1 shows the experimental results of our method on TRECVid
2021. w/(dev) in the table means that the development set was used,
while w/o(dev) means that the development set was not used. This
is because the development set was not oficially released at the
beginning of the competition, so we only used the training set to
train the model. When the development set was not used, we
divided the training set of 590 videos into 479 as the training set and
111 as the validation set to train our model. When the development
set was used, we considered it unreasonable to use only 590 videos
as the training set and more than 1000 videos as the validation set,
considering that the development set contains nearly 1000 videos.
So we mixed the training set and development set together and
divided the data set into training and validation sets at a ratio of
0.8/0.2. We believe that more data would be beneficial to the model.
We were surprised to find that when training a short-term video
memorability prediction model, the model without the
development set achieved better performance, both in terms of raw and
normalized scores, while when training a long-term video
memorability prediction model, using the development set improved
the performance significantly. Now we do not know the reason for
this phonomenon. Additionally, in score fusion stage, visual feature
occupies the greatest weight and textual feature is scondary to it.</p>
      <p>
        Table 2 shows the results of our method on the Memento10k
dataset. When training with the Memento10k dataset, we trained
our model using the oficially published training/validation set
partitioning method. We should also explain that we did not use audio
features when training the Memento10k dataset, partly because
some of the videos lack audio, and partly because in [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ] the
authors did not use audio features, so we did not use audio features
either. Our model achieves better performance on the Memento10k
dataset, and we speculate that the reason for this is that more data
allows for better training of the model and mitigates the efects of
overfitting.
5
      </p>
    </sec>
    <sec id="sec-10">
      <title>DISCUSSION AND OUTLOOK</title>
      <p>In this competition, we first extracted features from multiple
modalities, then we used cross-modal interaction to enhance the
representation of visual features, and finally we used late fusion to fuse
the video memorability scores predicted by multiple modalities to
obtain the final video memorability scores. In addition to this, we
observed that optical flow was used to predict video memorability
scores in multiple methods, which is one of our future research
directions. However, as optical flow is time-consuming and
labourintensive, we did not use optical flow features in this experiment
for the time being.</p>
    </sec>
    <sec id="sec-11">
      <title>ACKNOWLEDGMENTS</title>
      <p>This work is supported by National Natural Science Foundation of
China (No. 61801441, No. 61701277,No. 61771288), National Key R
&amp; D plan of the 13th Five-Year plan (No. 2017YFC0821601), cross
media intelligence special fund of Beijing National Research Center
for Information Science and Technology ( No. BNR2019TD01022
), discipline construction project of “Beijing top-notch” discipline
(Internet information of Communication University of China) 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>Erdem</given-names>
            <surname>Akagunduz</surname>
          </string-name>
          , Adrian G Bors,
          <article-title>and Karla</article-title>
          K Evans.
          <year>2019</year>
          .
          <article-title>Defining image memorability using the visual memory schema</article-title>
          .
          <source>IEEE Trans. Pattern Anal. Mach. Intell</source>
          .
          <volume>42</volume>
          ,
          <issue>9</issue>
          (
          <year>2019</year>
          ),
          <fpage>2165</fpage>
          -
          <lpage>2178</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>Kyunghyun</given-names>
            <surname>Cho</surname>
          </string-name>
          , Bart Van Merriënboer,
          <string-name>
            <surname>Caglar Gulcehre</surname>
            , Dzmitry Bahdanau, Fethi Bougares, Holger Schwenk, and
            <given-names>Yoshua</given-names>
          </string-name>
          <string-name>
            <surname>Bengio</surname>
          </string-name>
          .
          <year>2014</year>
          .
          <article-title>Learning phrase representations using RNN encoder-decoder for statistical machine translation</article-title>
          .
          <source>In Proceedings of the Empiricial Methods in Natural Language Processing (EMNLP</source>
          <year>2014</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <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 predicƒting long-term video memorability</article-title>
          .
          <source>In Proc. 2018 ACM on International Conference on Multimedia Retrieval</source>
          .
          <fpage>178</fpage>
          -
          <lpage>186</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <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>
          .
          <source>In Proceedings of the 2019 Conference of the North American Chapter of Association for Computational Linguitics: Human Language Technologies</source>
          , Vol.
          <volume>1</volume>
          .
          <fpage>4171</fpage>
          -
          <lpage>4186</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>Christoph</given-names>
            <surname>Feichtenhofer</surname>
          </string-name>
          , Haoqi Fan, Jitendra Malik, and
          <string-name>
            <given-names>Kaiming</given-names>
            <surname>He</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Slowfast networks for video recognition</article-title>
          .
          <source>In Proc. IEEE/CVF international conference on computer vision</source>
          . 6202-
          <fpage>6211</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>Kaiming</given-names>
            <surname>He</surname>
          </string-name>
          , Xiangyu Zhang, Shaoqing Ren, and
          <string-name>
            <given-names>Jian</given-names>
            <surname>Sun</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Deep residual learning for image recognition</article-title>
          .
          <source>In Proc. IEEE conference on computer vision and pattern recognition</source>
          .
          <volume>770</volume>
          -
          <fpage>778</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Shawn</given-names>
            <surname>Hershey</surname>
          </string-name>
          , Sourish Chaudhuri, Daniel PW Ellis, Jort F Gemmeke,
          <string-name>
            <surname>Aren</surname>
            <given-names>Jansen</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>R Channing</given-names>
            <surname>Moore</surname>
          </string-name>
          , Manoj Plakal, Devin Platt,
          <article-title>Rif A Saurous, Bryan Seybold, and</article-title>
          <string-name>
            <surname>others.</surname>
          </string-name>
          <year>2017</year>
          .
          <article-title>CNN architectures for largescale audio classification</article-title>
          .
          <source>In Proc. 2017 IEEE international conference on acoustics, speech and signal processing (icassp)</source>
          .
          <source>IEEE</source>
          ,
          <fpage>131</fpage>
          -
          <lpage>135</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>Phillip</given-names>
            <surname>Isola</surname>
          </string-name>
          , Jianxiong Xiao, Antonio Torralba, and
          <string-name>
            <given-names>Aude</given-names>
            <surname>Oliva</surname>
          </string-name>
          .
          <year>2011</year>
          .
          <article-title>What makes an image memorable?</article-title>
          .
          <source>In Proc. IEEE CVPR</source>
          <year>2011</year>
          .
          <volume>145</volume>
          -
          <fpage>152</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>Peiguang</given-names>
            <surname>Jing</surname>
          </string-name>
          , Yuting Su, Liqiang Nie, Huimin Gu, Jing Liu, and
          <string-name>
            <given-names>Meng</given-names>
            <surname>Wang</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>A framework of joint low-rank and sparse regression for image memorability prediction</article-title>
          .
          <source>IEEE Trans. Circuits Syst. Video Technol</source>
          .
          <volume>29</volume>
          ,
          <issue>5</issue>
          (
          <year>2018</year>
          ),
          <fpage>1296</fpage>
          -
          <lpage>1309</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <surname>Aditya</surname>
            <given-names>Khosla</given-names>
          </string-name>
          , Akhil S Raju, Antonio Torralba, and
          <string-name>
            <given-names>Aude</given-names>
            <surname>Oliva</surname>
          </string-name>
          .
          <year>2015</year>
          .
          <article-title>Understanding and predicting image memorability at a large scale</article-title>
          .
          <source>In Proceedings of the IEEE international conference on computer vision</source>
          . 2390-
          <fpage>2398</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>Rukiye</given-names>
            <surname>Savran</surname>
          </string-name>
          <string-name>
            <given-names>Kiziltepe</given-names>
            , Mihai Gabriel Constantin,
            <surname>Claire-Hélène</surname>
          </string-name>
          <string-name>
            <surname>Demarty</surname>
          </string-name>
          , Graham Healy, Camilo Fosco, Alba García Seco de Herrera, Sebastian Halder, Bogdan Ionescu, Ana Matran-Fernandez,
          <string-name>
            <given-names>Alan F.</given-names>
            <surname>Smeaton</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Lorin</given-names>
            <surname>Sweeney</surname>
          </string-name>
          .
          <year>2021</year>
          .
          <article-title>Overview of The MediaEval 2021 Predicting Media Memorability Task</article-title>
          .
          <source>In Working Notes Proceedings of the MediaEval 2021 Workshop.</source>
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <surname>Ricardo</surname>
            <given-names>Kleinlein</given-names>
          </string-name>
          , Cristina Luna-Jiménez,
          <string-name>
            <given-names>Zoraida</given-names>
            <surname>Callejas</surname>
          </string-name>
          , and
          <string-name>
            <surname>Fernando</surname>
          </string-name>
          Fernández-Martínez.
          <year>2020</year>
          .
          <article-title>Predicting Media Memorability from a Multimodal Late Fusion of Self-Attention and LSTM Models</article-title>
          .
          <source>In Working Notes Proceedings of the MediaEval 2020 Workshop (CEUR Workshop Proceedings).</source>
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <surname>Phuc H Le-Khac</surname>
          </string-name>
          ,
          <article-title>Ayush</article-title>
          K Rai, Graham Healy, Alan F Smeaton, and
          <string-name>
            <surname>Noel E O'Connor</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>Investigating Memorability of Dynamic Media</article-title>
          .
          <source>In Working Notes Proceedings of the MediaEval 2020 Workshop (CEUR Workshop Proceedings).</source>
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <surname>Roberto</surname>
            <given-names>Leyva</given-names>
          </string-name>
          , Faiyaz Doctor, AG Seco de Herrera, and
          <string-name>
            <given-names>Sohail</given-names>
            <surname>Sahab</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Multimodal deep features fusion for video memorability prediction</article-title>
          .
          <source>In Working Notes Proceedings of the MediaEval 2019 Workshop (CEUR Workshop Proceedings).</source>
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <surname>Jonghwan</surname>
            <given-names>Mun</given-names>
          </string-name>
          , Minsu Cho, and Bohyung Han.
          <year>2017</year>
          .
          <article-title>Text-guided attention model for image captioning</article-title>
          .
          <source>In Proceedings of the AAAI Conference on Artificial Intelligence</source>
          , Vol.
          <volume>31</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <surname>Anelise</surname>
            <given-names>Newman</given-names>
          </string-name>
          , Camilo Fosco, Vincent Casser,
          <string-name>
            <given-names>Allen</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <surname>Barry McNamara</surname>
            ,
            <given-names>and Aude</given-names>
          </string-name>
          <string-name>
            <surname>Oliva</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>Multimodal memorability: Modeling efects of semantics and decay on video memorability</article-title>
          .
          <source>In Computer Vision-ECCV</source>
          <year>2020</year>
          : 16th European Conference, Glasgow, UK,
          <year>August</year>
          23-
          <issue>28</issue>
          ,
          <year>2020</year>
          , Proceedings,
          <source>Part XVI 16</source>
          . Springer,
          <fpage>223</fpage>
          -
          <lpage>240</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <surname>Jefrey</surname>
            <given-names>Pennington</given-names>
          </string-name>
          , Richard Socher, and
          <string-name>
            <given-names>Christopher D</given-names>
            <surname>Manning</surname>
          </string-name>
          .
          <year>2014</year>
          .
          <article-title>Glove: Global vectors for word representation</article-title>
          .
          <source>In Proc. 2014 conference on empirical methods in natural language processing (EMNLP)</source>
          .
          <volume>1532</volume>
          -
          <fpage>1543</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <surname>Sumit</surname>
            <given-names>Shekhar</given-names>
          </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 Proc. IEEE International Conference on Computer Vision Workshops</source>
          .
          <fpage>2730</fpage>
          -
          <lpage>2739</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <surname>Le-Vu</surname>
            <given-names>Tran</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vinh-Loc Huynh</surname>
          </string-name>
          , and
          <string-name>
            <surname>Minh-Triet Tran</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Predicting Media Memorability Using Deep Features with Attention and Recurrent Network.</article-title>
          .
          <source>In Working Notes Proceedings of the MediaEval 2019 Workshop (CEUR Workshop Proceedings).</source>
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <surname>Shuai</surname>
            <given-names>Wang</given-names>
          </string-name>
          , Linli Yao, Jieting Chen, and
          <string-name>
            <given-names>Qin</given-names>
            <surname>Jin</surname>
          </string-name>
          .
          <year>2019</year>
          . RUC at MediaEval 2019:
          <article-title>Video Memorability Prediction Based on Visual Textual and Concept Related Features.</article-title>
          .
          <source>In Working Notes Proceedings of the MediaEval 2019 Workshop (CEUR Workshop Proceedings).</source>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>