<!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>Investigating Continued Pretraining for Zero-Shot Cross-Lingual Spoken Language Understanding</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Samuel Louvan</string-name>
          <email>slouvan@fbk.eu</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Silvia Casola</string-name>
          <email>scasola@fbk.eu</email>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Bernardo Magnini</string-name>
          <email>magnini@fbk.eu</email>
        </contrib>
        <contrib contrib-type="author">
          <string-name>. Fondazione Bruno Kessler</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Italy</string-name>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>. University of Trento</institution>
          ,
          <country country="IT">Italy</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Spoken Language Understanding (SLU) in task-oriented dialogue systems involves both intent classification (IC) and slot filling (SF) tasks. The de facto method for zero-shot cross-lingual SLU consists of ifne-tuning a pretrained multilingual model on English labeled data before evaluating the model on unseen languages. However, recent studies show that adding a second pretraining stage (continued pretraining) can improve performance in certain settings. This paper investigates the effectiveness of continued pretraining on unlabeled spoken language data for zero-shot cross-lingual SLU. We demonstrate that this relatively simple approach benefits either SF and IC task across 8 target languages, especially the ones written in Latin script. We also find that discrepancy between languages used during pretraining and fine-tuning may introduce training instability, which can be alleviated through code-switching.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1 Introduction</title>
      <p>
        In task-oriented dialogue systems, a Spoken
Language Understanding (SLU) component typically
involves intent classification (IC) and slot filling
(SF)
        <xref ref-type="bibr" rid="ref32">(Tur and De Mori, 2011)</xref>
        tasks. For
example, in “Show me the fares for Delta flights
from Dallas to San Francisco“, the intent is
ASKING AN AIRFARE and its corresponding slots are
Delta (AIRLINE-NAME), Dallas (CITY-ORIGIN),
and San Francisco (CITY-DESTINATION). Scaling
SLU models to other languages is still
challenging, especially when there is limited or no labeled
data available in the target language
        <xref ref-type="bibr" rid="ref17 ref24 ref28 ref37 ref6 ref9">(Louvan and
Magnini, 2020)</xref>
        .
      </p>
      <p>
        To approach this problem, previous work studies
IC and SF tasks in a zero-shot cross-lingual setting
(Schuster et al., 2019; Upadhyay et al., 2018; Xu
et a
        <xref ref-type="bibr" rid="ref27">l., 2020</xref>
        ), where it is assumed that a labeled
dataset is only available for a high resource
language (e.g., English). With the rise of pretrained
multilingual language models (LMs)
        <xref ref-type="bibr" rid="ref1 ref12 ref18 ref2 ref30 ref5 ref8">(Devlin et
al., 2019; Lample and Conneau, 2019)</xref>
        the most
common approach is by fine-tuning the pretrained
multilingual model on the English labeled data,
and then evaluate the model directly on the target
language data that are not seen during fine-tuning.
      </p>
      <p>
        While direct fine-tuning serves as a strong
baseline, pretrained LMs are not necessarily
universal and they may need domain-specific adaptation.
Recent works have shown that adding a second
pretraining stage (or continued pretraining)
before fine-tuning can give positive impact on the
model performance
        <xref ref-type="bibr" rid="ref11 ref2">(Beltagy et al., 2019; Lee et al.,
2020; Gururangan et al., 2020)</xref>
        . During continued
pretraining, we continue training the pretrained
language model using a domain-specific or
taskspecific unlabeled dataset, with the same masked
language model objective. This stage is useful to
alleviate the domain mismatch between the original
pretraining and the target task data. By continued
pretraining on domain specific unlabeled data, the
model acquires prior knowledge which is expected
to be helpful in the fine-tuning stage. This approach
has shown promising results on text classification,
typically on English. However, it remains unclear
whether it is applicable in the context of zero-shot
cross-lingual SLU.
      </p>
      <p>In contrast to previous work which has mostly
focused on English classification tasks, we
investigate the effectiveness of continued pretraining
for zero-shot cross-lingual SLU tasks on eight
target languages. Our study reveals that the existing
continued pretraining method (Gururangan et al.,</p>
      <p>Continued Pre-training
Transformer-based
LM (e.g. mBERT)
Train oSbeljfe-cstuivpeervised</p>
      <p>e.g. MLM</p>
      <p>Unlabeled data
from general sources on
many languages</p>
      <p>Adapted LM
Train</p>
      <p>Self-supervised
objective
e.g. MLM
English unlabeled
intermediate data</p>
      <p>Fine tuning</p>
      <p>Fine-tuned LM
Train</p>
      <p>Task-specific
objective
e.g. cross-entropy
English labeled
target task data</p>
      <p>Zero-shot Cross-lingual Prediction</p>
      <p>cost relative origin destination
billet d'avion le moins cher de Tacoma à Orlando</p>
      <p>Intent: airfare info</p>
      <p>Fine-tuned LM
billet d'avion le moins cher de Tacoma à Orlando
The standard approach</p>
      <p>
        With Continued Pre-training
2020), that is successful in English text
classification tasks, does not always generalize to the context
of zero-shot cross-lingual SLU. We focus on the
following research questions:
(Q1) Is continued pretraining effective for
zeroshot cross-lingual SLU tasks?
, → Our experiments on the Mu
        <xref ref-type="bibr" rid="ref27">ltiATIS++ dataset
(Xu et al., 2020</xref>
        ) reveal that incorporating
