<!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>Multi-Task Bidirectional Transformer Representations for Irony Detection</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Chiyu Zhang</string-name>
          <email>chiyuzh@mail.ubc.ca</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Muhammad Abdul-Mageed</string-name>
          <email>muhammad.mageeed@ubc.ca</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Natural Language Processing Lab The University of British Columbia</institution>
        </aff>
      </contrib-group>
      <abstract>
        <p>Supervised deep learning requires large amounts of training data. In the context of the FIRE2019 Arabic irony detection shared task (IDAT@FIRE2019), we show how we mitigate this need by ne-tuning the pre-trained bidirectional encoders from transformers (BERT) on gold data in a multi-task setting. We further improve our models by further pre-training BERT on `in-domain' data, thus alleviating an issue of dialect mismatch in the Google-released BERT model. Our best model acquires 82.4 macro F1 score, and has the unique advantage of being feature-engineering free (i.e., based exclusively on deep learning).1 1 Copyright c 2019 for this paper by its authors. Use permitted under Creative Commons License Attribution 4.0 International (CC BY 4.0). FIRE 2019, 12-15 December 2019, Kolkata, India. 2 https://www.merriam-webster.com/dictionary/irony. 3 https://www.irit.fr/IDAT2019/</p>
      </abstract>
      <kwd-group>
        <kwd>irony detection</kwd>
        <kwd>Arabic</kwd>
        <kwd>social media</kwd>
        <kwd>BERT</kwd>
        <kwd>multi-task learning</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        The proliferation of social media has provided a locus for use, and thereby
collection, of gurative and creative language data, including irony [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ]. According
to the Merriam-Webster online dictionary, 2 irony refers to \the use of word to
express something other than and especially the opposite of the literal meaning."
A complex, controversial, and intriguing linguistic phenomenon, irony has been
studied in disciplines such as linguistics, philosophy, and rhetoric. Irony
detection also has implications for several NLP tasks such as sentiment analysis, hate
speech detection, fake news detection, etc [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ]. Hence, automatic irony detection
can potentially improve systems designed for each of these tasks. In this paper,
we focus on learning irony. More speci cally, we report our work submitted to
the FIRE 2019 Arabic irony detection task (IDAT@FIRE2019). 3 We focus our
energy on an important angle of the problem{the small size of training data.
      </p>
      <p>
        Deep learning is the most successful under supervised conditions with large
amounts of training data (tens-to-hundreds of thousands of examples). For most
real-world tasks, we hard to obtain labeled data. Hence, it is highly
desirable to eliminate, or at least reduce, dependence on supervision. In NLP,
pretraining language models on unlabeled data has emerged as a successful approach
for improving model performance. In particular, the pre-trained multilingual
Bidirectional Encoder Representations from Transformers (BERT) [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] was
introduced to learn language regularities from unlabeled data. Multi-task learning
(MTL) is another approach that helps achieve inductive transfer between
various tasks. More speci cally, MTL leverages information from one or more source
tasks to improve a target task [
        <xref ref-type="bibr" rid="ref10 ref11">10, 11</xref>
        ]. In this work, we introduce Transformer
representations (BERT) in an MTL setting to address the data bottleneck in
IDAT@FIRE2019. To show the utility of BERT, we compare to a simpler model
with gated recurrent units (GRU) in a single task setting. To identify the utility,
or lack thereof, of MTL BERT, we compare to a single task BERT model. For
MTL BERT, we train on a number of tasks simultaneously. Tasks we train on
are sentiment analysis, gender detection, age detection, dialect identi cation, and
emotion detection.
      </p>
      <p>Another problem we face is that the BERT model released by Google is
trained only on Arabic Wikipedia, which is almost exclusively Modern Standard
Arabic (MSA). This introduces a language variety mismatch due to the irony
data involving a number of dialects that come from the Twitter domain. To
mitigate this issue, we further pre-train BERT on an in-house dialectal Twitter
dataset, showing the utility of this measure. To summarize, we make the following
contributions:
{ In the context of the Arabic irony task, we show how a small-sized labeled
data setting can be mitigated by training models in a multi-task learning
setup.
{ We view di erent varieties of Arabic as di erent domains, and hence
introduce a simple, yet e ective, `in-domain' training measure where we further
pre-train BERT on a dataset closer to task domain (in that it involves
dialectal tweet data).
2</p>
    </sec>
    <sec id="sec-2">
      <title>Methods</title>
      <p>2.1</p>
      <p>
        GRU
