<!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>ELiRF-UPV at TASS 2020: TWilBERT for Sentiment Analysis and Emotion Detection in Spanish Tweets</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>José-Ángel González</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>José Arias Moncho</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Lluís-Felip Hurtado</string-name>
          <email>lhurtado@dsic.upv.es</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Ferran Pla</string-name>
          <email>fpla@dsic.upv.es</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>VRAIN: Valencian Research Institute for Artificial Intelligence, Universitat Politècnica de València</institution>
        </aff>
      </contrib-group>
      <fpage>179</fpage>
      <lpage>186</lpage>
      <abstract>
        <p>This paper describes the participation of the ELiRF research group of the Universitat Politècnica de València in the TASS 2020 Workshop, framed within the XXXVI edition of the International Conference of the Spanish Society for the Processing of Natural Language (SEPLN). We present the approach used for the Monolingual Sentiment Analysis and Emotion Detection tasks of the workshop, as well as the results obtained. Our participation has focused mainly on employing an adaptation of BERT for text classification on the Twitter domain and the Spanish language. This system, that we have called TWilBERT, shown systematic improvements of the state of the art in almost all the tasks framed in the SEPLN conference of previous years, and also obtains the most competitive performance in the tasks addressed in this work.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Twitter</kwd>
        <kwd>Sentiment Analysis</kwd>
        <kwd>Emotion Detection</kwd>
        <kwd>TWilBERT</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>to compare the results (Deep Averaging Networks). Section 4 summarizes the conducted
experimental evaluation and the achieved results. Finally, some conclusions and possible future
works are shown in Section 5.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Task description</title>
      <p>
        Two tasks have been proposed by the organizers: Task 1 - General polarity at three levels [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]