continued pretraining on intermediate English data can
improve performance over direct fine-tuning for
all languages, on zero-shot SLU. The performance
gain is especially evident for languages with Latin
script writing system. The benefit of continued
pretraining diminishes as we inject cross-lingual
supervision in the fine-tuning stage, even with
simple data augmentation through code-switching.
(Q2) What are the factors that influence the
effectiveness of the continued pretraining stage?
, → Using the target language for continued
pretraining before fine-tuning on English can be
detrimental to the overall performance. However, this
can be largely alleviated by code-switching the
ifne-tuning data. We also observe that performance
improvement are not obtained by merely adding
more continued pretraining data; higher domain
similarity between the continued pretraining data
and the fine-tuning data is indeed more important.
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>Continued Pretraining in Zero-Shot SLU</title>
      <p>Figure 1 shows a comparison between the
standard direct fine-tuning approach with the continued
pretraining approach. The main difference is the
additional intermediate pretraining stage (second
block in Figure 1), in which we continue training
the model on an intermediate unlabeled data
using the same masked language modeling objective.
As the original pretraining data is relatively far
from the task-oriented dialogues used in SLU, we
hypothesize that continued pretraining can
alleviate the domain mismatch and ingest a better prior
knowledge that will be useful during fine-tuning.</p>
      <sec id="sec-2-1">
        <title>Intermediate Data for Continued Pretraining.</title>
        <p>
          We define several criteria for the intermediate
pretraining data for the continued pretraining stage.
First, their domain should be relatively close to
the target dataset. We interpret the term domain
as a multidimensional variety space
          <xref ref-type="bibr" rid="ref17 ref24 ref26 ref28 ref37 ref6 ref9">(Ramponi and
Plank, 2020; Plank, 2016)</xref>
          : a domain comprises
multiple aspects (style, topic, and genre
          <xref ref-type="bibr" rid="ref34">(van der
Wees et al., 2015)</xref>
          ) that contribute to the text
variation. Using this perspective and considering the
target domain of a task-oriented dialogue system,
we require that the intermediate data comprises text
that presents a spoken language dialog style and
covers a broad range of topics. Second, the dataset
should be several magnitudes larger in size than the
target task dataset. Finally, it must be available in
many languages to support our study of continued
pretraining with the target language.
3
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Experimental Setup</title>
      <p>In this section, we describe the experimental
settings related to models, evaluation metrics, and
datasets.
3.1</p>
      <sec id="sec-3-1">
        <title>Models</title>
        <p>
          For all of our experiments, we use a
transformerbased model
          <xref ref-type="bibr" rid="ref35">(Vaswani et al., 2017)</xref>
          , namely
multilingual BERT (mBERT)
          <xref ref-type="bibr" rid="ref8">(Devlin et al., 2019)</xref>
          , as
the pretrained model. This model was pretrained
on Wikipedia articles covering 104 languages, and
we use the bert-base-multilingual-cased version.
        </p>
      </sec>
      <sec id="sec-3-2">
        <title>Continued Pretraining. For the continued pre</title>
        <p>
          training stage, we further train mBERT with
unlabeled intermediate data using only the Masked
Language Modeling (MLM) objective for 12.5K
steps, and mostly adopt the hyperparameters in
Gururangan et a
          <xref ref-type="bibr" rid="ref27">l. (2020</xref>
          ). We compare the following
configurations: (i) DAPTTgt a continued domain
adaptive pretraining (DAPT) of mBERT on
intermediate unlabeled data on the target language. (ii)
DAPTEn a continued DAPT of mBERT on
intermediate unlabeled data on English.
        </p>
        <p>
          Fine-Tuning. As the baseline model, without any
adaptation (No DAPT), we use the joint IC and
SF model architecture
          <xref ref-type="bibr" rid="ref5">(Chen et al., 2019)</xref>
          . This
model is the state-of-the-art for IC and SF
          <xref ref-type="bibr" rid="ref17 ref24 ref28 ref37 ref6 ref9">(Louvan
and Magnini, 2020)</xref>
          , and it is often used as one
of the baselines in recent zero-shot cross-lingual
SLU studies
          <xref ref-type="bibr" rid="ref20 ref37">(Xu et al., 2020; Li et al., 2021)</xref>
          . The
model is trained on the English dataset; as the setup
is zero-shot cross-lingual and we use the model’s
last epoch for zero-shot eva
          <xref ref-type="bibr" rid="ref27">luation following Xu et
al. (2020</xref>
          ). We evaluate the effectiveness of each
of the DAPT configurations when applied to the
following fine-tuning scenarios:
• Fine-tuning on English (FINETUNE-EN). This is
the standard fine-tuning scenario, where we take
mBERT either with DAPT or no DAPT, fine-tune
it on the English IC and SF data, and then
perform zero-shot prediction to all target language
data.
• Fine-tuning on the English code-switched data
(FINETUNE-CS). In this scenario, we perform
data augmentation on the English fine-tuning
dataset via code-switching. We follow the
approach from Qin et a
          <xref ref-type="bibr" rid="ref27">l. (2020</xref>
          ), where we replace
the English words with their translation in the
target language using the Panlex bilingual
dictionary
          <xref ref-type="bibr" rid="ref14">(Kamholz et al., 2014)</xref>
          . Given a training
batch, we randomly sample sentences and tokens
to replace. We use the same hyperparameter used
by Qin et a
          <xref ref-type="bibr" rid="ref27">l. (2020</xref>
          ), that defines both sentence
and word ratio to control the word replacement.
We include FINETUNE-CS because we want to
study the benefits of DAPT when adding stronger
cross-lingual supervision in the fine-tuning stage.
We did not experiment with more complex models
models as our main goal is to investigate the effect
of the the continued pretraining stage, rather than
achieving the state of the art performance per se.
Implementation &amp; Model Evaluation
metric. For the intent and SF models, we adapt
the imp
          <xref ref-type="bibr" rid="ref27">lementation from Qin et al. (2020</xref>
          )
