<!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>On Knowledge Distillation for Direct Speech Translation</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>AppTek</institution>
          ,
          <addr-line>Aachen</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Fondazione Bruno Kessler</institution>
          ,
          <addr-line>Trento</addr-line>
          ,
          <country country="IT">Italy</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>University of Trento</institution>
          ,
          <addr-line>Trento</addr-line>
          ,
          <country country="IT">Italy</country>
        </aff>
      </contrib-group>
      <fpage>311</fpage>
      <lpage>318</lpage>
      <abstract>
        <p>English. Direct speech translation (ST) has shown to be a complex task requiring knowledge transfer from its sub-tasks: automatic speech recognition (ASR) and machine translation (MT). For MT, one of the most promising techniques to transfer knowledge is knowledge distillation. In this paper, we compare the different solutions to distill knowledge in a sequence-tosequence task like ST. Moreover, we analyze eventual drawbacks of this approach and how to alleviate them maintaining the benefits in terms of translation quality.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1 Introduction</title>
      <p>Speech translation (ST) refers to the process
of translating utterances in one language into text
in a different language. Direct ST is an
emerging paradigm that consists in translating without
*Work done during the PhD at Fondazione Bruno Kessler
and University of Trento.</p>
      <p>
        Copyright c 2020 for this paper by its authors. Use
permitted under Creative Commons License Attribution 4.0
International (CC BY 4.0).
intermediate representations
        <xref ref-type="bibr" rid="ref38 ref7 ref8">(Be´rard et al., 2016;
Weiss et al., 2017)</xref>
        . It is a newer and alternative
approach to cascade solutions
        <xref ref-type="bibr" rid="ref33 ref37">(Stentiford and Steer,
1988; Waibel et al., 1991)</xref>
        , in which the input
audio is first transcribed with an automatic speech
recognition (ASR) model and then the transcript is
translated into the target language with a machine
translation (MT) model.
      </p>
      <p>The rise of the direct ST paradigm is
motivated by its theoretical and practical advantages,
namely: i) during the translation phase it has
access to information present in the audio that is lost
in its transcripts (eg. prosody, characteristic of the
speaker1), ii) there is no error propagation (in
cascade systems the errors introduced by the ASR are
propagated to the MT, which has no cues to
recover them), iii) the latency is lower (as data flows
through a single system instead of two), and iv) the
management is easier (as there is a single model
to maintain and no integration between separate
modules is needed).</p>
      <p>
        On the downside, direct ST suffers from the
lack of large ST training corpora. This problem
has been addressed by researchers through transfer
learning from the high-resource sub-tasks
        <xref ref-type="bibr" rid="ref25 ref30 ref30 ref4 ref6">(Be´rard
et al., 2018; Bansal et al., 2019; Liu et al., 2019)</xref>
        ,
multi-task trainings
        <xref ref-type="bibr" rid="ref1 ref2 ref22 ref3 ref30 ref38 ref7">(Weiss et al., 2017;
Anastasopoulos and Chiang, 2018; Bahar et al., 2019a)</xref>
        ,
and the proposal of data augmentation techniques
        <xref ref-type="bibr" rid="ref18 ref2 ref27 ref3 ref30 ref30">(Jia et al., 2019; Bahar et al., 2019b; Nguyen et al.,
2020)</xref>
        . In this work, we focus on the transfer
learning from MT. The classic approach consists in
pretraining the decoder with that of an MT model. Its
benefit, however, is controversial: indeed,
        <xref ref-type="bibr" rid="ref2 ref3 ref30">(Bahar
et al., 2019a)</xref>
        showed that it is effective only with
1For instance, the pitch of the voice is a cue for the sex
of the speaker. Although the gender is a social aspect and
does not depend on physical attributes, in many cases sex and
gender coincide, so systems relying on this are likely to have
a better accuracy than those that do not have access to any
information regarding the speaker
        <xref ref-type="bibr" rid="ref12 ref13 ref13 ref5">(Bentivogli et al., 2020;
Gaido et al., 2020b)</xref>
        .
the addition of an adapter layer, but this has not
been confirmed in
        <xref ref-type="bibr" rid="ref12 ref13">(Gaido et al., 2020a)</xref>
        , while in
        <xref ref-type="bibr" rid="ref16">(Inaguma et al., 2020)</xref>
        it always brought
improvements. Another, more promising possibility
consists in distilling knowledge from an MT model.
      </p>
      <p>
        Knowledge distillation (KD) is a knowledge
transfer technique introduced for model
compression
        <xref ref-type="bibr" rid="ref15">(Hinton et al., 2015)</xref>
        . A small student model
is trained computing the KL-divergence
        <xref ref-type="bibr" rid="ref24">(Kullback
and Leibler, 1951)</xref>
        with the output probability
distribution of a big teacher model. Although KD
was introduced in the context of image processing,
its effectiveness suggested its adoption in other
fields. Specifically, Liu et al. (2019) showed that
using an MT system as teacher brings significant
improvements to direct ST models. However, they
did not compare the different methods to distill
knowledge in sequence-to-sequence models
        <xref ref-type="bibr" rid="ref19">(Kim
and Rush, 2016)</xref>
        and they did not analyze possible
negative effects of adopting this technique.
      </p>
      <p>In this paper, we analyze different
sequence-tosequence KD techniques (word level,
sequencelevel, sequence interpolation) and their
combination in the context of direct ST. Then, we study
the effect of the best technique on a strong system
trained on a large amount of data to reach
stateof-the-art results. We show that word-level KD is
the best approach and that fine-tuning the resulting
model without KD brings further improvements.
Finally, we analyze the limitations and the
problems present in models trained with KD, which are
partly solved by the final finetuning.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Sequence-level Knowledge Distillation</title>
      <p>We focus on distilling knowledge from an MT
