<!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>NewsSeek-NOVA at MediaEval 2021: Context-enriched Multimodal Transformers For News Images Re-matching</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Cláudio Bartolomeu</string-name>
          <email>R@K</email>
          <email>c.bartolomeu@campus.fct.unl.pt</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Rui Nóbrega</string-name>
          <email>rui.nobrega@fct.unl.pt</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>David Semedo</string-name>
          <email>df.semedo@fct.unl.pt</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>NOVA LINCS, NOVA School of Science and Technology</institution>
          ,
          <addr-line>Lisbon</addr-line>
          ,
          <country country="PT">Portugal</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2021</year>
      </pub-date>
      <fpage>13</fpage>
      <lpage>15</lpage>
      <abstract>
        <p>In this paper, we present our participation in the NewsImages task where we address the complex challenge of connecting images to news text. We leverage transformer-based multimodal models to jointly attend to diferent contextual news elements when performing predictions, and transfer learning to improve the performance. Our experiments demonstrate that the models benefit from jointly attending to context-enriched samples, supporting our hypothesis. We also extracted rich insights on the principles underlying the connection between images and news text.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>INTRODUCTION</title>
      <p>
        News articles are rich multimodal pieces that aim to inform users in
a concise and accurate manner. These are often composed by a title,
a headline and a body of text. To better convey the topic and events
being covered, journalists use images as illustrations. Providing
visual elements helps the news reader visualizing the event and
have a better sense of what happened [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ]. Connecting news text
and images is a complex endeavour as it goes beyond matching
what we see in an image (visual concepts) to words. Instead, it is
often explained by a combination of journalistic criteria combining
authenticity, topic semantic relevance and aesthetics [
        <xref ref-type="bibr" rid="ref10 ref9">9, 10</xref>
        ].
      </p>
      <p>
        In this paper we present our approach to the NewsImages task [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ],
which asks researchers to re-match news images to articles, towards
devising a systematic approach that captures the intricacies of how
the two modalities are connected, in a journalistic perspective.
      </p>
      <p>
        Multimodal Transformer-based architectures [
        <xref ref-type="bibr" rid="ref14 ref2 ref8">2, 8, 14</xref>
        ] have
demonstrated to be highly efective at modeling image and text semantics.
These can be a) encoder-based, such as LXMERT [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ], which is
composed by an object relationship, language and cross-modality
encoders, or b) decoder-based (hence generative) like VL-T5/BART [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ],
which adopts a single decoder architecture to tackle multiple
visiolinguistic tasks in a generative manner. We will investigate how
suited these self-attention models are to news content.
      </p>
      <p>Particularly, in the developed models we followed the LXMERT
architecture to exploit diferent ways to enrich these models context.
The idea is to provide complementary views of the two modalities,
and leverage the model’s capability of jointly attending to
diferent news elements when performing a prediction. Then, through
transfer-learning, we were able to significantly improve the
performance on the NewsImages task dataset. The results confirm the
importance of providing extra context, in order to bridge the
semantic gap between images and news text. Namely, our best-performing
variant, which achieved an MRR@100 of 9.31%, is the one that has
access to more complementary views of the news piece.</p>
    </sec>
    <sec id="sec-2">
      <title>METHODOLOGY</title>
      <p>
        The connection between news and images goes beyond visual
concept matching [
        <xref ref-type="bibr" rid="ref1 ref20 ref3">1, 3, 20</xref>
        ]. In this scenario, not only the challenges
of image-text matching are inherited [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], but also the underlying
journalistic subjectivity that stems from trade-of aspects, such as,
aesthetics or authenticity. Thus, we focused on adopting a model
capable of considering multiple views of news articles, to predict
if an image matches a news article. Accordingly, we hypothesize
that by leveraging on self-attention models, specifically the
Transformer [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ], and by providing extra contextual information, we
allow the model to jointly reason over multiple data views and
learn the relationships between text and images directly from data.
      </p>
      <p>
        News pieces are multimodal documents composed by title, text