in which they make it publicly available
(https://github.com/kodenii/CoSDA-ML). The
sentence and token ratio replacement for
codeswitching is set to 1.0 and 0.9 respectively. For
training, the learning rate is set to 10− 5, batch size
is set to 32, number of epoch is set to 20. We
did not do extensive hyperparameter tuning, as this
is a zero-shot cross lingual case where the target
dataset is not available, we use the same
hyperparameters as Xu et a
          <xref ref-type="bibr" rid="ref27">l. (2020</xref>
          ). For the continued
pretraining we use the language modeling script
from Huggingface
          <xref ref-type="bibr" rid="ref36">(Wolf et al., 2019)</xref>
          . We use the
bert-base-multilingual-cased, hidden
state size is 768, we apply dropout probability of
0.1. The number of training steps is 12,500
fo
          <xref ref-type="bibr" rid="ref27">llowing Gururangan et al. (2020</xref>
          ), the batch size is set
to 16.
3.2
        </p>
      </sec>
      <sec id="sec-3-3">
        <title>Dataset</title>
        <p>
          SF and IC Dataset. We use the Mu
          <xref ref-type="bibr" rid="ref27">ltiATIS++
(Xu et al., 2020</xref>
          ) dataset, which contains nine
languages (Table 1). The dataset is derived from
the original ATIS English dataset
          <xref ref-type="bibr" rid="ref13">(Hemphill et al.,
1990)</xref>
          , widely used as a benchmark for IC and SF
for task-oriented dialogue systems. Utterances are
related to conversations of a user asking for flight
information to a system.
        </p>
        <p>#train / #dev /#test
#slot</p>
        <p>#intent
4.4K/ 490 / 893
4.4K / 490 / 892
4.4K/ 490 / 893
4.4K / 490 / 893
4.4K / 489 / 892
1.4K / 160 / 888
4.4K / 490/ 886
4.4K / 490 / 893
0.6K / 60/ 715</p>
      </sec>
      <sec id="sec-3-4">
        <title>Continued Pretraining Dataset. We use the</title>
        <p>
          OpenSubtitle (OpenSub)
          <xref ref-type="bibr" rid="ref21">(Lison and Tiedemann,
2016)</xref>
          (Table 2) dataset for the continued
pretraining stage for several reasons. First, the dataset is
constructed from movies and TV series
containing spoken language in dialogue settings covering
a broad range of topics. Second, OpenSubtitle
covers all the languages that we use on the
downstream tasks, which enables us to evaluate not only
DAPTEn but also DAPTTgt. Third, the dataset is
large in size, thus ideal for continued pretraining.
Typically, the dataset used for continued
pretraining is larger than that used for fine-tuning. For our
experiments we randomly sampled 100K sentences
for each language in the OpenSub dataset,
resulting in a dataset around 20 times larger than the
downstream task dataset.
        </p>
        <p>
          Language
The main goal of our experiment is to answer
research question (Q1). Table 3 compares the
zero-shot performance for SF and IC across
languages. In terms of language (by column in Table
3), we observe that all languages improve over
No-DAPT in at least one DAPT setting,
suggesting that DAPT is effective across languages.
Observing the results per task, SF benefits from
either DAPTEn or DAPTTgt for German, Spanish,
French, Portuguese, and Turkish, which all are
languages with Latin scripts writing system. For these
languages, the margin obtained from DAPT when
ifne-tuning on English ( FINETUNE-EN) is higher
than when we apply DAPT on code-switched data
(FINETUNE-CS). The margin of DAPT when
applied on FINETUNE-CS diminishes because
FINETUNE-CS uses a stronger supervision signal
in the fine-tuning stage, thus providing a higher
baseline. For languages with non-Latin script
writing system, continued pretraining is less useful; we
only observe marginal improvement on Japanese
when applying DAPTEn and FINETUNE-EN.
Simi
          <xref ref-type="bibr" rid="ref27">lar to Lauscher et al. (2020</xref>
          ), we believe that
performance is also affected by typological language
proximity such as the subject, verb, and object
ordering, phonology features or other aspect
related to the original size of the pre-training data of
mBERT. We leave this for future work.
        </p>
        <p>DAPT is less effective for IC than for SF. The
only language that consistently benefits from
continued pretraining in both fine-tuning scenarios is
Turkish. We found that it is harder to improve the
model performance of languages with Latin script
through DAPT because the baseline is relatively
high; a stronger supervision signal would thus be
needed. The performance gain is small even for
those languages that do benefit from DAPT. We
also observe that using a different language
between continued pretraining and fine-tuning stages,
DAPTTgt and FINETUNE-EN, may hamper
performance.
5</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Analysis and Discussion</title>
      <p>To answer the research question (Q2), we analyze
our results focusing on the performance variation
when using different languages in DAPT and
finetuning (§5.1) and the effect of domain distribution
in different sources for DAPTEn (§5.2).
5.1</p>
      <sec id="sec-4-1">
        <title>Performance Variation when Applying</title>
      </sec>
      <sec id="sec-4-2">
        <title>DAPT</title>
        <p>
          As we have noticed in Section §4, there are cases
where performance drop when we use DAPTTgt
and FINETUNE-EN, especially for IC. This
behaviour holds even for languages relatively close to
English, such as German and French. One possible
reason for the drop in accuracy is that the language
difference introduces instability in fine-tuning. Our
post-hoc analysis shows that the target language
performance during training on the dev set has a
large deviation and continues fluctuating even after
the English dev performance has stabilized. This
observation resonates with a previous study from
Keung et a
          <xref ref-type="bibr" rid="ref27">l. (2020</xref>
          ), which shows that, for zero-shot
text classification, English dev performance often
does not correlate with those of the target language.
Using DAPTTgt and FINETUNE-EN pronounces
the disagreement of performance between the
English and the target dev set. Figure 2 shows the
comparison of the IC performance during training
across continued pretraining strategies when
finetuning on English for French. However, for the SF
task, we do not observe a large performance
variation even with a language mismatch: this might
indicate that text classification is more susceptible
to instability than sequence tagging. The
variability caused by DAPTTgt is largely alleviated when
we use DAPTEn. For the FINETUNE-CS scenario,
the system is relatively stable even when combined
FINETUNE-EN
No-DAPT
∆ DAPTTgt
∆ DAPTEn
FINETUNE-CS
No-DAPT
∆ DAPTTgt
∆ DAPTEn
FINETUNE-EN
No-DAPT
∆ DAPTTgt
∆ DAPTEn
FINETUNE-CS
No DAPT
∆ DAPTTgt
∆ DAPTEn
65.3
+4.0
+2.1
with DAPTTgt or DAPTEn.
5.2
        </p>
      </sec>
      <sec id="sec-4-3">
        <title>Domain Relevance for DAPTEn</title>
        <p>
          We aim at investigating whether the improvement
from the continued pretraining comes from the
domain relevance of the intermediate data. For this
purpose, we selected a few written text datasets
instead of spoken language, which are focused on
a specific topic . Specifically, we use the European
Medicines Agency (EMEA) and European
Central Bank corpus (ECB) from Tiedemann (2012).
EMEA contains articles about human, veterinary,
or herbal medicines extracted from the EMEA
website. ECB contains financial documents that are
extracted from the website and documentation of
the European Central Bank. In order to check that
EMEA and ECB are more distant in terms of
domain from MultiATIS than OpenSub, we compute
the Jensen Shannon Divergence (JSD) measure
of the term distribution
          <xref ref-type="bibr" rid="ref29 ref6">(Dai et al., 2020; Ruder
and Plank, 2017)</xref>
          . We compute the JSD between
the MultiATIS English dataset that is used for
ifne-tuning and each English intermediate dataset.
Based on the JSD measure, EMEA and ECB are
more distant to MultiATIS than OpenSub (Table
4).
        </p>
        <p>For each intermediate dataset, we randomly
sample 100K sentences and use them for
continued pretraining. We compare the SF
performance of DAPTEn with FINETUNE-EN on
OpenJSD</p>
        <p>OpenSub</p>
        <p>Sub, EMEA, and ECB in Table 5. We focus on
languages that belongs to Indo-European family
which mostly obtain benefit from DAPT on SF
(Table 3) Overall, we see that DAPT using OpenSub
obtains improvements over No-DAPTin all cases.
The DAPT performance using EMEA and ECB
are lower than OpenSub in most cases. Even for
DE and PT languages, DAPT with ECB obtains
substantially lower performance than No-DAPT.
However, there are cases when EMEA or ECB
match or even perform better than OpenSub i.e., for
Spanish. These cases indicate that performing data
selection before continued pretraining could be
beneficial to construct more optimal DAPT dataset. It
would be interesting also to observe how continued
pre-training would work using smaller unlabeled
pre-training data but more task relevant. We leave
this possibility for future work.
6</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>Related Work</title>
      <sec id="sec-5-1">
        <title>Zero-Shot Cross-Lingual SLU. Before the ad</title>
        <p>
          vent of the pre-trained multilingual transformer
models, most approaches relied on pre-trained
cross-lingual embeddings to perform zero-shot
SLU. Upadhyay et al. (2018) uses cross-lingual
embedding
          <xref ref-type="bibr" rid="ref4">(Bojanowski et al., 2017)</xref>
          to perform
zero-shot SLU while Schuster et al. (2019) uses
multilingual embedding (Cove) from pre-trained
multilingual bi-LSTM encoder used in Neural
Machine Translation (NMT). Liu et al. (2019)
leverages transferable latent variables to improve the
sentence representation across languages. More
recently, as pre-trained multilingual transformer
models show potential in zero-shot settings, most
approaches focus on improving their multilingual
representation through augmentation and a
          <xref ref-type="bibr" rid="ref27">lignment
methods. Qin et al. (2020</xref>
          ) proposes multilingual
code-switching using a bi-lingual dictionary to
improve mBERT’s multilingua
          <xref ref-type="bibr" rid="ref27">l representation. Xu
et al. (2020</xref>
          ) introduces soft alignment of slots
between English and the target language produced
by a machine translation system that eliminates the
need for an annotation projection pipe
          <xref ref-type="bibr" rid="ref27">line.
Kulshreshtha et al. (2020</xref>
          ) study the effect of
various cross-lingual alignment methods to improve
mBERT representation.
        </p>
      </sec>
      <sec id="sec-5-2">
        <title>Continued Pre-training Domain adaptation is</title>
        <p>
          a long-studied problem in the NLP community
          <xref ref-type="bibr" rid="ref3 ref7">(Daumé III, 2007; Blitzer et al., 2007)</xref>
          , in which
we assume data in the target domain might be hard
to obtain while being abundant in source domains.
Continued pre-training – where the model is trained
on relevant data using the same pre-training
objective – is used for mitigating the distribution
mismatch between the pre-training and the fine-tuning
data in terms of domain
          <xref ref-type="bibr" rid="ref1 ref11 ref12 ref18 ref2 ref2 ref23 ref30 ref5">(Logeswaran et al., 2019;
Han and Eisenstein, 2019; Gururangan et al., 2020;
Beltagy et al., 2019)</xref>
          , task
          <xref ref-type="bibr" rid="ref11">(Gururangan et al., 2020)</xref>
          ,
and language
          <xref ref-type="bibr" rid="ref25">(Pfeiffer et al., 2020)</xref>
          . A
complementary approach performs a first fine-tuning on related
auxiliary tasks (for which training data are easy to
obtain) before the final fine-tuning on the
downstream task
          <xref ref-type="bibr" rid="ref1 ref12 ref16 ref18 ref2 ref30 ref5 ref9">(Arase and Tsujii, 2019; Garg et al.,
2020; Khashabi et al., 2020)</xref>
          . Our work is in
          <xref ref-type="bibr" rid="ref27">line
with Gururangan et al. (2020</xref>
          ) where we investigate
further the effectiveness of continued pre-training
in the context of zero-shot cross-lingual SLU.
7
        </p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>Conclusion</title>
      <p>We systematically study the effectiveness of
continued pre-training of a multilingual model on
intermediate English unlabeled spoken language data for
zero-shot cross-lingual tasks, namely intent
classification and slot filling, on 8 languages. Our
results show that the domain knowledge learned
in English is transferable to other languages. The
gain from continued pre-training diminishes as we
inject cross-lingual supervision in the fine-tuning
stage. There are several factors that influence the
effectiveness of the continued pre-training: (i)
Using different language between pre-training and
ifne-tuning can hamper performance and introduce
instability in the model training, which can be
alleviated with code switching. (ii) Domain similarity
is important. The more similar – in terms of data
distribution – the intermediate data to the target
dataset yields better performance.
Online, November. Association for Computational
Linguistics.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          <string-name>
            <given-names>Yuki</given-names>
            <surname>Arase</surname>
          </string-name>
          and
          <string-name>
            <surname>Jun'ichi Tsujii</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Transfer finetuning: A BERT case study</article-title>
          .
          <source>In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP)</source>
          , pages
          <fpage>5393</fpage>
          -
          <lpage>5404</lpage>
          ,
          <string-name>
            <surname>Hong</surname>
            <given-names>Kong</given-names>
          </string-name>
          , China, November. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <string-name>
            <given-names>Iz</given-names>
            <surname>Beltagy</surname>
          </string-name>
          , Kyle Lo, and
          <string-name>
            <given-names>Arman</given-names>
            <surname>Cohan</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>SciBERT: A pretrained language model for scientific text</article-title>
          .
          <source>In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP)</source>
          , pages
          <fpage>3615</fpage>
          -
          <lpage>3620</lpage>
          ,
          <string-name>
            <surname>Hong</surname>
            <given-names>Kong</given-names>
          </string-name>
          , China, November. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          <string-name>
            <surname>John Blitzer</surname>
            , Mark Dredze, and
            <given-names>Fernando</given-names>
          </string-name>
          <string-name>
            <surname>Pereira</surname>
          </string-name>
          .
          <year>2007</year>
          .
          <article-title>Biographies, Bollywood, boom-boxes and blenders: Domain adaptation for sentiment classification</article-title>
          .
          <source>In Proceedings of the 45th Annual Meeting of the Association of Computational Linguistics</source>
          , pages
          <fpage>440</fpage>
          -
          <lpage>447</lpage>
          , Prague, Czech Republic, June. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          <string-name>
            <given-names>P.</given-names>
            <surname>Bojanowski</surname>
          </string-name>
          , E. Grave, Armand Joulin, and
          <string-name>
            <given-names>Tomas</given-names>
            <surname>Mikolov</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Enriching word vectors with subword information</article-title>
          .
          <source>Transactions of the Association for Computational Linguistics</source>
          ,
          <volume>5</volume>
          :
          <fpage>135</fpage>
          -
          <lpage>146</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          <string-name>
            <given-names>Qian</given-names>
            <surname>Chen</surname>
          </string-name>
          , Zhu Zhuo, and
          <string-name>
            <given-names>Wen</given-names>
            <surname>Wang</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>BERT for joint intent classification and slot filling</article-title>
          .
          <source>ArXiv</source>
          , abs/
          <year>1902</year>
          .10909.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          <string-name>
            <given-names>Xiang</given-names>
            <surname>Dai</surname>
          </string-name>
          , Sarvnaz Karimi, Ben Hachey, and Cecile Paris.
          <year>2020</year>
          .
          <article-title>Cost-effective selection of pretraining data: A case study of pretraining BERT on social media</article-title>
          .
          <source>In Findings of the Association for Computational Linguistics: EMNLP</source>
          <year>2020</year>
          , pages
          <fpage>1675</fpage>
          -
          <lpage>1681</lpage>
          , Online, November. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          <string-name>
            <surname>Hal Daumé</surname>
            <given-names>III.</given-names>
          </string-name>
          <year>2007</year>
          .
          <article-title>Frustratingly easy domain adaptation</article-title>
          .
          <source>In Proceedings of the 45th Annual Meeting of the Association of Computational Linguistics</source>
          , pages
          <fpage>256</fpage>
          -
          <lpage>263</lpage>
          , Prague, Czech Republic, June. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          <string-name>
            <given-names>Jacob</given-names>
            <surname>Devlin</surname>
          </string-name>
          ,
          <string-name>
            <surname>Ming-Wei</surname>
            <given-names>Chang</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Kenton</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>and Kristina</given-names>
            <surname>Toutanova</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>BERT: pre-training of deep bidirectional transformers for language understanding</article-title>
          .
          <source>In Jill Burstein</source>
          , Christy Doran, and Thamar Solorio, editors,
          <source>Proceedings of the</source>
          <year>2019</year>
          <article-title>Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, NAACL-HLT 2019, Minneapolis</article-title>
          , MN, USA, June 2-7,
          <year>2019</year>
          , Volume
          <volume>1</volume>
          (Long and Short Papers), pages
          <fpage>4171</fpage>
          -
          <lpage>4186</lpage>
          . Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          <string-name>
            <given-names>Siddhant</given-names>
            <surname>Garg</surname>
          </string-name>
          , Thuy Vu, and
          <string-name>
            <given-names>Alessandro</given-names>
            <surname>Moschitti</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>Tanda: Transfer and adapt pre-trained transf ormer models for answer sentence selection</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          <source>Proceedings of the AAAI Conference on Artificial Intelligence</source>
          ,
          <volume>34</volume>
          (
          <issue>05</issue>
          ):
          <fpage>7780</fpage>
          -
          <lpage>7788</lpage>
          , Apr.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          <string-name>
            <given-names>Suchin</given-names>
            <surname>Gururangan</surname>
          </string-name>
          , Ana Marasovic´,
          <string-name>
            <surname>Swabha</surname>
            <given-names>Swayamdipta</given-names>
          </string-name>
          , Kyle Lo, Iz Beltagy, Doug Downey, and
          <string-name>
            <surname>Noah</surname>
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Smith</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>Don't stop pretraining: Adapt language models to domains and tasks</article-title>
          .
          <source>In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics</source>
          , pages
          <fpage>8342</fpage>
          -
          <lpage>8360</lpage>
          , Online, July. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          <string-name>
            <given-names>Xiaochuang</given-names>
            <surname>Han</surname>
          </string-name>
          and
          <string-name>
            <given-names>Jacob</given-names>
            <surname>Eisenstein</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Unsupervised domain adaptation of contextualized embeddings for sequence labeling</article-title>
          .
          <source>In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP)</source>
          , pages
          <fpage>4238</fpage>
          -
          <lpage>4248</lpage>
          ,
          <string-name>
            <surname>Hong</surname>
            <given-names>Kong</given-names>
          </string-name>
          , China, November. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          <string-name>
            <surname>Charles</surname>
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Hemphill</surname>
          </string-name>
          , John J. Godfrey, and
          <string-name>
            <surname>George</surname>
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Doddington</surname>
          </string-name>
          .
          <year>1990</year>
          .
          <article-title>The ATIS spoken language systems pilot corpus</article-title>
          .
          <source>In Speech and Natural Language: Proceedings of a Workshop Held</source>
          at Hidden Valley, Pennsylvania, USA, June 24-27,
          <year>1990</year>
          . Morgan Kaufmann.
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          <string-name>
            <given-names>David</given-names>
            <surname>Kamholz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Jonathan</given-names>
            <surname>Pool</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Susan</given-names>
            <surname>Colowick</surname>
          </string-name>
          .
          <year>2014</year>
          .
          <article-title>PanLex: Building a resource for panlingual lexical translation</article-title>
          .
          <source>In Proceedings of the Ninth International Conference on Language Resources and Evaluation (LREC'14)</source>
          , pages
          <fpage>3145</fpage>
          -
          <lpage>3150</lpage>
          , Reykjavik, Iceland, May.
          <source>European Language Resources Association (ELRA).</source>
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          <string-name>
            <given-names>Phillip</given-names>
            <surname>Keung</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Lu</surname>
          </string-name>
          , Julian Salazar, and
          <string-name>
            <given-names>Vikas</given-names>
            <surname>Bhardwaj</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>Don't Use English Dev: On the ZeroShot Cross-Lingual Evaluation of Contextual Embeddings</article-title>
          .
          <source>In EMNLP.</source>
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          <string-name>
            <given-names>Daniel</given-names>
            <surname>Khashabi</surname>
          </string-name>
          , Sewon Min, Tushar Khot, Ashish Sabharwal, Oyvind Tafjord,
          <string-name>
            <given-names>Peter</given-names>
            <surname>Clark</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Hannaneh</given-names>
            <surname>Hajishirzi</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>UNIFIEDQA: Crossing format boundaries with a single QA system</article-title>
          .
          <source>In Findings of the Association for Computational Linguistics: EMNLP</source>
          <year>2020</year>
          , pages
          <fpage>1896</fpage>
          -
          <lpage>1907</lpage>
          , Online, November. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          <string-name>
            <given-names>Saurabh</given-names>
            <surname>Kulshreshtha</surname>
          </string-name>
          , José Luis Redondo García, and
          <string-name>
            <surname>Ching-Yun Chang</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>Cross-lingual alignment methods for multilingual BERT: A comparative study</article-title>
          .
          <source>In EMNLP.</source>
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          <string-name>
            <given-names>Guillaume</given-names>
            <surname>Lample</surname>
          </string-name>
          and
          <string-name>
            <given-names>Alexis</given-names>
            <surname>Conneau</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Crosslingual language model pretraining</article-title>
          .
          <source>Advances in Neural Information Processing Systems (NeurIPS).</source>
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          <string-name>
            <given-names>Anne</given-names>
            <surname>Lauscher</surname>
          </string-name>
          , Vinit Ravishankar, Ivan Vulic´, and
          <string-name>
            <given-names>Goran</given-names>
            <surname>Glavaš</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>From zero to hero: On the limitations of zero-shot language transfer with multilingual Transformers</article-title>
          .
          <source>In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP)</source>
          , pages
          <fpage>4483</fpage>
          -
          <lpage>4499</lpage>
          ,
          <string-name>
            <given-names>Jinhyuk</given-names>
            <surname>Lee</surname>
          </string-name>
          , Wonjin Yoon,
          <string-name>
            <given-names>Sungdong</given-names>
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Kim</surname>
          </string-name>
          , Sunkyu Kim, Chan Ho So, and
          <string-name>
            <given-names>Jaewoo</given-names>
            <surname>Kang</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>BioBERT: a pre-trained biomedical language representation model for biomedical text mining</article-title>
          .
          <source>Bioinformatics</source>
          ,
          <volume>36</volume>
          :
          <fpage>1234</fpage>
          -
          <lpage>1240</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          <string-name>
            <given-names>Haoran</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Abhinav</given-names>
            <surname>Arora</surname>
          </string-name>
          , Shuohui Chen, Anchit Gupta, Sonal Gupta, and
          <string-name>
            <given-names>Yashar</given-names>
            <surname>Mehdad</surname>
          </string-name>
          .
          <year>2021</year>
          .
          <article-title>MTOP: A comprehensive multilingual task-oriented semantic parsing benchmark</article-title>
          .
          <source>In Proceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics: Main Volume</source>
          , pages
          <fpage>2950</fpage>
          -
          <lpage>2962</lpage>
          , Online, April. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          <string-name>
            <given-names>Pierre</given-names>
            <surname>Lison</surname>
          </string-name>
          and
          <string-name>
            <given-names>J.</given-names>
            <surname>Tiedemann</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Opensubtitles2016: Extracting large parallel corpora from movie and tv subtitles</article-title>
          .
          <source>In LREC.</source>
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          <string-name>
            <given-names>Zihan</given-names>
            <surname>Liu</surname>
          </string-name>
          , Jamin Shin, Yan Xu, Genta Indra Winata, Peng Xu,
          <string-name>
            <given-names>Andrea</given-names>
            <surname>Madotto</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Pascale</given-names>
            <surname>Fung</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Zero-shot cross-lingual dialogue systems with transferable latent variables</article-title>
          .
          <source>In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP)</source>
          , pages
          <fpage>1297</fpage>
          -
          <lpage>1303</lpage>
          ,
          <string-name>
            <surname>Hong</surname>
            <given-names>Kong</given-names>
          </string-name>
          , China, November. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          <string-name>
            <given-names>Lajanugen</given-names>
            <surname>Logeswaran</surname>
          </string-name>
          ,
          <string-name>
            <surname>Ming-Wei</surname>
            <given-names>Chang</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Kenton</given-names>
            <surname>Lee</surname>
          </string-name>
          , Kristina Toutanova, Jacob Devlin, and
          <string-name>
            <given-names>Honglak</given-names>
            <surname>Lee</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Zero-shot entity linking by reading entity descriptions</article-title>
          .
          <source>In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics</source>
          , pages
          <fpage>3449</fpage>
          -
          <lpage>3460</lpage>
          , Florence, Italy, July. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          <string-name>
            <given-names>Samuel</given-names>
            <surname>Louvan</surname>
          </string-name>
          and
          <string-name>
            <given-names>Bernardo</given-names>
            <surname>Magnini</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>Recent neural methods on slot filling and intent classification for task-oriented dialogue systems: A survey</article-title>
          .
          <source>In Proceedings of the 28th International Conference on Computational Linguistics</source>
          , pages
          <fpage>480</fpage>
          -
          <lpage>496</lpage>
          , Barcelona, Spain (Online), December.
          <source>International Committee on Computational Linguistics.</source>
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          <string-name>
            <given-names>Jonas</given-names>
            <surname>Pfeiffer</surname>
          </string-name>
          , Ivan Vulic´,
          <string-name>
            <given-names>Iryna</given-names>
            <surname>Gurevych</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Sebastian</given-names>
            <surname>Ruder</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>MAD-X: An Adapter-Based Framework for Multi-Task Cross-Lingual Transfer</article-title>
          .
          <source>In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP)</source>
          , pages
          <fpage>7654</fpage>
          -
          <lpage>7673</lpage>
          , Online, November. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          <string-name>
            <given-names>Barbara</given-names>
            <surname>Plank</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>What to do about non-standard (or non-canonical) language in NLP</article-title>
          .
          <source>arXiv preprint arXiv:1608</source>
          .
          <fpage>07836</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          <string-name>
            <given-names>L.</given-names>
            <surname>Qin</surname>
          </string-name>
          , Minheng Ni,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , and
          <string-name>
            <given-names>W.</given-names>
            <surname>Che</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>Cosda-ml: Multi-lingual code-switching data augmentation for zero-shot cross-lingual NLP</article-title>
          .
          <source>In IJCAI.</source>
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          <string-name>
            <given-names>Alan</given-names>
            <surname>Ramponi</surname>
          </string-name>
          and
          <string-name>
            <given-names>Barbara</given-names>
            <surname>Plank</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>Neural unsupervised domain adaptation in NLP-A survey</article-title>
          .
          <source>In Proceedings of the 28th International Conference on Computational Linguistics</source>
          , pages
          <fpage>6838</fpage>
          -
          <lpage>6855</lpage>
          , Barcelona, Spain (Online), December.
          <source>International Committee on Computational Linguistics.</source>
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          <string-name>
            <given-names>Sebastian</given-names>
            <surname>Ruder</surname>
          </string-name>
          and
          <string-name>
            <given-names>Barbara</given-names>
            <surname>Plank</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Learning to select data for transfer learning with Bayesian optimization</article-title>
          .
          <source>In Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing</source>
          , pages
          <fpage>372</fpage>
          -
          <lpage>382</lpage>
          , Copenhagen, Denmark, September. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          <string-name>
            <given-names>Sebastian</given-names>
            <surname>Schuster</surname>
          </string-name>
          , Sonal Gupta, Rushin Shah, and
          <string-name>
            <given-names>Mike</given-names>
            <surname>Lewis</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Cross-lingual transfer learning for multilingual task oriented dialog</article-title>
          . In Jill Burstein, Christy Doran, and Thamar Solorio, editors,
          <source>Proceedings of the</source>
          <year>2019</year>
          <article-title>Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, NAACL-HLT 2019, Minneapolis</article-title>
          , MN, USA, June 2-7,
          <year>2019</year>
          , Volume
          <volume>1</volume>
          (Long and Short Papers), pages
          <fpage>3795</fpage>
          -
          <lpage>3805</lpage>
          . Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          <string-name>
            <given-names>Jörg</given-names>
            <surname>Tiedemann</surname>
          </string-name>
          .
          <year>2012</year>
          .
          <article-title>Parallel data, tools and interfaces in opus</article-title>
          .
          <source>In Nicoletta Calzolari (Conference Chair)</source>
          , Khalid Choukri, Thierry Declerck, Mehmet Ugur Dogan, Bente Maegaard, Joseph Mariani, Jan Odijk, and Stelios Piperidis, editors,
          <source>Proceedings of the Eight International Conference on Language Resources and Evaluation (LREC'12)</source>
          , Istanbul, Turkey, may.
          <source>European Language Resources Association (ELRA).</source>
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          <string-name>
            <given-names>Gokhan</given-names>
            <surname>Tur and Renato De Mori</surname>
          </string-name>
          .
          <year>2011</year>
          .
          <article-title>Spoken language understanding: Systems for extracting semantic information from speech</article-title>
          . John Wiley &amp; Sons.
        </mixed-citation>
      </ref>
      <ref id="ref33">
        <mixed-citation>
          <string-name>
            <given-names>Shyam</given-names>
            <surname>Upadhyay</surname>
          </string-name>
          , Manaal Faruqui, Gökhan Tür, Dilek
          <string-name>
            <given-names>Z.</given-names>
            <surname>Hakkani-Tür</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Larry</given-names>
            <surname>Heck</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>(almost) zero-shot cross-lingual spoken language understanding</article-title>
          .
          <source>2018 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)</source>
          , pages
          <fpage>6034</fpage>
          -
          <lpage>6038</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref34">
        <mixed-citation>
          <string-name>
            <surname>Marlies van der Wees</surname>
            , Arianna Bisazza, Wouter Weerkamp, and
            <given-names>Christof</given-names>
          </string-name>
          <string-name>
            <surname>Monz</surname>
          </string-name>
          .
          <year>2015</year>
          .
          <article-title>What's in a domain? Analyzing genre and topic differences in statistical machine translation</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 (Volume 2: Short Papers)</source>
          , pages
          <fpage>560</fpage>
          -
          <lpage>566</lpage>
          , Beijing, China, July. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref35">
        <mixed-citation>
          <string-name>
            <given-names>Ashish</given-names>
            <surname>Vaswani</surname>
          </string-name>
          , Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones,
          <string-name>
            <given-names>Aidan N.</given-names>
            <surname>Gomez</surname>
          </string-name>
          , Lukasz Kaiser, and
          <string-name>
            <given-names>Illia</given-names>
            <surname>Polosukhin</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Attention is all you need</article-title>
          .
          <source>In Isabelle Guyon, Ulrike von Luxburg</source>
          , Samy Bengio,
          <string-name>
            <surname>Hanna M. Wallach</surname>
            , Rob Fergus,
            <given-names>S. V. N.</given-names>
          </string-name>
          <string-name>
            <surname>Vishwanathan</surname>
          </string-name>
          , and Roman Garnett, editors,
          <source>Advances in Neural Information Processing Systems 30: Annual Conference on Neural Information Processing Systems</source>
          <year>2017</year>
          ,
          <fpage>4</fpage>
          -9
          <source>December</source>
          <year>2017</year>
          , Long Beach, CA, USA, pages
          <fpage>5998</fpage>
          -
          <lpage>6008</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref36">
        <mixed-citation>
          <string-name>
            <given-names>Thomas</given-names>
            <surname>Wolf</surname>
          </string-name>
          , Lysandre Debut, Victor Sanh, Julien Chaumond, Clement Delangue, Anthony Moi, Pierric Cistac, Tim Rault, R'emi Louf, Morgan Funtowicz, and
          <string-name>
            <given-names>Jamie</given-names>
            <surname>Brew</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Huggingface's transformers: State-of-the-art natural language processing</article-title>
          . ArXiv, abs/
          <year>1910</year>
          .03771.
        </mixed-citation>
      </ref>
      <ref id="ref37">
        <mixed-citation>
          <string-name>
            <given-names>Weijia</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Batool</given-names>
            <surname>Haider</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Saab</given-names>
            <surname>Mansour</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>End-to-end slot alignment and recognition for cross-lingual NLU</article-title>
          .
          <source>In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP)</source>
          , pages
          <fpage>5052</fpage>
          -
          <lpage>5063</lpage>
          , Online, November. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>