model to an ST model. This is helpful due to the
better results achieved by MT, which is an easier
task than ST, as it does not involve the recognition
of the audio content, and it also benefits from the
availability of large training corpora. Our student
(ST) model is trained to produce the same output
distribution of the teacher (MT) model when the
latter is fed with the transcript of the utterances
passed as input to the ST model. As KD was
introduced in the context of classification tasks, while
ST and MT are sequence-to-sequence generation
tasks, an adaptation is required for its application.
Kim and Rush (2016) introduced three methods to
distill knowledge in sequence-to-sequence
models: i) word-level KD, ii) sequence-level KD, and
iii) sequence interpolation.</p>
      <p>
        Word-level KD (Word-KD) refers to
computing the KL-divergence between the distribution of
the teacher and student models on each token to
be predicted. As recomputing the teacher output
at each iteration is computationally expensive (it
needs a forward pass of the MT model), we
explored the possibility to pre-compute and store the
teacher outputs. To this aim, we experimented
with truncating the output distribution to have a
lower memory footprint, as proposed in MT
        <xref ref-type="bibr" rid="ref30 ref35">(Tan
et al., 2019)</xref>
        .
      </p>
      <p>Sequence-level KD (Seq-KD) consists in
considering as target the output generated by the teacher
model using the beam search.</p>
      <sec id="sec-2-1">
        <title>Sequence interpolation (Seq-Inter) is similar</title>
        <p>
          to Seq-KD, but the target is the sentence with the
highest BLEU score
          <xref ref-type="bibr" rid="ref29">(Papineni et al., 2002)</xref>
          with
respect to the ground truth among the n-best
generated by the beam search with the teacher model.
        </p>
        <p>
          As done in
          <xref ref-type="bibr" rid="ref19">(Kim and Rush, 2016)</xref>
          , we also
combine these methods to analyze whether they are
complementary or not. Finally, we experiment
with fine-tuning the model trained with KD on the
reference translations.
3
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Experimental Settings</title>
      <p>We performed preliminary experiments on a
limited amount of data to compare the three KD
methods. Then, we created a model exploiting all the
available corpora with the best technique to
analyze the KD behavior in a real scenario.
3.1</p>
      <sec id="sec-3-1">
        <title>Data</title>
        <p>
          We first experiment using only Librispeech
          <xref ref-type="bibr" rid="ref22">(Kocabiyikoglu et al., 2018)</xref>
          , an ST corpus with
English audio, transcripts and French translations.
We use the (audio, transcript) pairs for the ASR
pre-training, the (transcript, translation) pairs to
train the MT teacher, and the (audio, translation)
pairs for the ST training.
        </p>
        <p>
          Then, we built an English-Italian model. In
addition to Librispeech, the ASR pre-training
involves TED-LIUM 3
          <xref ref-type="bibr" rid="ref14">(Hernandez et al., 2018)</xref>
          ,
Mozilla Common Voice,2 How2
          <xref ref-type="bibr" rid="ref31">(Sanabria et al.,
2018)</xref>
          and the en-it section of MuST-C
          <xref ref-type="bibr" rid="ref10 ref11 ref30 ref35 ref9">(Di Gangi
et al., 2019a)</xref>
          . The MT teacher is trained on the
OPUS datasets
          <xref ref-type="bibr" rid="ref36">(Tiedemann, 2016)</xref>
          , cleaned using
the ModernMT framework
          <xref ref-type="bibr" rid="ref7">(Bertoldi et al., 2017)</xref>
          .3
        </p>
        <sec id="sec-3-1-1">
          <title>2https://voice.mozilla.org/ 3With the CleaningPipelineMain class.</title>
          <p>
            For ST, we use the en-it section of MuST-C and
Europarl-ST
            <xref ref-type="bibr" rid="ref17">(Iranzo-Sa´nchez et al., 2020)</xref>
            .
          </p>
          <p>
            We pre-process the input audio extracting a
40dimensional feature vector from a span of 25 ms
every 10 ms using Mel filter bank. During this
preprocessing performed with XNMT
            <xref ref-type="bibr" rid="ref26">(Neubig et al.,
2018)</xref>
            , we also apply speaker normalization. The
text is tokenized and the punctuation is normalized
with Moses
            <xref ref-type="bibr" rid="ref23">(Koehn et al., 2007)</xref>
            . We create 8,000
shared BPE merge rules on the MT data of each
experiment and apply them to divide the text into
sub-word units. Samples lasting more than 20
seconds are discarded in order to avoid out of memory
issues during training.
3.2
          </p>
        </sec>
      </sec>
      <sec id="sec-3-2">
        <title>Models</title>
        <p>
          For ST and ASR we use the S-Transformer
architecture
          <xref ref-type="bibr" rid="ref10 ref10 ref11 ref11 ref30 ref30 ref35 ref35 ref9 ref9">(Di Gangi et al., 2019b; Di Gangi et al.,
2019c)</xref>
          with logarithmic distance penalty in the
encoder. In particular, in the experiments on
Librispeech we train a small model using the basic
configuration by Di Gangi et al. (2019b), while in
the experiment with all the data we follow the BIG
configuration. In the second case, we also slightly
modify the architecture to improve performance
by removing the 2D attention layers and
changing the number of Transformer Encoder layers and
Transformer Decoder layers to be respectively 11
and 4 in ST and 8 and 6 in the ASR pre-training
          <xref ref-type="bibr" rid="ref12 ref13">(Gaido et al., 2020a)</xref>
          . The different number of
layers between ASR and ST is motivated by the idea
of having adaptation layers
          <xref ref-type="bibr" rid="ref18 ref2 ref3 ref30 ref30">(Jia et al., 2019; Bahar
et al., 2019a)</xref>
          .
        </p>
        <p>For MT we use a Transformer with 6 layers for