and Task 2 - Emotion detection [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. The first task consists in assigning a global polarity to
tweets in three levels (N, NEU and P), thus collapsing the NEU and NONE classes from past
editions in only one class. Several Spanish variants have been considered in this task: Spain,
Mexico, Costa Rica, Uruguay and Peru. The second task is also a single-label classification task
but with 7 diferent emotions ( joy, sadness, anger, surprise, disgust, fear and others).
      </p>
      <p>Table 1 shows the tweet distribution according to their polarity in the training set for the first
task. It can be observed a bias towards the N and P classes in some Spanish variants (Spain and
Mexico). In general, the N class is the most frequent class and the NEU class is the less frequent
(excluding some variants like Peru or Costa Rica). In Table 2 the tweet distribution for each
emotion in the training set of the task 2 is shown. In this case, there is a large bias towards the
class Others that acts like a sink of unconsidered emotions or combinations among emotions.
The less frequent class, by far, is the Fear class.</p>
    </sec>
    <sec id="sec-3">
      <title>3. Systems</title>
      <sec id="sec-3-1">
        <title>3.1. Deep Averaging Networks</title>
        <p>
          We decided to use Deep Averaging Networks [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ] (DAN) as baseline for this work, mainly due
to their competitive performance on previous edition of TASS [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ][
          <xref ref-type="bibr" rid="ref6">6</xref>
          ]. These models consist
in applying feed-forward networks on top of text representations based on averaging word
embeddings. Figure 1 shows an example of DAN with one hidden layer.
        </p>
        <p>
          To compute the word embeddings, we used the Twitter87 model [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ], that is a 300-dimensional
skip-gram model [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] trained with 87 million tweets of several Spanish variants.
        </p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. TWilBERT</title>
        <p>TWilBERT is a framework for training, evaluating and finetuning BERT-based models 2 in
the Twitter domain. It also includes several techniques and improvements published in recent
works for the BERT architecture. Furthermore, several pre-trained models for Spanish are freely
released with the framework: TWilBERT-base and TWilBERT-large. Both models were trained
with 94 million of (tweet, reply) pairs in several Spanish variants.</p>
        <p>
          The purpose of TWilBERT is to adapt and improve the language modeling capacity of the
BERT architecture [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ], based on Transformer Encoders [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ], to boost the state of the art in text
classification tasks on Twitter. It has several advantages in comparison to the multi-lingual
version of BERT (M-BERT) for this task. First, it addresses the language dependency. M-BERT
assumes that the languages used for the pre-training (104 diferent languages) share lexical and
grammatical properties, which can induce systematic deficiencies among certain language pairs
[
          <xref ref-type="bibr" rid="ref10">10</xref>
          ]. TWilBERT addresses this issue being trained from-scratch in the specific language we want
to work. Second, the domain dependency. M-BERT was trained using Wikipedia texts from 104
diferent languages, which can degrade the performance if the target domain is very diferent
to the domain used for pre-training. In addition, TWilBERT takes into account the coherence
at tweet level by adapting the Sentence Order Prediction signal [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ] to the Twitter domain.
Specifically, this adaptation, called Reply Order Prediction (ROP), allows the model to learn
coherence between (tweet, reply) pairs in order to improve the performance in downstream
tasks that requires reasoning on pairs of tweets. Table 3 summarizes the details of the TWilBERT
models in comparison to M-BERT.
each layer; and   ,  
Diferences among TW-Base, TW-Large and M-BERT.  are the number of layers,  the number of
attention heads in each layer,  the dimensionality of the embeddings,  the output dimensionality of
and   are the dimensionality of the projections of the Query, Key and Value of
30k
✓
6
6
768
768
64
64
64
30k
✓
12
12
768
768
64
64
64
        </p>
        <sec id="sec-3-2-1">
          <title>TW-Base</title>
        </sec>
        <sec id="sec-3-2-2">
          <title>Spanish</title>
        </sec>
        <sec id="sec-3-2-3">
          <title>Twitter</title>
          <p>MLM+ROP</p>
        </sec>
        <sec id="sec-3-2-4">
          <title>SentencePiece</title>
        </sec>
        <sec id="sec-3-2-5">
          <title>TW-Large</title>
        </sec>
        <sec id="sec-3-2-6">
          <title>Spanish</title>
        </sec>
        <sec id="sec-3-2-7">
          <title>Twitter</title>
          <p>MLM+ROP</p>
        </sec>
        <sec id="sec-3-2-8">
          <title>SentencePiece</title>
        </sec>
        <sec id="sec-3-2-9">
          <title>Static subword</title>
        </sec>
        <sec id="sec-3-2-10">
          <title>Dynamic spans</title>
        </sec>
        <sec id="sec-3-2-11">
          <title>Dynamic spans</title>
        </sec>
        <sec id="sec-3-2-12">
          <title>Language</title>
        </sec>
        <sec id="sec-3-2-13">
          <title>Domain</title>
        </sec>
        <sec id="sec-3-2-14">
          <title>Objectives</title>
        </sec>
        <sec id="sec-3-2-15">
          <title>Tokenization</title>
        </sec>
        <sec id="sec-3-2-16">
          <title>Vocabulary</title>
        </sec>
        <sec id="sec-3-2-17">
          <title>Masking Bucketing</title>
          <p />
        </sec>
        <sec id="sec-3-2-18">
          <title>M-BERT</title>
          <p>104 languages</p>
        </sec>
        <sec id="sec-3-2-19">
          <title>Wikipedia MLM+NSP WordPiece 110k</title>
          <p>✗
12
12
768
768
64
64
64</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Experimental Work</title>
      <p>
        To carry out the experimentation for both tasks, we used DAN as baseline in order to compare
the results with the TWilBERT model. TWilBERT is a pre-trained deep model while DAN is
trained from scratch on the tasks. To make a fair comparison between them, a grid-search has
been performed on the hyper-parameters of DAN: number of layers ({1, 2}), number of units for
each layer ({64, 128}) and batch size ({8, 16, 32, 64}). Furthermore, dropout [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] was used on the
output of each layer (including the input layer) with  = 0.1 and all the outputs were normalized
by using batch normalization [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ]. For TWilBERT, we did not perform any exploration of the
hyper-parameters and we used directly those that obtained better results in the experimentation
with the corpora of the TASS 2019. Specifically, we used TWilBERT-large with a maximum
length of 128 subwords per tweet, 1e-5 as learning rate, and batches of 32 samples without
gradient accumulation. All the layers of the TWilBERT model were finetuned and the vector
representation of each tweet was computed as the average of the contextualized representations
of the subwords inside the tweet. Both TWilBERT and DAN optimized the cross-entropy and
use Adam [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] as update rule. However, TWilBERT uses weighted cross-entropy to address the
imbalance among the classes of the tasks. It is important to highlight that we only used the
corpora available in this edition of TASS for training both models.
all the variants and metrics by a large margin (between 8 and 17 points of M 1). In average,
TWilBERT outperforms DAN by +8.24 M 1.
      </p>
      <p>Our team presented three diferent runs to the competition: run-1 (DAN), run-2 (TWilBERT
trained with the training set) and run-3 (TWilBERT trained with the training and development
set until the epoch where the M 1 was maximized on the development set with the run-2).</p>
      <p>The results of our runs for each Spanish variant are shown in Table 5. These results support
the competitive performance of TWilBERT, that obtains +6.42 M 1, in average, more than DAN
when it is trained with the training set (run-2) and +8.01 M 1 when it is trained with the training
and development sets (run-3). Our system TWilBERT-large, trained with all the available data
of this edition, obtains the best results of the competition in the Spain, Mexico, Costa Rica
and Peru variants. At this point, it is important to highlight that, to obtain these results with
TWilBERT, we did not perform any exploration of its hyper-parameters. Therefore, these results
could be improved by performing a more extensive experimentation.</p>
      <p>Regarding the second task for Emotion Detection, we used the same systems than for the
ifrst task. Table 6 shows the results of DAN and TWilBERT on the development set. In this case,
the results are more similar than in the previous task on the development set, with a diference
of 0.5 M 1. Also, it can be seen how the MP and MR are unbalanced for the DAN system,
while for the TWilBERT system are similar between them, mainly due to the weighting of the
cross-entropy.</p>
      <p>We submitted two runs for the task 2: run-1 (DAN) and run-2 (TWilBERT trained with the
training set). The results of each run in the test set are shown in Table 7. It can be observed
how TWilBERT generalizes better than DAN on this set, obtaining +1.5 M 1 in comparison to
DAN, mainly due to an increment of +3.3 MR. Both systems obtained the best results of the
competition.</p>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusions</title>
      <p>We have proposed the use of TWilBERT for the Sentiment Analysis and Emotion Detection
tasks of TASS 2020. The results obtained by our system are very promising, being the first or
second ranked system in almost all the Spanish variants of the Sentiment Analysis task and the
ifrst ranked system in the Emotion Detection task. This is especially significant, considering
that these results have been obtained without an exploration of the hyperparameters of the
model and only a reasonable configuration was used for all the tasks.</p>
    </sec>
    <sec id="sec-6">
      <title>Acknowledgments</title>
      <p>This work has been partially supported by the Spanish MINECO and FEDER founds under
project AMIC (TIN2017-85854-C4-2-R) and by the GiSPRO project (PROMETEU/2018/176).
Work of José-Ángel González is financed by Universitat Politècnica de València under grant
PAID-01-17.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>J.</given-names>
            <surname>González</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Hurtado</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Pla</surname>
          </string-name>
          , Elirf-upv
          <source>at TASS</source>
          <year>2019</year>
          :
          <article-title>Transformer encoders for twitter sentiment analysis in spanish</article-title>
          , in: M. Á. G. Cumbreras,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gonzalo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E. M.</given-names>
            <surname>Cámara</surname>
          </string-name>
          , R. MartínezUnanue, P. Rosso,
          <string-name>
            <given-names>J.</given-names>
            <surname>Carrillo-de-Albornoz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Montalvo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Chiruzzo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Collovini</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Gutiérrez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. M. J.</given-names>
            <surname>Zafra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Krallinger</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.</surname>
          </string-name>
          <article-title>Montes-y-</article-title>
          <string-name>
            <surname>Gómez</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Ortega-Bueno</surname>
            ,
            <given-names>A</given-names>
          </string-name>
          . Rosá (Eds.),
          <source>Proceedings of the Iberian Languages Evaluation Forum co-located with 35th Conference of the Spanish Society for Natural Language Processing</source>
          ,
          <source>IberLEF@SEPLN</source>
          <year>2019</year>
          , Bilbao, Spain,
          <year>September 24th</year>
          ,
          <year>2019</year>
          , volume
          <volume>2421</volume>
          <source>of CEUR Workshop Proceedings, CEUR-WS.org</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>571</fpage>
          -
          <lpage>578</lpage>
          . URL: http://ceur-ws.
          <source>org/</source>
          Vol-2421/TASS_paper_2.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>M.</given-names>
            <surname>García-Vega</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. C.</given-names>
            <surname>Díaz-Galiano</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. A.</given-names>
            <surname>García-Cumbreras</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. Montejo</given-names>
            <surname>Ráez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. M.</given-names>
            <surname>Jiménez Zafra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Martínez-Cámara</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. A.</given-names>
            <surname>Murillo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E. Casasola</given-names>
            <surname>Murillo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Chiruzzo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Moctezuma</surname>
          </string-name>
          , Sobrevilla, Overview of tass 2020:
          <article-title>Introduction emotion detection</article-title>
          ,
          <source>in: Proceedings of the Iberian Languages Evaluation Forum (IberLEF</source>
          <year>2020</year>
          ), volume
          <volume>2664</volume>
          <source>of CEUR Workshop Proceedings</source>
          , CEUR-WS, Málaga, Spain,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>F. M.</given-names>
            <surname>Plaza del Arco</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Strapparava</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. A.</given-names>
            <surname>Urena Lopez</surname>
          </string-name>
          , M. Martin,
          <string-name>
            <surname>EmoEvent:</surname>
          </string-name>
          <article-title>A multilingual emotion corpus based on diferent events</article-title>
          ,
          <source>in: Proceedings of The 12th Language Resources and Evaluation Conference</source>
          , European Language Resources Association, Marseille, France,
          <year>2020</year>
          , pp.
          <fpage>1492</fpage>
          -
          <lpage>1498</lpage>
          . URL: https://www.aclweb.org/anthology/2020.lrec-
          <volume>1</volume>
          .
          <fpage>186</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>M.</given-names>
            <surname>Iyyer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Manjunatha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Boyd-Graber</surname>
          </string-name>
          , H.
          <string-name>
            <surname>Daumé</surname>
            <given-names>III</given-names>
          </string-name>
          ,
          <article-title>Deep unordered composition rivals syntactic methods for text classification</article-title>
          ,
          <source>in: Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Processing</source>
          (Volume
          <volume>1</volume>
          :
          <string-name>
            <surname>Long</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          , Beijing, China,
          <year>2015</year>
          , pp.
          <fpage>1681</fpage>
          -
          <lpage>1691</lpage>
          . URL: https://www.aclweb.org/anthology/ P15-1162. doi:
          <volume>10</volume>
          .3115/v1/
          <fpage>P15</fpage>
          -1162.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>J.</given-names>
            <surname>González</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Hurtado</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Pla</surname>
          </string-name>
          ,
          <article-title>ELiRF-UPV en TASS 2017: Análisis de Sentimientos en Twitter basado en Aprendizaje Profundo (ELiRF-UPV at TASS 2017: Sentiment Analysis in Twitter based on Deep Learning)</article-title>
          ,
          <source>in: Proceedings of TASS 2017: Workshop on Semantic Analysis at SEPLN, TASS@SEPLN</source>
          <year>2017</year>
          ,
          <article-title>co-located with 33nd SEPLN Conference (SEPLN</article-title>
          <year>2017</year>
          ), Murcia, Spain,
          <year>September 18th</year>
          ,
          <year>2017</year>
          .,
          <year>2017</year>
          , pp.
          <fpage>29</fpage>
          -
          <lpage>34</lpage>
          . URL: http://ceur-ws.
          <source>org/</source>
          Vol-1896
          <source>/p2_elirf_tass2017.pdf.</source>
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>J.</given-names>
            <surname>González</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Hurtado</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Pla</surname>
          </string-name>
          ,
          <article-title>ELiRF-UPV en TASS 2018: Análisis de Sentimientos en Twitter basado en Aprendizaje Profundo (ELiRF-UPV at TASS 2018: Sentiment Analysis in Twitter based on Deep Learning)</article-title>
          ,
          <source>in: Proceedings of TASS 2018: Workshop on Semantic Analysis at SEPLN, TASS@SEPLN</source>
          <year>2018</year>
          ,
          <article-title>co-located with 34nd SEPLN Conference (SEPLN</article-title>
          <year>2018</year>
          ), Sevilla, Spain,
          <year>September 18th</year>
          ,
          <year>2018</year>
          .,
          <year>2018</year>
          , pp.
          <fpage>37</fpage>
          -
          <lpage>44</lpage>
          . URL: http://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>2172</volume>
          /p2_elirf_tass2018.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>T.</given-names>
            <surname>Mikolov</surname>
          </string-name>
          , I. Sutskever,
          <string-name>
            <given-names>K.</given-names>
            <surname>Chen</surname>
          </string-name>
          , G. Corrado,
          <string-name>
            <given-names>J.</given-names>
            <surname>Dean</surname>
          </string-name>
          ,
          <article-title>Distributed representations of words and phrases and their compositionality</article-title>
          ,
          <source>in: Proceedings of the 26th International Conference on Neural Information Processing Systems - Volume 2, NIPS'13</source>
          , Curran Associates Inc., USA,
          <year>2013</year>
          , pp.
          <fpage>3111</fpage>
          -
          <lpage>3119</lpage>
          . URL: http://dl.acm.org/citation.cfm?id=
          <volume>2999792</volume>
          .
          <fpage>2999959</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Toutanova</surname>
          </string-name>
          ,
          <article-title>BERT: pre-training of deep bidirectional transformers for language understanding</article-title>
          , CoRR abs/
          <year>1810</year>
          .04805 (
          <year>2018</year>
          ). URL: http://arxiv. org/abs/
          <year>1810</year>
          .04805. arXiv:
          <year>1810</year>
          .04805.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>A.</given-names>
            <surname>Vaswani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Shazeer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Parmar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Uszkoreit</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. N.</given-names>
            <surname>Gomez</surname>
          </string-name>
          , L. u. Kaiser,
          <string-name>
            <surname>I. Polosukhin</surname>
          </string-name>
          ,
          <article-title>Attention is all you need</article-title>
          , in: I. Guyon,
          <string-name>
            <given-names>U. V.</given-names>
            <surname>Luxburg</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Bengio</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Wallach</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Fergus</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Vishwanathan</surname>
          </string-name>
          , R. Garnett (Eds.),
          <source>Advances in Neural Information Processing Systems</source>
          <volume>30</volume>
          ,
          <string-name>
            <surname>Curran</surname>
            <given-names>Associates</given-names>
          </string-name>
          , Inc.,
          <year>2017</year>
          , pp.
          <fpage>5998</fpage>
          -
          <lpage>6008</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>T.</given-names>
            <surname>Pires</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Schlinger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Garrette</surname>
          </string-name>
          ,
          <article-title>How multilingual is multilingual bert?</article-title>
          , CoRR abs/
          <year>1906</year>
          .01502 (
          <year>2019</year>
          ). URL: http://arxiv.org/abs/
          <year>1906</year>
          .01502. arXiv:
          <year>1906</year>
          .01502.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Lan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Goodman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Gimpel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Sharma</surname>
          </string-name>
          , R. Soricut,
          <string-name>
            <surname>Albert:</surname>
          </string-name>
          <article-title>A lite bert for self-supervised learning of language representations</article-title>
          ,
          <source>in: International Conference on Learning Representations</source>
          ,
          <year>2020</year>
          . URL: https://openreview.net/forum?id=
          <fpage>H1eA7AEtvS</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>N.</given-names>
            <surname>Srivastava</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Hinton</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Krizhevsky</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Sutskever</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Salakhutdinov</surname>
          </string-name>
          ,
          <article-title>Dropout: A simple way to prevent neural networks from overfitting</article-title>
          ,
          <source>Journal of Machine Learning Research</source>
          <volume>15</volume>
          (
          <year>2014</year>
          )
          <fpage>1929</fpage>
          -
          <lpage>1958</lpage>
          . URL: http://jmlr.org/papers/v15/srivastava14a.html.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>S.</given-names>
            <surname>Iofe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Szegedy</surname>
          </string-name>
          ,
          <article-title>Batch normalization: Accelerating deep network training by reducing internal covariate shift</article-title>
          ,
          <source>in: Proceedings of the 32nd International Conference on International Conference on Machine Learning - Volume 37, ICML'15</source>
          , JMLR.org,
          <year>2015</year>
          , p.
          <fpage>448</fpage>
          -
          <lpage>456</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>D. P.</given-names>
            <surname>Kingma</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Ba</surname>
          </string-name>
          ,
          <article-title>Adam: A method for stochastic optimization</article-title>
          , in: Y. Bengio, Y. LeCun (Eds.),
          <source>3rd International Conference on Learning Representations, ICLR</source>
          <year>2015</year>
          , San Diego, CA, USA, May 7-
          <issue>9</issue>
          ,
          <year>2015</year>
          , Conference Track Proceedings,
          <year>2015</year>
          . URL: http://arxiv.org/abs/ 1412.6980.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>