For our baseline, we use gated recurrent units (GRU) [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ], a simpli cation of
long-short term memory (LSTM) [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ], which in turn is a variation of recurrent
neural networks (RNNs). A GRU learns based on the following:
h (t) =
1
z (t) h (t 1) + z (t)h(t)
e
(1)
where the update state z (t) decides how much the unit updates its content:
(2)
(3)
(4)
where W and U are weight matrices. The candidate activation makes use of
a reset gate r (t):
h
e
(t)
= tanh
      </p>
      <p>W x (t) + r (t)</p>
      <p>U h (t 1)
where is a Hadamard product (element-wise multiplication). When its
value is close to zero, the reset gate allows the unit to forget the previously
computed state. The reset gate r (t) is computed as follows:
r(t) =
e</p>
      <p>Wrx (t) + Urh (t 1)
z (t) =</p>
      <p>Wzx (t) + Uzh (t 1)
2.2</p>
      <sec id="sec-2-1">
        <title>BERT</title>
        <p>
          BERT [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ] is based on the Transformer [
          <xref ref-type="bibr" rid="ref36">36</xref>
          ], a network architecture that
depends solely on encoder-decoder attention. The Transformer attention employs
a function operating on queries, keys, and values. This attention function maps
a query and a set of key-value pairs to an output, where the output is a weighted
sum of the values. Encoder of the Transformer in [
          <xref ref-type="bibr" rid="ref36">36</xref>
          ] has 6 attention layers, each
of which is composed of two sub-layers: (1) multi-head attention where queries,
keys, and values are projected h times into linear, learned projections and
ultimately concatenated; and (2) fully-connected feed-forward network (FFN) that
is applied to each position separately and identically. Decoder of the
Transformer also employs 6 identical layers, yet with an extra sub-layer that performs
multi-head attention over the encoder stack. The architecture of BERT [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ] is
a multi-layer bidirectional Transformer encoder [
          <xref ref-type="bibr" rid="ref36">36</xref>
          ]. It uses masked language
models to enable pre-trained deep bidirectional representations, in addition to
a binary next sentence prediction task captures context (i.e., sentence
relationships). More information about BERT can be found in [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ].
2.3
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>Multi-task Learning</title>
        <p>
          In multi-task learning (MTL), a learner uses a number of (usually relevant) tasks
to improve performance on a target task [
          <xref ref-type="bibr" rid="ref10 ref11">10, 11</xref>
          ]. The MTL setup enables the
learner to use cues from various tasks to improve the performance on the target
task. MTL also usually helps regularize the model since the learner needs to
nd representations that are not speci c to a single task, but rather more
general. Supervised learning with deep neural networks requires large amounts of
labeled data, which is not always available. By employing data from additional
tasks, MTL thus practically augments training data to alleviate need for large
labeled data. Many researchers achieve state-of-the-art results by employing MTL
in supervised learning settings [
          <xref ref-type="bibr" rid="ref20 ref25">20, 25</xref>
          ]. In speci c, BERT was successfully used
with MTL. Hence, we employ multi-task BERT (following [
          <xref ref-type="bibr" rid="ref25">25</xref>
          ]). For our
training, we use the same pre-trained BERT-Base Multilingual Cased model as the
initial checkpoint. For this MTL pre-training of BERT, we use the same
aforementioned single-task BERT parameters. We now describe our data.
3
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Data</title>
      <p>The shared task dataset contains 5,030 tweets related to di erent political issues
and events in the Middle East taking place between 2011 and 2018. Tweets are
collected using pre-de ned keywords (i.e. targeted political gures or events)
and the positive class involves ironic hashtags such as #sokhria, #tahakoum,
and #maskhara (Arabic variants for \irony"). Duplicates, retweets, and
nonintelligible tweets are removed by organizers. Tweets involve both MSA as well as
dialects at various degrees of granularity such as Egyptian, Gulf, and Levantine.</p>
      <p>
        IDAT@FIRE2019 [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] is set up as a binary classi cation task where tweets