both the encoder and the decoder. In the
preliminary experiments, we use a small model with 512
hidden features in the attention layers, 2,048
hidden units in the feed-forward layers and 8 attention
heads; in the experiment with more data we double
all these parameters.
3.3</p>
      </sec>
      <sec id="sec-3-3">
        <title>Training</title>
        <p>
          We optimize our models with Adam
          <xref ref-type="bibr" rid="ref15 ref21">(Kingma and
Ba, 2015)</xref>
          using betas (0.9, 0.98). The learning
rate increases linearly for 4,000 steps starting from
1e-7 to 5e-3. Then it decays according to the
inverse square root policy. In fine-tunings, the
learning rate is fixed at 1e-4. A 0.1 dropout is applied
and the total batch size is 64. When we do not
use KD, the loss is label smoothed cross entropy
          <xref ref-type="bibr" rid="ref34">(Szegedy et al., 2016)</xref>
          with 0.1 smoothing factor.
        </p>
        <p>
          In the final training with all the data, we apply
SpecAugment
          <xref ref-type="bibr" rid="ref30">(Park et al., 2019)</xref>
          with probability
0.5, 13 frequency masking pars, 20 time masking
pars, 2 frequency masking num, and 2 time
masking num. We also increase the overall batch size to
512. Moreover, the ASR pre-training is performed
as a multi-task training in which we add a CTC
loss (predicting the output transcripts) on the
encoder output
          <xref ref-type="bibr" rid="ref20 ref7">(Kim et al., 2017)</xref>
          .
        </p>
        <p>
          Our code is based on the Fairseq library
          <xref ref-type="bibr" rid="ref28 ref30">(Ott
et al., 2019)</xref>
          , which relies on PyTorch
          <xref ref-type="bibr" rid="ref30">(Paszke
et al., 2019)</xref>
          , and it is available open source
at https://github.com/mgaido91/
FBK-fairseq-ST. The models are trained on
8 GPU K80 with 11 GB of RAM.
4
        </p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Results</title>
      <p>First, we experiment truncating the output
distribution generated by the teacher model. Table 1
shows that truncating the output to few top tokens
does not affect significantly the performance. On
the contrary, the best result is obtained using the
top 8 tokens. Hence, all our experiments with
Word-KD use the top 8 tokens of the teacher.</p>
      <p>Then, we try different values for the
temperature T parameter. The temperature is a parameter
used to sharpen (if T &lt; 1) or soften (if T &gt; 1) the
output distribution. In particular, by adding the
temperature, the sof tmax function that converts
the logits zi into probabilities pi becomes:
pi =</p>
      <p>ezi=T
P(ezi=T )
(1)</p>
      <p>
        A higher temperature has been claimed to help
learning the so-called dark knowledge
        <xref ref-type="bibr" rid="ref15">(Hinton et
al., 2015)</xref>
        , one of the possible reasons alluded to
justify the success of KD. Indeed, with a high
temperature, the cost function is similar to minimizing
the squared distance between the logits produced
by the student and teacher networks. So logits
with very negative values – which are basically
ignored with low temperature – become important
to be learnt by the student network. For a
demonstration, please refer to
        <xref ref-type="bibr" rid="ref15">(Hinton et al., 2015)</xref>
        .
Table 2 reports the BLEU score for different values
of T and indicates that the default T = 1 is the
best value. This result suggests that, in ST, the
networks do not have the capacity of MT models
trained on the same data. So focusing on the mode
of the probability distribution works best.
      </p>
      <p>
        Then, we compare the different sequence-level
KD techniques. We also combine them either
in the same training or in consecutive trainings
through a fine-tuning (FT). The results are
presented in Table 3. We can notice that all the
methods improve significantly over the baseline:
KD makes the training easier and more effective.
Among them, Word-KD achieves the best results
by a large margin. Combining it with another
method in the same training is harmful (Seq-KD
+ Word-KD), while a fine-tuning on a different
KD method or without KD (i.e. using the
groundtruth target and label smoothed cross entropy)
improves results by up to 0.3 BLEU (Seq-KD + FT
Word-KD and Word-KD + FT w/o KD). These
results confirm the choice by
        <xref ref-type="bibr" rid="ref25 ref30">(Liu et al., 2019)</xref>
        , but
differ from those of
        <xref ref-type="bibr" rid="ref19">(Kim and Rush, 2016)</xref>
        . So, we
can conclude that the best sequence-to-sequence
KD technique is task-dependent and that the best
option to distill knowledge from MT to ST is the
word-level KD.
      </p>
      <p>To validate the effectiveness of KD in a real
case, we create a model translating English
utterances into Italian text leveraging all the available
corpora for each task. Our ASR pre-trained model
scores 10.21 WER on the MuST-C test set, while
the teacher MT model scores 30.3 BLEU on the
Italian reference for same test set. We train our
ST model first on the ASR corpora for which we
generated the target with the MT model
(resulting in a Seq-KD + Word-KD training). Note that
we could not use this data without Seq-KD or
Seq-Inter, hence we opted for the best
training including one of them (Seq-KD + Word-KD).
Second, we fine-tune the model on the ST corpora
with Word-KD. Third, we fine-tune without KD
as in the case leading to the best result (Table 3).
So, our training is: Seq-KD + Word-KD (on ASR
data) + FT Word-KD + FT w/o KD. After the first
two steps, our ST model scores 22.8 BLEU on the
MuST-C test set, while after the final fine-tuning
the result is it scores 27.7 BLEU. This highlights
the importance of fine-tuning without KD.
5</p>
    </sec>
    <sec id="sec-5">
      <title>Analysis</title>
      <p>We analyze the outputs of the en-it model to assess