body (as a set of paragraphs) and images that are used throughout
the news piece to illustrate specific paragraphs, providing extra
context. We also find several named entities, such as persons or
locations, that are crucial that define its topic and scope. The
challenge is on jointly using all these information to match news to
images. We observed the following challenges: a) the topic of a
news article cannot always be extracted from the images, b) the
news title is highly concise and lacks context (e.g. "63-year-old
pedestrian succumbs to his injuries"), c) to correctly capture the
news context it is important to consider the mentioned entities, as
well as the news central topic, and finally, d) deal with subjectivity,
evidenced by situations where multiple images could actually be
used, and the pattern is dependent on the journalist preference.
Data Pre-processing and Protocol. The dataset is comprised by
news articles, composed by title, text snippet (in German) and an
image. Since most multimodal pre-trained models were trained
in English, and assuming that we do not lose information in the
translation process, we used a combination of the Google’s API
and OPUS-MT [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ], available in HuggingFace [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ], to translate
texts. For each news article, we extracted entities from the Title
and Text Snippet using Spacy [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. For images, we used a Faster
RCNN [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ], trained on Visual Genome [
        <xref ref-type="bibr" rid="ref1 ref7">1, 7</xref>
        ], and extract a total of 36
region embeddings per image. This will allow the model to attend
individually to specific parts of an image. We split the development
set (7530 samples) by using 500 samples for validation, 1000 for
testing and the remaining for training.
      </p>
      <p>
        Approach. We tackled the previously discussed challenges by
adopting a multimodal transformer, LXMERT [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ], and learning
enriched multimodal representations of news pieces. In particular,
we trained the model end-to-end, by optimizing all its loss functions
except the visual question-answering one. It jointly learns internal
data representations and optimizes for matching images to news
texts, by scoring individual (image, news text) pairs.
      </p>
      <p>
        Exploiting News Context. We investigated diferent ways to
provide extra context to the model. The first baseline takes as input
news title + snippet, and the extracted image regions. Then, since
entities play a major role in news, inspired by [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ] which extends
masked language modeling to account for coarse-grain (n-gram)
information, we force the model to pay special attention to entities.
Namely, we added a separate masked language modeling loss, with
increased masking probability for entity tokens.
      </p>
      <p>
        Faces-entity context. We noticed that a large portion of images
contain faces of persons, and these are then mentioned in the news
piece. To support this new input, we added an extra projection
layer to LXMERT, mapping face features internal representations.
As a result, the visual sub-network is augmented with face
embeddings, such that the model will be able to jointly reason over
image regions, faces, news text and entities, and eventually learn
the relations between faces and entities. Faces were extracted from
all images using MTCNN [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ], and face recognition embeddings
from FaceNet [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] were used as features.
      </p>
      <p>
        Transfer Learning. Given the reduced size of the NewsImages
task dataset, we resorted to pre-training, to improve model’s
representations. Namely, we performed pre-training using the
NYTimes800k [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ] dataset, which comprises 440k news articles ( 100
times bigger). Then, we fine-tuned the model using the development
dataset. This allows the model to be exposed to a greater number of
diferent news pieces, therefore improving its representations and
better capture cross-modality relationships. In NYTimes800k, each
article can have multiples images. Moreover, in addition to the title
and news text body, each image also contains a caption. Since these
captions are describing an individual image, sometimes they do not
reflect the news article main topic. Thus, to have rich context, we
considered the headline, a snippet and the image caption.
3
      </p>
    </sec>
    <sec id="sec-3">
      <title>RESULTS AND DISCUSSION</title>
      <p>In all experiments we pre-trained LXMERT using NYTimes800k
with diferent combinations of the article’s headline, snippet and
image caption - and fine-tuned it on the task’s dataset (development
split). For the task dataset, we fixed the language input to always
use the article’s title and text. Table 1 describes our runs results.
We choose our best runs based on the results in our test split.
Run 1 - NT-CS + ME-TS. In this experiment we used NYTimes800k
articles’ snippet (S) and image caption (C) during pre-training. From
the task dataset we used the articles’ title (T) and snippet (S).
Compared to our baseline without pre-training, we noticed an
improvement of ≈ 47.1% in MRR@100, on our test split. This shows the
importance of transfer-learning to improve the model performance.
Run 2 - NT-CS + ME-TSE. For this run, we used NYTimes800k
articles’ snippet (S) and image caption (C). From the task dataset
we used the title (T), snippet (S) and named entities (E). We noticed
improvements in R@50 and R@100, while worsening the other
metrics, what can be due to not using entities in pre-training.
Run 3 - NT-CHS + ME-TS. In this run we wanted to assess the
impact of considering the headline (H) in pre-training, together with
news snippet (S) and image caption (C). In this scenario we have
a better alignment between elements used in pre-training vs.
finetuning. We observed an improvement in R@5, and a deterioration
of R@10, R@50 and R@100.</p>
      <p>Run 4 - NT-CSEF + ME-TSEF. In this last run, we used our
augmented LXMERT architecture to incorporate both face features (F)
and entities (E). This experiment held the best results in MRR@100,
C. Bartolomeu et. al.
Run
1-NT-CS + ME-TS
2-NT-CS + ME-TSE
3-NT-CHS + ME-TS
4-NT-CSEF + ME-TSEF
5-RRF (1 + 2 + 4)</p>
      <p>MRR
R@10 and R@50, what corroborates with our experiments, in which
it achieved the best overall results. This proves that allowing the
model to jointly attend to faces and entities, better leverages the
context to establish the connection between images and news text.
Run 5 - RRF. During our experiments, we observed that diferent
configurations obtained better results at diferent recall thresholds
( value in R@K). Thus, in our last run, we used Reciprocal Rank
Fusion to merge the first, second and forth experiments’ ranks. This
held the best results for all metrics.
3.1</p>
    </sec>
    <sec id="sec-4">
      <title>Models’ Predictions Inspection</title>
      <p>To understand our model decisions, we inspect in Figure 1 two
sample predictions (using Run #4). In the top row, the model
succeeds, and in the bottom row it ranks the correct image in position
45. Both examples illustrate the inherent subjectivity of the task,
as semantically, any of the shown images seem to match the
article’s text. Notwithstanding, we can see that in general, the model
captures the complex relations between modalities.
4</p>
    </sec>
    <sec id="sec-5">
      <title>CONCLUSIONS AND FUTURE WORK</title>
      <p>In this work we proposed a set of context-enriched variants, of
a multimodal transformer model, to address the task of news
rematching. These alternate between the type of context (textual
and visual) provided to the model, and used to learn the
connection between images and text. We confirmed that going beyond
news title and a small snippet is crucial. Despite our promising
results, we posit that there are essentially two key challenges that
follow: a) learn how diferent news entities are related and how they
are visually materialized, and b) dealing with inherent journalistic
subjectivity when opting for a specific image.</p>
      <p>Acknowledgments This work has been partially funded by the iFetch