are assigned labels from the set fironic, non-ironicg. A total of 4,024 tweets were
released by organizers as training data. In addition, 1,006 tweets were used by
organizers as test data. Test labels were not release; and teams were expected
to submit the predictions produced by their systems on the test split. For our
models, we split the 4,024 released training data into 90% TRAIN (n=3,621
tweets; `ironic'=1,882 and `non-ironic'=1,739) and 10% DEV (n=403 tweets;
`ironic'=209 and `non-ironic'=194). We train our models on TRAIN, and
evaluate on DEV.
      </p>
      <p>
        Our multi-task BERT models involve six di erent Arabic classi cation tasks.
We brie y introduce the data for these tasks here:
{ Author pro ling and deception detection in Arabic (APDA). [
        <xref ref-type="bibr" rid="ref28">28</xref>
        ] 4.
      </p>
      <p>
        From APDA, we only use the corpus of author pro ling (which includes
the three pro ling tasks of age, gender, and variety). The organizers of
APDA provide 225,000 tweets as training data. Each tweet is labelled with
three tags (one for each task). To develop our models, we split the
training data into 90% training set (n=202,500 tweets) and 10% development
set (n=22,500 tweets). With regard to age, authors consider tweets of three
classes: fUnder 25, Between 25 and 34, and Above 35 g. For the Arabic
varieties, they consider the following fteen classes: fAlgeria, Egypt, Iraq,
Kuwait, Lebanon-Syria, Lybia, Morocco, Oman, Palestine-Jordan, Qatar,
Saudi Arabia, Sudan, Tunisia, UAE, Yemeng. Gender is labeled as a binary
task with fmale,femaleg tags.
{ LAMA+DINA Emotion detection. Alhuzali et al. [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] introduce LAMA,
a dataset for Arabic emotion detection. They use a rst-person seed phrase
approach and extend work by Abdul-Mageed et al. [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] for emotion data
collection from 6 to 8 emotion categories (i.e. anger, anticipation, disgust,
fear, joy, sadness, surprise and trust ). We use the combined LAMA+DINA
corpus. It is split by the authors as 189,902 tweets training set, 910 as
development, and 941 as test. In our experiment, we use only the training set
for out MTL experiments.
4 https://www.autoritas.net/APDA/
{ Sentiment analysis in Arabic tweets. This dataset is a shared task on
Kaggle by Motaz Saad 5. The corpus contains 58,751 Arabic tweets (46,940
training, and 11,811 test ). The tweets are annotated with positive and
negative labels based on an emoji lexicon.
4
4.1
      </p>
    </sec>
    <sec id="sec-4">
      <title>Models</title>
      <p>
        GRU
We train a baseline GRU network with our irony TRAIN data. This network
has only one layer unidirectional GRU, with 500 unites and a linear, output
layer. The input word tokens are embedded by the trainable word vectors which
are initialized with a standard normal distribution, with = 0, and = 1,
i.e., W N (0; 1). We use Adam [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ] with a xed learning rate of 1e 3 for
optimization. For regularization, we use dropout [
        <xref ref-type="bibr" rid="ref33">33</xref>
        ] with a rate of 0.5 on the
hidden layer. We set the maximum sequence sequence in our GRU model to 50
words, and use all 22,000 words of training set as vocabulary. We employ batch
training with a batch size of 64 for this model. We run the network for 20 epochs
and save the model at the end of each epoch, choosing the model that performs
highest on DEV as our best model. We report our best result on DEV in Table
1. Our best result is acquired with 12 epochs. As Table 1 shows, the baseline
obtains accuracy = 73:70% and F1 = 73:47.
4.2
      </p>
      <sec id="sec-4-1">
        <title>Single-Task BERT</title>
        <p>
          We use the BERT-Base Multilingual Cased model released by the authors [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ] 6.
The model is trained on 104 languages (including Arabic) with 12 layers, 768
hidden units each, 12 attention heads. The entire model has 110M parameters.
The model has 119,547 shared WordPieces vocabulary, and was pre-trained on
the entire Wikipedia for each language. For ne-tuning, we use a maximum
sequence size of 50 tokens and a batch size of 32. We set the learning rate to
2e 5 and train for 20 epochs. For single-task learning, we ne-tune BERT on
the training set (i.e., TRAIN) of the irony task exclusively. We refer to this
model as BERT-ST, ST standing for `single task.' As Table 1 shows, BERT-ST
unsurprisingly acquires better performance than the baseline GRU model. On
accuracy, BERT-ST is 7.94% better than the baseline. BERT-ST obtains 81.62
F1 which is 7.35 better than the baseline.
4.3
        </p>
      </sec>
      <sec id="sec-4-2">
        <title>Multi-Task BERT</title>
        <p>
          We follow the work of Liu et al. [
          <xref ref-type="bibr" rid="ref25">25</xref>
          ] for training an MTL BERT in that we
netune the afore-mentioned BERT-Base Multilingual Cased model with di erent
tasks jointly. First, we ne-tune with the three tasks of author pro ling and the
5 https://www.kaggle.com/mksaad/arabic-sentiment-twitter-corpus
6 https://github.com/google-research/bert/blob/master/multilingual.md.
irony task simultaneously. We refer to this model trained on the 4 tasks simply as
BERT-MT4. BERT-MT5 refers to the model ne-tuned on the 3 author pro ling
tasks, the emotion task, and the irony task. We also refer to the model ne-tuned
on all six tasks (adding the sentiment task mentioned earlier) as BERT-MT6.
For MTL BERT, we use the same parameters as the single task BERT listed in
the previous sub-section (i.e., Single-Task BERT ). In Table 1, we present the
performance on the DEV set of only the irony detection task. 7 We note that
all the results of multitask learning with BERT are better than those with the
single task BERT. The model trained on all six tasks obtains the best result,
which is 2.23% accuracy and 2.25% F1 higher than the single task BERT model.
Our irony data involves dialects such as Egyptian, Gulf, and Levantine, as we
explained earlier. The BERT-Base Multilingual Cased model we used, however,
was trained on Arabic Wikipedia, which is mostly MSA. We believe this dialect
mismatch is sub-optimal. As Sun et al. [
          <xref ref-type="bibr" rid="ref34">34</xref>
          ] show, further pre-training with
domain speci c data can improve performance of a learner. Viewing dialects as
constituting di erent domains, we turn to dialectal data to further pre-train
BERT. Namely, we use 1M tweets randomly sampled from an in-house Twitter
dataset to resume pre-training BERT before we ne-tune on the irony data. 8
We use BERT-Base Multilingual Cased model as an initial checkpoint and
pretrain on this 1M dataset with a learning rate of 2e 5, for 10 epochs. Then, we
ne-tune on MT5 (and then on MT6) with the new further-pre-trained BERT
model. We refer to the new models as BERT-1M-MT5 and BERT-1M-MT6,
respectively. As Table 1 shows, BERT-1M-MT5 performs best: BERT-1M-MT5
7 We do not list acquired results on other tasks, since the focus of this paper is
exclusively the IDAT@FIRE2019 shared task.
8 A nuance is that we require each tweet in the 1M dataset to be &gt; 20 words long,
and so this process is not entirely random.
obtains 84.37% accuracy (0.5% less than BERT-MT6) and 83.34 F1 (0.47% less
than BERT-MT6).
4.5
        </p>
      </sec>
      <sec id="sec-4-3">
        <title>IDAT@FIRE2019 Submission</title>
        <p>For the shared task submission, we use the predictions of BERT-1M-MT5 as
our rst submitted system. Then, we concatenate our DEV and TRAIN data to
compose a new training set (thus using all the training data released by
organizers) to re-train BERT-1M-MT5 and BERT-MT6 with the same parameters.
We use the predictions of these two models as our second and third submissions.
Our second submission obtains 82.4 F1 on the o cial test set, and ranks 4th on
this shared task.
5</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>Related Work</title>
      <p>
        Multi-Task Learning. MTL has been e ectively used to model several NLP
problems. These include, for example, syntactic parsing [
        <xref ref-type="bibr" rid="ref26">26</xref>
        ], sequence
labeling [
        <xref ref-type="bibr" rid="ref30 ref32">32, 30</xref>
        ], and text classi cation [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ].
      </p>
      <p>
        Irony in di erent languages. Irony detection has been investigated in
various languages. For example, Hee et al. [
        <xref ref-type="bibr" rid="ref35">35</xref>
        ] propose two irony detection tasks
in English tweets. Task A is a binary classi cation task (irony vs. non-irony ), and
Task B is multi-class identi cation of a speci c type of irony from the set fverbal,
situational, other-irony, non-ironicg. They use hashtags to automatically collect
tweets that they manually annotate using a ne-grained annotation scheme.
Participants in this competition construct models based on logistic regression
and support vector machine (SVM) [
        <xref ref-type="bibr" rid="ref31">31</xref>
        ], XGBoost [
        <xref ref-type="bibr" rid="ref29">29</xref>
        ], convolutional neural
networks (CNNs) [
        <xref ref-type="bibr" rid="ref29">29</xref>
        ], long short-term memory networks (LSTMs) [
        <xref ref-type="bibr" rid="ref37">37</xref>
        ], etc. For
the Italian language, Cignarella et al. propose the IronTA shared task [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ], and
the best system [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] is a combination of bi-directional LSTMs, word n-grams, and
a ective lexicons. For Spanish, Ortega-Bueno1 et al. [
        <xref ref-type="bibr" rid="ref27">27</xref>
        ] introduce the IroSvA
shared task, a binary classi cation task for tweets and news comments. The
bestperforming model on the task, [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ], employs pre-trained Word2Vec, multi-head
Transformer encoder and a global average pooling mechanism.
      </p>
      <p>
        Irony in Arabic. Arabic is a widely spoken collection of languages ( 300
million native speakers) [
        <xref ref-type="bibr" rid="ref3 ref38">3, 38</xref>
        ]. A large amount of works in Arabic are those
focusing on other text classi cation tasks such as sentiment analysis [
        <xref ref-type="bibr" rid="ref1 ref2 ref5 ref6">5, 6, 2, 1</xref>
        ],
emotion [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], and dialect identi cation [
        <xref ref-type="bibr" rid="ref16 ref38 ref8 ref9">38, 16, 8, 9</xref>
        ]. Karoui et al. [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ] created a
Arabic irony detection corpus of 5,479 tweets. They use pre-de ned hashtags
to obtain irony tweets related to the US and Egyptian presidential elections.
IDAT@FIRE2019 [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] aims at augmenting the corpus and enriching the topics,
collecting more tweets within a wider region (the Middle East) and over a longer
period (between 2011 and 2018).
      </p>
    </sec>
    <sec id="sec-6">
      <title>Conclusion</title>
      <p>In this paper, we described our submissions to the Irony Detection in Arabic
shared task (IDAT@FIRE2019). We presented how we acquire e ective models
using pre-trained BERT in a multi-task learning setting. We also showed the
utility of viewing di erent varieties of Arabic as di erent domains by reporting
better performance with models pre-trained with dialectal data rather than
exclusively on MSA. Our multi-task model with domain-speci c BERT ranks 4th in
the o cial IDAT@FIRE2019 evaluation. The model has the advantage of being
exclusively based on deep learning. In the future, we will investigate other
multitask learning architectures, and extend our work with semi-supervised methods.
7</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgement</title>
      <p>We acknowledge the support of the Natural Sciences and Engineering Research
Council of Canada (NSERC), the Social Sciences Research Council of Canada
(SSHRC), and Compute Canada (www.computecanada.ca).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Abdul-Mageed</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Modeling arabic subjectivity and sentiment in lexical space</article-title>
          .
          <source>Information Processing &amp; Management</source>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Abdul-Mageed</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Not all segments are created equal: Syntactically motivated sentiment analysis in lexical space</article-title>
          .
          <source>In: Proceedings of the third Arabic natural language processing workshop</source>
          . pp.
          <volume>147</volume>
          {
          <issue>156</issue>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Abdul-Mageed</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Alhuzali</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Elaraby</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>You tweet what you speak: A citylevel dataset of arabic dialects</article-title>
          .
          <source>In: LREC</source>
          . pp.
          <volume>3653</volume>
          {
          <issue>3659</issue>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Abdul-Mageed</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>AlHuzli</surname>
          </string-name>
          , H., DuaaAbu Elhija, M.D.:
          <article-title>Dina: A multidialect dataset for arabic emotion analysis</article-title>
          .
          <source>In: The 2nd Workshop on Arabic Corpora and Processing Tools</source>
          . p.
          <volume>29</volume>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Abdul-Mageed</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Diab</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          , Kubler, S.: Samar:
          <article-title>Subjectivity and sentiment analysis for arabic social media</article-title>
          .
          <source>Computer Speech &amp; Language</source>
          <volume>28</volume>
          (
          <issue>1</issue>
          ),
          <volume>20</volume>
          {
          <fpage>37</fpage>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Al-Ayyoub</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Khamaiseh</surname>
            ,
            <given-names>A.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jararweh</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Al-Kabi</surname>
            ,
            <given-names>M.N.:</given-names>
          </string-name>
          <article-title>A comprehensive survey of arabic sentiment analysis</article-title>
          .
          <source>Information Processing &amp; Management</source>
          <volume>56</volume>
          (
          <issue>2</issue>
          ),
          <volume>320</volume>
          {
          <fpage>342</fpage>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Alhuzali</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Abdul-Mageed</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ungar</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>Enabling deep learning of emotion with rst-person seed expressions</article-title>
          .
          <source>In: Proceedings of the Second Workshop on Computational Modeling of People's Opinions</source>
          , Personality, and Emotions in Social Media. pp.
          <volume>25</volume>
          {
          <fpage>35</fpage>
          . Association for Computational Linguistics, New Orleans, Louisiana, USA (Jun
          <year>2018</year>
          ). https://doi.org/10.18653/v1/
          <fpage>W18</fpage>
          -1104, https://www.aclweb.org/anthology/W18-1104
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Bouamor</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Habash</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Salameh</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zaghouani</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rambow</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Abdulrahim</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Obeid</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Khalifa</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Eryani</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Erdmann</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , et al.:
          <article-title>The madar arabic dialect corpus and lexicon</article-title>
          .
          <source>In: Proceedings of the Eleventh International Conference on Language Resources</source>
          and
          <string-name>
            <surname>Evaluation (LREC-2018)</surname>
          </string-name>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Bouamor</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hassan</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Habash</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          :
          <article-title>The madar shared task on arabic ne-grained dialect identi cation</article-title>
          .
          <source>In: Proceedings of the Fourth Arabic Natural Language Processing Workshop</source>
          . pp.
          <volume>199</volume>
          {
          <issue>207</issue>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Caruana</surname>
          </string-name>
          , R.:
          <article-title>Multitask learning: A knowledge-based source of inductive bias</article-title>
          .
          <source>In: Proceedings of the 10th International Conference on Machine Learning</source>
          (
          <year>1993</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Caruana</surname>
          </string-name>
          , R.:
          <article-title>Multitask learning</article-title>
          .
          <source>Machine learning 28(1)</source>
          ,
          <volume>41</volume>
          {
          <fpage>75</fpage>
          (
          <year>1997</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Cho</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          , Van Merrienboer,
          <string-name>
            <given-names>B.</given-names>
            ,
            <surname>Gulcehre</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Bahdanau</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            ,
            <surname>Bougares</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            ,
            <surname>Schwenk</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            ,
            <surname>Bengio</surname>
          </string-name>
          ,
          <string-name>
            <surname>Y.</surname>
          </string-name>
          :
          <article-title>Learning phrase representations using rnn encoder-decoder for statistical machine translation</article-title>
          .
          <source>arXiv preprint arXiv:1406.1078</source>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Cignarella</surname>
            ,
            <given-names>A.T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Frenda</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Basile</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bosco</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Patti</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          , et al.:
          <article-title>Overview of the evalita 2018 task on irony detection in italian tweets (ironita)</article-title>
          .
          <source>In: Sixth Evaluation Campaign of Natural Language Processing and Speech Tools for Italian (EVALITA</source>
          <year>2018</year>
          ). vol.
          <volume>2263</volume>
          , pp.
          <volume>1</volume>
          {
          <issue>6</issue>
          .
          <string-name>
            <surname>CEUR-WS</surname>
          </string-name>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Cimino</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>De Mattei</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dell'Orletta</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <article-title>: Multi-task learning in deep neural networks at evalita 2018</article-title>
          . In: EVALITA@
          <string-name>
            <surname>CLiC-it</surname>
          </string-name>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Devlin</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chang</surname>
            ,
            <given-names>M.W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lee</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Toutanova</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          :
          <article-title>Bert: Pre-training of deep bidirectional transformers for language understanding</article-title>
          . arXiv preprint arXiv:
          <year>1810</year>
          .
          <volume>04805</volume>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Elaraby</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Abdul-Mageed</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Deep models for arabic dialect identi cation on benchmarked data</article-title>
          .
          <source>In: Proceedings of the Fifth Workshop on NLP for Similar Languages, Varieties and Dialects (VarDial</source>
          <year>2018</year>
          ). pp.
          <volume>263</volume>
          {
          <issue>274</issue>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Ghanem</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Karoui</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Benamara</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Moriceau</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Idat@ re2019: Overview of the track on irony detection in arabic tweets</article-title>
          . In: Mehta P.,
          <string-name>
            <surname>Rosso</surname>
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Majumder</surname>
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mitra</surname>
            <given-names>M</given-names>
          </string-name>
          . (Eds.)
          <article-title>Working Notes of the Forum for Information Retrieval Evaluation (FIRE 2019)</article-title>
          . CEUR Workshop Proceedings. In: CEUR-WS.org, Kolkata, India, December
          <volume>12</volume>
          -
          <fpage>15</fpage>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Ghosh</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Veale</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shutova</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Barnden</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Reyes</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          : Semeval-2015 task 11:
          <article-title>Sentiment analysis of gurative language in twitter</article-title>
          .
          <source>In: Proceedings of the 9th International Workshop on Semantic Evaluation (SemEval</source>
          <year>2015</year>
          ). pp.
          <volume>470</volume>
          {
          <issue>478</issue>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Gonzalez</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hurtado</surname>
            ,
            <given-names>L.F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pla</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          :
          <article-title>Elirf-upv at irosva: Transformer encoders for spanish irony detection</article-title>
          .
          <source>In: Proceedings of the Iberian Languages Evaluation Forum (IberLEF</source>
          <year>2019</year>
          ),
          <article-title>co-located with 34th Conference of the Spanish Society for Natural Language Processing (SEPLN</article-title>
          <year>2019</year>
          ).
          <source>CEUR Workshop Proceedings. CEUR-WS. org, Bilbao</source>
          , Spain (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Guo</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pasunuru</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bansal</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Soft layer-speci c multi-task summarization with entailment and question generation</article-title>
          . arXiv preprint arXiv:
          <year>1805</year>
          .
          <volume>11004</volume>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <surname>Hochreiter</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schmidhuber</surname>
            ,
            <given-names>J.:</given-names>
          </string-name>
          <article-title>Long short-term memory</article-title>
          .
          <source>Neural computation 9(8)</source>
          ,
          <volume>1735</volume>
          {
          <fpage>1780</fpage>
          (
          <year>1997</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <surname>Karoui</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zitoune</surname>
            ,
            <given-names>F.B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Moriceau</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          :
          <article-title>Soukhria: Towards an irony detection system for arabic in social media</article-title>
          .
          <source>Procedia Computer Science</source>
          <volume>117</volume>
          ,
          <issue>161</issue>
          {
          <fpage>168</fpage>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          23.
          <string-name>
            <surname>Kingma</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ba</surname>
          </string-name>
          , J.:
          <article-title>Adam: A method for stochastic optimization</article-title>
          .
          <source>arXiv preprint arXiv:1412.6980</source>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          24.
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Qiu</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Huang</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          :
          <article-title>Recurrent neural network for text classi cation with multi-task learning</article-title>
          .
          <source>arXiv preprint arXiv:1605.05101</source>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          25.
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>He</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gao</surname>
            ,
            <given-names>J.:</given-names>
          </string-name>
          <article-title>Multi-task deep neural networks for natural language understanding</article-title>
          . arXiv preprint arXiv:
          <year>1901</year>
          .
          <volume>11504</volume>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          26.
          <string-name>
            <surname>Luong</surname>
            ,
            <given-names>M.T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Le</surname>
            ,
            <given-names>Q.V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sutskever</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vinyals</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kaiser</surname>
          </string-name>
          , L.:
          <article-title>Multi-task sequence to sequence learning</article-title>
          .
          <source>arXiv preprint arXiv:1511.06114</source>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          27.
          <string-name>
            <surname>Ortega-Bueno</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rangel</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          , Hernandez Far as, D.,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Montes-y Gomez</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Medina</given-names>
            <surname>Pagola</surname>
          </string-name>
          ,
          <string-name>
            <surname>J.E.</surname>
          </string-name>
          :
          <article-title>Overview of the task on irony detection in spanish variants</article-title>
          .
          <source>In: Proceedings of the Iberian Languages Evaluation Forum (IberLEF</source>
          <year>2019</year>
          ),
          <article-title>co-located with 34th Conference of the Spanish Society for Natural Language Processing (SEPLN</article-title>
          <year>2019</year>
          ).
          <article-title>CEUR-WS. org (</article-title>
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          28.
          <string-name>
            <surname>Rangel</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Char</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zaghouani</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ghanem</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Snchez-Junquera</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          :
          <article-title>Overview of the track on author pro ling and deception detection in arabic</article-title>
          . In: Mehta P.,
          <string-name>
            <surname>Rosso</surname>
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Majumder</surname>
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mitra</surname>
            <given-names>M</given-names>
          </string-name>
          . (Eds.)
          <article-title>Working Notes of the Forum for Information Retrieval Evaluation (FIRE 2019)</article-title>
          . CEUR Workshop Proceedings. In: CEUR-WS.org, Kolkata, India, December
          <volume>12</volume>
          -
          <fpage>15</fpage>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          29.
          <string-name>
            <surname>Rangwani</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kulshreshtha</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Singh</surname>
            ,
            <given-names>A.K.</given-names>
          </string-name>
          :
          <article-title>Nlprl-iitbhu at semeval-2018 task 3: Combining linguistic features and emoji pre-trained cnn for irony detection in tweets</article-title>
          .
          <source>In: Proceedings of The 12th International Workshop on Semantic Evaluation</source>
          . pp.
          <volume>638</volume>
          {
          <issue>642</issue>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          30.
          <string-name>
            <surname>Rei</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Semi-supervised multitask learning for sequence labeling</article-title>
          .
          <source>arXiv preprint arXiv:1704.07156</source>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          31.
          <string-name>
            <surname>Rohanian</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Taslimipoor</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Evans</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mitkov</surname>
          </string-name>
          , R.: Wlv at semeval
          <article-title>-2018 task 3: Dissecting tweets in search of irony</article-title>
          .
          <source>In: Proceedings of The 12th International Workshop on Semantic Evaluation</source>
          . pp.
          <volume>553</volume>
          {
          <issue>559</issue>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          32. S gaard, A.,
          <string-name>
            <surname>Goldberg</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Deep multi-task learning with low level tasks supervised at lower layers</article-title>
          .
          <source>In: Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume</source>
          <volume>2</volume>
          :
          <string-name>
            <given-names>Short</given-names>
            <surname>Papers</surname>
          </string-name>
          <article-title>)</article-title>
          .
          <source>vol. 2</source>
          , pp.
          <volume>231</volume>
          {
          <issue>235</issue>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref33">
        <mixed-citation>
          33.
          <string-name>
            <surname>Srivastava</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hinton</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Krizhevsky</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sutskever</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Salakhutdinov</surname>
          </string-name>
          , R.:
          <article-title>Dropout: a simple way to prevent neural networks from over tting</article-title>
          .
          <source>The Journal of Machine Learning Research</source>
          <volume>15</volume>
          (
          <issue>1</issue>
          ),
          <year>1929</year>
          {
          <year>1958</year>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref34">
        <mixed-citation>
          34.
          <string-name>
            <surname>Sun</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Qiu</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xu</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Huang</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          :
          <article-title>How to ne-tune bert for text classi cation? arXiv preprint</article-title>
          arXiv:
          <year>1905</year>
          .
          <volume>05583</volume>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref35">
        <mixed-citation>
          35.
          <string-name>
            <surname>Van Hee</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lefever</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hoste</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          :
          <article-title>Semeval-2018 task 3: Irony detection in english tweets</article-title>
          .
          <source>In: Proceedings of The 12th International Workshop on Semantic Evaluation</source>
          . pp.
          <volume>39</volume>
          {
          <issue>50</issue>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref36">
        <mixed-citation>
          36.
          <string-name>
            <surname>Vaswani</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shazeer</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Parmar</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Uszkoreit</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jones</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gomez</surname>
            ,
            <given-names>A.N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kaiser</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Polosukhin</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          :
          <article-title>Attention is all you need</article-title>
          .
          <source>In: Advances in Neural Information Processing Systems</source>
          . pp.
          <volume>6000</volume>
          {
          <issue>6010</issue>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref37">
        <mixed-citation>
          37.
          <string-name>
            <surname>Wu</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wu</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wu</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yuan</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Huang</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Thu ngn at semeval-2018 task 3: Tweet irony detection with densely connected lstm and multi-task learning</article-title>
          .
          <source>In: Proceedings of The 12th International Workshop on Semantic Evaluation</source>
          . pp.
          <volume>51</volume>
          {
          <issue>56</issue>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref38">
        <mixed-citation>
          38.
          <string-name>
            <surname>Zhang</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Abdul-Mageed</surname>
            ,
            <given-names>M.:</given-names>
          </string-name>
          <article-title>No army, no navy: Bert semi-supervised learning of arabic dialects</article-title>
          .
          <source>In: Proceedings of the Fourth Arabic Natural Language Processing Workshop</source>
          . pp.
          <volume>279</volume>
          {
          <issue>284</issue>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>