whether, despite the benefits in terms of
translation quality, KD introduces limitations or issues.
Namely, we checked whether the lack of access
of the MT teacher to information present in the
audio and not in the text (such as the gender4 of
the speaker) hinders the ability of the final model
to exploit such knowledge. Moreover, we
compared the output generated by the model before
fine-tuning without KD and after it to determine
the reasons of the significant BLEU improvement.</p>
      <p>
        Direct ST systems have been shown to be able
to exploit the audio to determine the gender of
the speaker and reflect it better in the translations
into languages rich of gender marked words
        <xref ref-type="bibr" rid="ref13 ref5">(Bentivogli et al., 2020)</xref>
        . This is not possible for an MT
system that has no clue regarding the speaker’s
gender. We tested the performance of our models
on the category 1 of the MuST-SHE test set
        <xref ref-type="bibr" rid="ref13 ref5">(Bentivogli et al., 2020)</xref>
        (which contains gender marked
word related to the speaker) to check whether
distilling knowledge from MT harms this advantage
of ST systems or not. Table 4 shows that, indeed,
systems trained with KD inherit the bias from the
MT system and, although the final fine-tuning
mitigates the issue, the final model has a higher
gender bias than a base ST system without KD
(regarding the words related to the speaker).
      </p>
      <p>
        The better translation of speaker’s gender
marked words does not explain the big BLEU
im4This is true if the gender identity coincides with the
biological sex. This assumption holds true in nearly all our data.
Base ST
        <xref ref-type="bibr" rid="ref13 ref5">(Bentivogli et al., 2020)</xref>
        MT
Seq-KD + Word-KD + FT Word-KD
+ FT w/o KD
      </p>
      <p>Female
Wrong
27.2
55.5
46.5
39.0</p>
      <p>Diff.
-0.5
-44.7
-34.2
-19.2</p>
      <p>Male
Wrong
6.8
7.1
8.1
10.5</p>
      <p>
        Bias
Diff. Diff. M - Diff. F
39.5 40.0
47.3 92.0
37.3 71.5
32.7 51.9
provement obtained with fine-tuning. Hence, we
performed a manual analysis of sentences with
the highest TER
        <xref ref-type="bibr" rid="ref32">(Snover et al., 2006)</xref>
        reduction.
The analysis revealed three main types of
enhancements, with the first being the most significant.
Samples with multiple sentences. Some
utterances contain more than one sentence. In this case,
the model trained with KD tends to generate the
translation of only the first sentence, ignoring the
others. This is likely caused by the fact that MT
training data is mostly sentence-level. For this
reason, the MT model tends to assign a high
probability of the EOS symbol after the dot. The student
ST model learns to mimic this harmful behavior
and, as in ST training and test samples often
include more than one sentence, to wrongly truncate
the generation once the first sentence is completed.
The fine-tuned model, instead, generates all the
sentences.
      </p>
      <p>Verbal tenses. The fine-tuned model tends to