project, Ref. 45920, co-financed by ERDF, COMPETE 2020, NORTE 2020
and FCT under CMU Portugal, and by the FCT project NOVA LINCS Ref.
(UIDB/04516/2020).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>Peter</given-names>
            <surname>Anderson</surname>
          </string-name>
          , Xiaodong He, Chris Buehler, Damien Teney, Mark Johnson, Stephen Gould,
          <string-name>
            <given-names>and Lei</given-names>
            <surname>Zhang</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>Bottom-Up and TopDown Attention for Image Captioning and Visual Question Answering</article-title>
          .
          <source>In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR).</source>
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>Jaemin</given-names>
            <surname>Cho</surname>
          </string-name>
          , Jie Lei,
          <string-name>
            <given-names>Hao</given-names>
            <surname>Tan</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Mohit</given-names>
            <surname>Bansal</surname>
          </string-name>
          .
          <year>2021</year>
          .
          <article-title>Unifying Visionand-Language Tasks via Text Generation</article-title>
          .
          <source>In Proceedings of the 38th International Conference on Machine Learning (Proceedings of Machine Learning Research)</source>
          ,
          <source>Marina Meila and Tong Zhang (Eds.)</source>
          , Vol.
          <volume>139</volume>
          .
          <string-name>
            <surname>PMLR</surname>
          </string-name>
          ,
          <year>1931</year>
          -
          <fpage>1942</fpage>
          . https://proceedings.mlr.press/v139/cho21a.html
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Fartash</given-names>
            <surname>Faghri</surname>
          </string-name>
          , David J Fleet,
          <source>Jamie Ryan Kiros, and Sanja Fidler</source>
          .
          <year>2018</year>
          .
          <article-title>VSE++: Improving Visual-Semantic Embeddings with Hard Negatives</article-title>
          . (
          <year>2018</year>
          ). https://github.com/fartashf/vsepp
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Yan</given-names>
            <surname>Gong</surname>
          </string-name>
          , Georgina Cosma, and
          <string-name>
            <given-names>Hui</given-names>
            <surname>Fang</surname>
          </string-name>
          .
          <year>2021</year>
          .
          <article-title>On the Limitations of Visual-Semantic Embedding Networks for Image-to-Text Information Retrieval</article-title>
          .
          <source>Journal of Imaging 7</source>
          ,
          <issue>8</issue>
          (
          <year>2021</year>
          ). https://doi.org/10.3390/ jimaging7080125
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>Matthew</given-names>
            <surname>Honnibal</surname>
          </string-name>
          and
          <string-name>
            <given-names>Ines</given-names>
            <surname>Montani</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>spaCy 2: Natural language understanding with Bloom embeddings, convolutional neural networks and incremental parsing</article-title>
          . (
          <year>2017</year>
          ). https://spacy.io/
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>Benjamin</given-names>
            <surname>Kille</surname>
          </string-name>
          , Andreas Lommatzsch, Özlem Özgöbek, Mehdi Elahi, and
          <string-name>
            <surname>Duc-Tien</surname>
          </string-name>
          Dang-Nguyen.
          <article-title>News Images in MediaEval 2021</article-title>
          .
          <source>In Working Notes Proceedings of the MediaEval 2021 Workshop</source>
          , Online,
          <fpage>13</fpage>
          -
          <lpage>15</lpage>
          December
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Ranjay</given-names>
            <surname>Krishna</surname>
          </string-name>
          , Yuke Zhu, Oliver Groth, Justin Johnson, Kenji Hata, Joshua Kravitz, Stephanie Chen, Yannis Kalantidis,
          <string-name>
            <surname>Li-Jia</surname>
            <given-names>Li</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>David A.</given-names>
            <surname>Shamma</surname>
          </string-name>
          , Michael S. Bernstein, and
          <string-name>
            <surname>Li</surname>
          </string-name>
          Fei-Fei.
          <year>2017</year>
          .
          <article-title>Visual Genome: Connecting Language and Vision Using Crowdsourced Dense Image Annotations</article-title>
          .
          <source>Int. J. Comput. Vision 123</source>
          , 1 (may
          <year>2017</year>
          ),
          <fpage>32</fpage>
          -
          <lpage>73</lpage>
          . https: //doi.org/10.1007/s11263-016-0981-7
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>Jiasen</given-names>
            <surname>Lu</surname>
          </string-name>
          , Dhruv Batra, Devi Parikh, and
          <string-name>
            <given-names>Stefan</given-names>
            <surname>Lee</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>ViLBERT: Pretraining Task-Agnostic Visiolinguistic Representations for Vision-and-Language Tasks</article-title>
          .
          <source>In Advances in Neural Information Processing Systems</source>
          , H. Wallach,
          <string-name>
            <given-names>H.</given-names>
            <surname>Larochelle</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Beygelzimer</surname>
          </string-name>
          ,
          <string-name>
            <surname>F.</surname>
          </string-name>
          <article-title>d'Alché-</article-title>
          <string-name>
            <surname>Buc</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          <string-name>
            <surname>Fox</surname>
          </string-name>
          , and R.
          <source>Garnett (Eds.)</source>
          , Vol.
          <volume>32</volume>
          . Curran Associates, Inc. https://proceedings.neurips.cc/paper/2019/file/ c74d97b01eae257e44aa9d5bade97baf-Paper.pdf
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>Gonçalo</given-names>
            <surname>Marcelino</surname>
          </string-name>
          , Ricardo Pinto, and
          <string-name>
            <given-names>João</given-names>
            <surname>Magalhães</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>Ranking News-Quality Multimedia</article-title>
          .
          <source>In Proceedings of the 2018 ACM on International Conference on Multimedia Retrieval (ICMR '18)</source>
          .
          <article-title>Association for Computing Machinery</article-title>
          , New York, NY, USA,
          <fpage>10</fpage>
          -
          <lpage>18</lpage>
          . https: //doi.org/10.1145/3206025.3206053
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <surname>Gonçalo</surname>
            <given-names>Marcelino</given-names>
          </string-name>
          , David Semedo,
          <string-name>
            <given-names>André</given-names>
            <surname>Mourão</surname>
          </string-name>
          , Saverio Blasi, João Magalhães, and
          <string-name>
            <given-names>Marta</given-names>
            <surname>Mrak</surname>
          </string-name>
          .
          <year>2021</year>
          .
          <article-title>Assisting News Media Editors with Cohesive Visual Storylines. Association for Computing Machinery</article-title>
          , New York, NY, USA,
          <fpage>3257</fpage>
          -
          <lpage>3265</lpage>
          . https://doi.org/10.1145/3474085.3475476
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <surname>Nelleke</surname>
            <given-names>Oostdijk</given-names>
          </string-name>
          , Hans van Halteren, Erkan Bas, ar, and
          <string-name>
            <given-names>Martha</given-names>
            <surname>Larson</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>The Connection between the Text and Images of News Articles: New Insights for Multimedia Analysis</article-title>
          .
          <source>In Proceedings of the 12th Language Resources and Evaluation Conference. European Language Resources Association</source>
          , Marseille, France,
          <fpage>4343</fpage>
          -
          <lpage>4351</lpage>
          . https: //aclanthology.org/
          <year>2020</year>
          .lrec-
          <volume>1</volume>
          .
          <fpage>535</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <surname>Shaoqing</surname>
            <given-names>Ren</given-names>
          </string-name>
          , Kaiming He,
          <string-name>
            <surname>Ross Girshick</surname>
            , and
            <given-names>Jian</given-names>
          </string-name>
          <string-name>
            <surname>Sun</surname>
          </string-name>
          .
          <year>2015</year>
          .
          <article-title>Faster RCNN: Towards Real-Time Object Detection with Region Proposal Networks</article-title>
          .
          <source>In Advances in Neural Information Processing Systems</source>
          , C. Cortes,
          <string-name>
            <given-names>N.</given-names>
            <surname>Lawrence</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Sugiyama</surname>
          </string-name>
          , and R.
          <source>Garnett (Eds.)</source>
          , Vol.
          <volume>28</volume>
          . Curran Associates, Inc. https://proceedings.neurips.cc/paper/2015/file/ 14bfa6bb14875e45bba028a21ed38046-Paper.pdf
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <surname>Florian</surname>
            <given-names>Schrof</given-names>
          </string-name>
          , Dmitry Kalenichenko, and
          <string-name>
            <given-names>James</given-names>
            <surname>Philbin</surname>
          </string-name>
          .
          <year>2015</year>
          .
          <article-title>FaceNet: A unified embedding for face recognition and clustering</article-title>
          .
          <source>In 2015 IEEE Conference on Computer Vision and Pattern Recognition (CVPR)</source>
          .
          <volume>815</volume>
          -
          <fpage>823</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>Hao</given-names>
            <surname>Tan</surname>
          </string-name>
          and
          <string-name>
            <given-names>Mohit</given-names>
            <surname>Bansal</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>LXMert: Learning cross-modality encoder representations from transformers</article-title>
          .
          <source>EMNLP-IJCNLP 2019 - 2019 Conference on Empirical Methods in Natural Language Processing and 9th International Joint Conference on Natural Language Processing, Proceedings of the Conference</source>
          (
          <year>2019</year>
          ),
          <fpage>5100</fpage>
          -
          <lpage>5111</lpage>
          . https://doi.org/10. 18653/v1/d19-1514 arXiv:
          <year>1908</year>
          .07490
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>Jörg</given-names>
            <surname>Tiedemann</surname>
          </string-name>
          and
          <string-name>
            <given-names>Santhosh</given-names>
            <surname>Thottingal</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>OPUS-MT - Building open translation services for the World</article-title>
          .
          <source>In Proceedings of the 22nd Annual Conferenec of the European Association for Machine Translation (EAMT)</source>
          . Lisbon, Portugal.
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <surname>Alasdair</surname>
            <given-names>Tran</given-names>
          </string-name>
          , Alexander Mathews, and
          <string-name>
            <given-names>Lexing</given-names>
            <surname>Xie</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>Transform and tell: Entity-aware news image captioning</article-title>
          .
          <source>Proceedings of the IEEE Computer Society Conference on Computer Vision</source>
          and Pattern
          <string-name>
            <surname>Recognition</surname>
          </string-name>
          (
          <year>2020</year>
          ),
          <fpage>13032</fpage>
          -
          <lpage>13042</lpage>
          . https://doi.org/10.1109/CVPR42600.
          <year>2020</year>
          .
          <volume>01305</volume>
          arXiv:
          <year>2004</year>
          .08070
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <surname>Ashish</surname>
            <given-names>Vaswani</given-names>
          </string-name>
          , Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones,
          <string-name>
            <given-names>Aidan N.</given-names>
            <surname>Gomez</surname>
          </string-name>
          , Lukasz Kaiser, and
          <string-name>
            <given-names>Illia</given-names>
            <surname>Polosukhin</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Attention Is All You Need</article-title>
          .
          <source>NIPS'17: Proceedings of the 31st International Conference on Neural Information Processing Systems</source>
          (
          <year>2017</year>
          ).
          <source>arXiv:cs.CL/1706.03762</source>
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <surname>Thomas</surname>
            <given-names>Wolf</given-names>
          </string-name>
          , Lysandre Debut, Victor Sanh, Julien Chaumond, Clement Delangue, Anthony Moi, Pierric Cistac, Tim Rault, Rémi Louf, Morgan Funtowicz, Joe Davison, Sam Shleifer, Patrick von Platen, Clara Ma, Yacine Jernite, Julien Plu, Canwen Xu, Teven Le Scao, Sylvain Gugger, Mariama Drame, Quentin Lhoest, and
          <string-name>
            <surname>Alexander</surname>
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Rush</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>Transformers: State-of-the-Art Natural Language Processing</article-title>
          .
          <source>In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing: System Demonstrations. Association for Computational Linguistics</source>
          , Online,
          <fpage>38</fpage>
          -
          <lpage>45</lpage>
          . https: //www.aclweb.org/anthology/2020.emnlp-demos.
          <fpage>6</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <surname>Dongling</surname>
            <given-names>Xiao</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yu-Kun Li</surname>
          </string-name>
          , Han Zhang, Yu Sun, Hao Tian,
          <string-name>
            <surname>Hua Wu</surname>
            , and
            <given-names>Haifeng</given-names>
          </string-name>
          <string-name>
            <surname>Wang</surname>
          </string-name>
          .
          <year>2021</year>
          .
          <article-title>ERNIE-Gram: Pre-Training with Explicitly N-Gram Masked Language Modeling for Natural Language Understanding</article-title>
          .
          <source>In Proceedings of the</source>
          <year>2021</year>
          <article-title>Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies. Association for Computational Linguistics</article-title>
          , Online,
          <fpage>1702</fpage>
          -
          <lpage>1715</lpage>
          . https://doi.org/10.18653/v1/
          <year>2021</year>
          .naacl-main.
          <fpage>136</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <surname>Kelvin</surname>
            <given-names>Xu</given-names>
          </string-name>
          , Jimmy Ba, Ryan Kiros, Kyunghyun Cho, Aaron Courville, Ruslan Salakhudinov, Rich Zemel, and
          <string-name>
            <given-names>Yoshua</given-names>
            <surname>Bengio</surname>
          </string-name>
          .
          <year>2015</year>
          .
          <article-title>Show, Attend and Tell: Neural Image Caption Generation with Visual Attention</article-title>
          .
          <source>In Proceedings of the 32nd International Conference on Machine Learning (Proceedings of Machine Learning Research)</source>
          ,
          <source>Francis Bach and David Blei (Eds.)</source>
          , Vol.
          <volume>37</volume>
          . PMLR, Lille, France,
          <fpage>2048</fpage>
          -
          <lpage>2057</lpage>
          . https://proceedings.mlr.press/v37/xuc15.html
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <surname>Kaipeng</surname>
            <given-names>Zhang</given-names>
          </string-name>
          , Zhanpeng Zhang,
          <string-name>
            <given-names>Zhifeng</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>and Yu</given-names>
            <surname>Qiao</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Joint Face Detection and Alignment Using Multitask Cascaded Convolutional Networks</article-title>
          .
          <source>IEEE Signal Processing Letters</source>
          <volume>23</volume>
          ,
          <issue>10</issue>
          (
          <year>2016</year>
          ),
          <fpage>1499</fpage>
          -
          <lpage>1503</lpage>
          . https://doi.org/10.1109/LSP.
          <year>2016</year>
          .2603342
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>