produce the correct verbal tense, while before the
fine-tuning the verbal tense is often not precise,
likely because the MT model favors more generic
forms. For instance, “That meant I was going to
be on television” should be translated as
“Significava che sarei andata in televisione”. The model
before fine-tuning produces “Questo significava
che stavo andando in tv” while the fine-tuned
model uses the correct verbal tense “Questo
significava che sarei andata in televisione”. Despite
relevant for the final score, it is debatable whether
this is a real improvement of the fine-tuned model,
as in some cases both verbal tenses are acceptable
or their correctness depends on the context (e.g. in
informal conversations, the usage of conjunctive
forms is often replaced with indicative tenses).
Lexical choices. In some cases, the fine-tuned
model chooses more appropriate words, probably
thanks to the fine-tuning on in-domain data. For
instance, the reference translation for “She has
taken a course in a business school, and she has
become a veterinary doctor” is “Ha seguito un
corso in una scuola di business, ed e` diventata
una veterinaria”. The corresponding utterance
was translated by the model before the fine-tuning
into “Ha frequentato una lezione di economia ed e`
diventata una dottoressa veterinaria”, while after
the fine-tuning the translation is “Ha frequentato
un corso in una business school, ed e` diventata
una dottoressa veterinaria”.</p>
      <p>We can conclude that KD provides a benefit in
terms of overall translation quality, but the
resulting ST system also learns negative behaviors (such
as the masculine default for the speaker-related
words that exacerbates the gender bias). These are
partly solved by performing a fine-tuning without
KD, which keeps (and even enhances) on the other
side the translation capabilities.
6</p>
    </sec>
    <sec id="sec-6">
      <title>Conclusions</title>
      <p>We presented and analyzed the benefits and issues
brought by distilling knowledge from an MT
system for direct ST models. We compared the
different KD techniques and our experiments
indicated that the best training procedure consists in a
pre-training with word-level KD and a fine-tuning
without KD. Then, we showed that KD from MT
models causes an increased gender bias,
omission of sentences in multi-sentential utterances
and more generic word/verbal-tense choices.
Finally, we demonstrated that a fine-tuning helps
resolving these issues, although the exacerbation of
gender bias is not solved, but only alleviated.</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgments</title>
      <p>This work is part of the “End-to-end Spoken
Language Translation in Rich Data Conditions”
project,5 which is financially supported by an
Amazon AWS ML Grant.</p>
      <sec id="sec-7-1">
        <title>5https://ict.fbk.eu/</title>
        <p>units-hlt-mt-e2eslt/</p>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          <string-name>
            <given-names>Antonios</given-names>
            <surname>Anastasopoulos</surname>
          </string-name>
          and
          <string-name>
            <given-names>David</given-names>
            <surname>Chiang</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>Tied Multitask Learning for Neural Speech Translation</article-title>
          .
          <source>In Proc. of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</source>
          , pages
          <fpage>82</fpage>
          -
          <lpage>91</lpage>
          , New Orleans, Louisiana.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <string-name>
            <given-names>Parnia</given-names>
            <surname>Bahar</surname>
          </string-name>
          , Tobias Bieschke, and Hermann Ney.
          <year>2019a</year>
          .
          <article-title>A Comparative Study on End-to-end Speech to Text Translation</article-title>
          .
          <source>In Proc. of International Workshop on Automatic Speech Recognition and Understanding (ASRU)</source>
          , pages
          <fpage>792</fpage>
          -
          <lpage>799</lpage>
          , Sentosa, Singapore.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          <string-name>
            <given-names>Parnia</given-names>
            <surname>Bahar</surname>
          </string-name>
          ,
          <string-name>
            <surname>Albert Zeyer</surname>
          </string-name>
          , Ralf Schlu¨ter, and Hermann Ney. 2019b.
          <article-title>On Using SpecAugment for End-to-End Speech Translation</article-title>
          .
          <source>In Proc. of the International Workshop on Spoken Language Translation (IWSLT)</source>
          , Hong Kong, China.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          <string-name>
            <given-names>Sameer</given-names>
            <surname>Bansal</surname>
          </string-name>
          , Herman Kamper, Karen Livescu, Adam Lopez, and
          <string-name>
            <given-names>Sharon</given-names>
            <surname>Goldwater</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Pretraining on High-resource Speech Recognition Improves Low-resource Speech-to-text Translation</article-title>
          .
          <source>In Proc. of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</source>
          , pages
          <fpage>58</fpage>
          -
          <lpage>68</lpage>
          , Minneapolis, Minnesota.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          <string-name>
            <given-names>Luisa</given-names>
            <surname>Bentivogli</surname>
          </string-name>
          , Beatrice Savoldi, Matteo Negri, Mattia A.
          <string-name>
            <surname>Di</surname>
            <given-names>Gangi</given-names>
          </string-name>
          , Roldano Cattoni, and
          <string-name>
            <given-names>Marco</given-names>
            <surname>Turchi</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>Gender in danger? Evaluating Speech Translation Technology on the MuST-SHE Corpus</article-title>
          .
          <source>In Proc. of the 58th Annual Meeting of the Association for Computational Linguistics (ACL</source>
          <year>2020</year>
          ), pages
          <fpage>6923</fpage>
          -
          <lpage>6933</lpage>
          , Virtual.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          Alexandre Be´rard, Laurent Besacier, Ali Can Kocabiyikoglu, and
          <string-name>
            <given-names>Olivier</given-names>
            <surname>Pietquin</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>End-toEnd Automatic Speech Translation of Audiobooks</article-title>
          .
          <source>In Proc. of ICASSP</source>
          <year>2018</year>
          , pages
          <fpage>6224</fpage>
          -
          <lpage>6228</lpage>
          , Calgary, Alberta, Canada.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          <string-name>
            <given-names>Nicola</given-names>
            <surname>Bertoldi</surname>
          </string-name>
          , Roldano Cattoni,
          <string-name>
            <given-names>Mauro</given-names>
            <surname>Cettolo</surname>
          </string-name>
          , et al.
          <year>2017</year>
          .
          <article-title>MMT: New Open Source MT for the Translation Industry</article-title>
          .
          <source>In Proc. of the 20th Annual Conference of the European Association for Machine Translation (EAMT)</source>
          , pages
          <fpage>86</fpage>
          -
          <lpage>91</lpage>
          , Prague, Czech Republic.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          Alexandre Be´rard, Olivier Pietquin, Christophe Servan, and
          <string-name>
            <given-names>Laurent</given-names>
            <surname>Besacier</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Listen and Translate: A Proof of Concept for End-to-End Speech-to-Text Translation</article-title>
          . In NIPS Workshop on end
          <article-title>-to-end learning for speech and audio processing</article-title>
          , Barcelona, Spain.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          <string-name>
            <given-names>Mattia</given-names>
            <surname>Antonino Di Gangi</surname>
          </string-name>
          , Roldano Cattoni, Luisa Bentivogli, Matteo Negri, and
          <string-name>
            <given-names>Marco</given-names>
            <surname>Turchi</surname>
          </string-name>
          .
          <year>2019a</year>
          .
          <string-name>
            <surname>MuST-C:</surname>
          </string-name>
          <article-title>a Multilingual Speech Translation Corpus</article-title>
          .
          <source>In Proc. 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)</article-title>
          ,
          <source>page 2012-2017</source>
          , Minneapolis, Minnesota.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          <string-name>
            <given-names>Mattia</given-names>
            <surname>Antonino Di Gangi</surname>
          </string-name>
          , Matteo Negri, Roldano Cattoni, Roberto Dessi, and
          <string-name>
            <given-names>Marco</given-names>
            <surname>Turchi</surname>
          </string-name>
          . 2019b.
          <article-title>Enhancing Transformer for End-to-end Speech-to-Text Translation</article-title>
          .
          <source>In Proc. of Machine Translation Summit XVII</source>
          , pages
          <fpage>21</fpage>
          -
          <lpage>31</lpage>
          , Dublin, Ireland.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          <string-name>
            <given-names>Mattia</given-names>
            <surname>Antonino Di Gangi</surname>
          </string-name>
          , Matteo Negri, and
          <string-name>
            <given-names>Marco</given-names>
            <surname>Turchi</surname>
          </string-name>
          . 2019c.
          <article-title>Adapting Transformer to End-toend Spoken Language Translation</article-title>
          .
          <source>In Proc. of INTERSPEECH</source>
          , Graz, Austria, September.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          <string-name>
            <given-names>Marco</given-names>
            <surname>Gaido</surname>
          </string-name>
          , Mattia A.
          <string-name>
            <surname>Di</surname>
            <given-names>Gangi</given-names>
          </string-name>
          , Matteo Negri, and
          <string-name>
            <given-names>Marco</given-names>
            <surname>Turchi</surname>
          </string-name>
          . 2020a.
          <article-title>End-to-End Speech-Translation with Knowledge Distillation: FBK@IWSLT2020</article-title>
          .
          <source>In Proc. of the 17th International Conference on Spoken Language Translation</source>
          , pages
          <fpage>80</fpage>
          -
          <lpage>88</lpage>
          , Virtual.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          <string-name>
            <given-names>Marco</given-names>
            <surname>Gaido</surname>
          </string-name>
          , Beatrice Savoldi, Luisa Bentivogli, Matteo Negri, and
          <string-name>
            <given-names>Marco</given-names>
            <surname>Turchi</surname>
          </string-name>
          . 2020b.
          <article-title>Breeding Gender-aware Direct Speech Translation Systems</article-title>
          .
          <source>In Proc. of The 28th International Conference on Computational Linguistics (COLING</source>
          <year>2020</year>
          ), Virtual.
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          <article-title>Franc¸ois Hernandez, Vincent Nguyen</article-title>
          , Sahar Ghannay, Natalia Tomashenko, and Yannick Este`ve.
          <year>2018</year>
          .
          <article-title>TED-LIUM 3: Twice as Much Data and Corpus Repartition for Experiments on Speaker Adaptation</article-title>
          .
          <source>In Proc. of the Speech and Computer - 20th International Conference (SPECOM)</source>
          , pages
          <fpage>198</fpage>
          -
          <lpage>208</lpage>
          , Leipzig, Germany.
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          <string-name>
            <given-names>Geoffrey</given-names>
            <surname>Hinton</surname>
          </string-name>
          ,
          <source>Oriol Vinyals, and Jeff Dean</source>
          .
          <year>2015</year>
          .
          <article-title>Distilling the Knowledge in a Neural Network</article-title>
          .
          <source>In Proc. of NIPS Deep Learning and Representation Learning Workshop</source>
          , Montre´al, Canada.
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          <string-name>
            <given-names>Hirofumi</given-names>
            <surname>Inaguma</surname>
          </string-name>
          , Shun Kiyono, Kevin Duh, Shigeki Karita, Nelson Yalta, Tomoki Hayashi, and
          <string-name>
            <given-names>Shinji</given-names>
            <surname>Watanabe</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>ESPnet-ST: All-in-One Speech Translation Toolkit</article-title>
          .
          <source>In Proc. of the 58th Annual Meeting of the Association for Computational Linguistics: System Demonstrations</source>
          , pages
          <fpage>302</fpage>
          -
          <lpage>311</lpage>
          , Virtual.
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          <string-name>
            <given-names>Javier</given-names>
            <surname>Iranzo-Sa</surname>
          </string-name>
          ´nchez,
          <string-name>
            <given-names>Joan</given-names>
            <surname>Albert</surname>
          </string-name>
          Silvestre-Cerda`,
          <string-name>
            <surname>Javier</surname>
            <given-names>Jorge</given-names>
          </string-name>
          , Nahuel Rosello´, Gime´nez. Adria`,
          <string-name>
            <surname>Albert</surname>
            <given-names>Sanchis</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Jorge</given-names>
            <surname>Civera</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Alfons</given-names>
            <surname>Juan</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>Europarl-ST: A Multilingual Corpus For Speech Translation Of Parliamentary Debates</article-title>
          .
          <source>In Proc. of ICASSP</source>
          <year>2020</year>
          , pages
          <fpage>8229</fpage>
          -
          <lpage>8233</lpage>
          , Barcelona, Spain.
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          <string-name>
            <given-names>Ye</given-names>
            <surname>Jia</surname>
          </string-name>
          , Melvin Johnson, Wolfgang Macherey,
          <string-name>
            <given-names>Ron J.</given-names>
            <surname>Weiss</surname>
          </string-name>
          , Yuan Cao, Chung-Cheng Chiu, Naveen Ari, Stella Laurenzo, and
          <string-name>
            <given-names>Yonghui</given-names>
            <surname>Wu</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Leveraging Weakly Supervised Data to Improve End-toEnd Speech-to-Text Translation</article-title>
          .
          <source>In Proc. of ICASSP</source>
          <year>2019</year>
          , pages
          <fpage>7180</fpage>
          -
          <lpage>7184</lpage>
          , Brighton, UK.
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          <string-name>
            <given-names>Yoon</given-names>
            <surname>Kim and Alexander M. Rush</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>SequenceLevel Knowledge Distillation</article-title>
          .
          <source>In Proc. of the 2016 Conference on Empirical Methods in Natural Language Processing</source>
          , pages
          <fpage>1317</fpage>
          -
          <lpage>1327</lpage>
          , Austin, Texas.
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          <string-name>
            <given-names>Suyoun</given-names>
            <surname>Kim</surname>
          </string-name>
          , Takaaki Hori, and
          <string-name>
            <given-names>Shinji</given-names>
            <surname>Watanabe</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Joint CTC-Attention based End-to-End Speech Recognition using Multi-task Learning</article-title>
          .
          <source>In Proc. of the 2017 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)</source>
          , pages
          <fpage>4835</fpage>
          -
          <lpage>4839</lpage>
          , New Orleans, Louisiana.
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          <string-name>
            <given-names>Diederik</given-names>
            <surname>Kingma</surname>
          </string-name>
          and
          <string-name>
            <given-names>Jimmy</given-names>
            <surname>Ba</surname>
          </string-name>
          .
          <year>2015</year>
          .
          <article-title>Adam: A Method for Stochastic Optimization</article-title>
          .
          <source>In Proc. of 3rd International Conference on Learning Representations (ICLR)</source>
          , San Diego, California.
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          <string-name>
            <given-names>Ali</given-names>
            <surname>Can</surname>
          </string-name>
          <string-name>
            <surname>Kocabiyikoglu</surname>
          </string-name>
          , Laurent Besacier, and
          <string-name>
            <given-names>Olivier</given-names>
            <surname>Kraif</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>Augmenting librispeech with French translations: A multimodal corpus for direct speech translation evaluation</article-title>
          .
          <source>In Proc. of the Eleventh International Conference on Language Resources and Evaluation (LREC</source>
          <year>2018</year>
          ), Miyazaki, Japan.
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          <string-name>
            <given-names>Philipp</given-names>
            <surname>Koehn</surname>
          </string-name>
          , Hieu Hoang,
          <string-name>
            <given-names>Alexandra</given-names>
            <surname>Birch</surname>
          </string-name>
          , et al.
          <year>2007</year>
          .
          <article-title>Moses: Open Source Toolkit for Statistical Machine Translation</article-title>
          .
          <source>In Proc. of the 45th Annual Meeting of the Association for Computational Linguistics Companion Volume Proceedings of the Demo and Poster Sessions</source>
          , pages
          <fpage>177</fpage>
          -
          <lpage>180</lpage>
          , Prague, Czech Republic.
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          <string-name>
            <given-names>Solomon</given-names>
            <surname>Kullback</surname>
          </string-name>
          and Richard Arthur Leibler.
          <year>1951</year>
          .
          <article-title>On information and sufficiency</article-title>
          . Ann. Math. Statist.,
          <volume>22</volume>
          (
          <issue>1</issue>
          ):
          <fpage>79</fpage>
          -
          <lpage>86</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          <string-name>
            <given-names>Yuchen</given-names>
            <surname>Liu</surname>
          </string-name>
          , Hao Xiong, Jiajun Zhang, Zhongjun He,
          <string-name>
            <surname>Hua Wu</surname>
            ,
            <given-names>Haifeng</given-names>
          </string-name>
          <string-name>
            <surname>Wang</surname>
            , and
            <given-names>Chengqing</given-names>
          </string-name>
          <string-name>
            <surname>Zong</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>End-to-End Speech Translation with Knowledge Distillation</article-title>
          .
          <source>In Proc. of Interspeech</source>
          <year>2019</year>
          , pages
          <fpage>1128</fpage>
          -
          <lpage>1132</lpage>
          , Graz, Austria.
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          <string-name>
            <given-names>Graham</given-names>
            <surname>Neubig</surname>
          </string-name>
          , Matthias Sperber, Xinyi Wang, Matthieu Felix, Austin Matthews, Sarguna Padmanabhan, Ye Qi, Devendra Sachan, Philip Arthur, Pierre Godard, John Hewitt, Rachid Riad, and
          <string-name>
            <given-names>Liming</given-names>
            <surname>Wang</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>XNMT: The eXtensible Neural Machine Translation Toolkit</article-title>
          .
          <source>In Proc. of the 13th Conference of the Association for Machine Translation in the Americas</source>
          , pages
          <fpage>185</fpage>
          -
          <lpage>192</lpage>
          , Boston, MA.
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          <string-name>
            <surname>Thai-Son</surname>
            <given-names>Nguyen</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Sebastian</given-names>
            <surname>Stueker</surname>
          </string-name>
          , Jan Niehues, and
          <string-name>
            <given-names>Alex</given-names>
            <surname>Waibel</surname>
          </string-name>
          .
          <year>2020</year>
          .
          <article-title>Improving Sequence-tosequence Speech Recognition Training with On-thefly Data Augmentation</article-title>
          .
          <source>In Proc. of the 2020 International Conference on Acoustics, Speech, and Signal Processing - IEEE-ICASSP-2020</source>
          , Barcelona, Spain.
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          <string-name>
            <given-names>Myle</given-names>
            <surname>Ott</surname>
          </string-name>
          , Sergey Edunov, Alexei Baevski, Angela Fan, Sam Gross, Nathan Ng, David Grangier,
          <string-name>
            <given-names>and Michael</given-names>
            <surname>Auli</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>fairseq: A Fast, Extensible Toolkit for Sequence Modeling</article-title>
          .
          <source>In Proc. of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics (Demonstrations)</source>
          , pages
          <fpage>48</fpage>
          -
          <lpage>53</lpage>
          , Minneapolis, Minnesota.
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          <string-name>
            <given-names>Kishore</given-names>
            <surname>Papineni</surname>
          </string-name>
          , Salim Roukos, Todd Ward, and
          <string-name>
            <given-names>WeiJing</given-names>
            <surname>Zhu</surname>
          </string-name>
          .
          <year>2002</year>
          .
          <article-title>BLEU: a Method for Automatic Evaluation of Machine Translation</article-title>
          .
          <source>In Proc. of the Daniel S. Park</source>
          ,
          <string-name>
            <given-names>William</given-names>
            <surname>Chan</surname>
          </string-name>
          , Yu Zhang, ChungCheng Chiu, Barret Zoph,
          <string-name>
            <given-names>Ekin D.</given-names>
            <surname>Cubuk</surname>
          </string-name>
          , and
          <string-name>
            <surname>Quoc</surname>
            <given-names>V.</given-names>
          </string-name>
          <string-name>
            <surname>Le</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>SpecAugment: A Simple Data Augmentation Method for Automatic Speech Recognition</article-title>
          .
          <source>In Proc. of Interspeech</source>
          <year>2019</year>
          , pages
          <fpage>2613</fpage>
          -
          <lpage>2617</lpage>
          , Graz, Austria.
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          <string-name>
            <given-names>Adam</given-names>
            <surname>Paszke</surname>
          </string-name>
          , Sam Gross, Francisco Massa, et al.
          <year>2019</year>
          .
          <article-title>PyTorch: An Imperative Style, HighPerformance Deep Learning Library</article-title>
          .
          <source>In Proc. of Advances in Neural Information Processing Systems 32 (NIPS)</source>
          , pages
          <fpage>8024</fpage>
          -
          <lpage>8035</lpage>
          . Curran Associates, Inc.
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          <string-name>
            <given-names>Ramon</given-names>
            <surname>Sanabria</surname>
          </string-name>
          , Ozan Caglayan, Shruti Palaskar, Desmond Elliott, Lo¨ıc Barrault, Lucia Specia, and
          <string-name>
            <given-names>Florian</given-names>
            <surname>Metze</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>How2: A Large-scale Dataset For Multimodal Language Understanding</article-title>
          .
          <source>In Proc. of Visually Grounded Interaction and Language (ViGIL)</source>
          , Montre´al, Canada.
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          <string-name>
            <given-names>Matthew</given-names>
            <surname>Snover</surname>
          </string-name>
          , Bonnie Dorr, Richard Schwartz, Linnea Micciulla,
          <string-name>
            <given-names>and John</given-names>
            <surname>Makhoul</surname>
          </string-name>
          .
          <year>2006</year>
          .
          <article-title>A Study of Translation Edit Rate with Targeted Human Annotation</article-title>
          .
          <source>In Proc. of the 7th Conference of the Association for Machine Translation in the Americas,</source>
          , pages
          <fpage>223</fpage>
          -
          <lpage>231</lpage>
          , Cambridge.
        </mixed-citation>
      </ref>
      <ref id="ref33">
        <mixed-citation>
          <string-name>
            <surname>Fred W. M. Stentiford</surname>
            and
            <given-names>Martin G.</given-names>
          </string-name>
          <string-name>
            <surname>Steer</surname>
          </string-name>
          .
          <year>1988</year>
          .
          <article-title>Machine translation of speech</article-title>
          .
          <source>British Telecom Technology Journal</source>
          ,
          <volume>6</volume>
          (
          <issue>2</issue>
          ):
          <fpage>116</fpage>
          -
          <lpage>122</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref34">
        <mixed-citation>
          <string-name>
            <given-names>Christian</given-names>
            <surname>Szegedy</surname>
          </string-name>
          , Vincent Vanhoucke, Sergey Ioffe, Jon Shlens, and
          <string-name>
            <given-names>Zbigniew</given-names>
            <surname>Wojna</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Rethinking the Inception Architecture for Computer Vision</article-title>
          .
          <source>In Proc. of 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR)</source>
          , pages
          <fpage>2818</fpage>
          -
          <lpage>2826</lpage>
          ,
          <string-name>
            <surname>Las</surname>
            <given-names>Vegas</given-names>
          </string-name>
          , Nevada, United States.
        </mixed-citation>
      </ref>
      <ref id="ref35">
        <mixed-citation>
          <string-name>
            <given-names>Xu</given-names>
            <surname>Tan</surname>
          </string-name>
          , Yi Ren, Di He,
          <string-name>
            <surname>Tao Qin</surname>
          </string-name>
          , and
          <string-name>
            <surname>Tie-Yan Liu</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Multilingual Neural Machine Translation with Knowledge Distillation</article-title>
          .
          <source>In Proc. of International Conference on Learning Representations (ICLR)</source>
          , New Orleans, Louisiana, United States.
        </mixed-citation>
      </ref>
      <ref id="ref36">
        <mixed-citation>
          <source>Jo¨rg Tiedemann</source>
          .
          <year>2016</year>
          .
          <article-title>Opus - parallel corpora for everyone</article-title>
          .
          <source>Baltic Journal of Modern Computing, page 384. Special Issue: Proc. of the 19th Annual Conference of the European Association of Machine Translation (EAMT).</source>
        </mixed-citation>
      </ref>
      <ref id="ref37">
        <mixed-citation>
          <string-name>
            <given-names>Alex</given-names>
            <surname>Waibel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Ajay N.</given-names>
            <surname>Jain</surname>
          </string-name>
          , Arthur E.
          <string-name>
            <surname>McNair</surname>
          </string-name>
          ,
          <string-name>
            <surname>Hiroaki Saito</surname>
            , Alexander G. Hauptmann, and
            <given-names>Joe</given-names>
          </string-name>
          <string-name>
            <surname>Tebelskis</surname>
          </string-name>
          .
          <year>1991</year>
          .
          <article-title>JANUS: A Speech-to-Speech Translation System Using Connectionist and Symbolic Processing Strategies</article-title>
          .
          <source>In Proc. of the International Conference on Acoustics, Speech and Signal Processing, ICASSP 1991</source>
          , pages
          <fpage>793</fpage>
          -
          <lpage>796</lpage>
          , Toronto, Canada.
        </mixed-citation>
      </ref>
      <ref id="ref38">
        <mixed-citation>
          <string-name>
            <given-names>Ron J.</given-names>
            <surname>Weiss</surname>
          </string-name>
          , Jan Chorowski, Navdeep Jaitly,
          <string-name>
            <surname>Yonghui Wu</surname>
            , and
            <given-names>Zhifeng</given-names>
          </string-name>
          <string-name>
            <surname>Chen</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Sequence-toSequence Models Can Directly Translate Foreign Speech</article-title>
          .
          <source>In Proc. of Interspeech</source>
          <year>2017</year>
          , pages
          <fpage>2625</fpage>
          -
          <lpage>2629</lpage>
          , Stockholm, Sweden.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>