<!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>AT-BERT: Adversarial Training BERT for Acronym Identification Winning Solution for SDU@AAAI-21</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Danqing Zhu</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Wangli Lin</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yang Zhang</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Qiwei Zhong</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Guanxiong Zeng</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Weilin Wu</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Jiayu Tang</string-name>
          <email>jiayu.tangjyg@alibaba-inc.com</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Alibaba Group</institution>
          ,
          <addr-line>Hangzhou</addr-line>
          ,
          <country country="CN">China</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2020</year>
      </pub-date>
      <fpage>38</fpage>
      <lpage>45</lpage>
      <abstract>
        <p>Acronym identification focuses on finding the acronyms and the phrases that have been abbreviated, which is crucial for scientific document understanding tasks. However, the limited size of manually annotated datasets hinders further improvement for the problem. Recent breakthroughs of language models pre-trained on large corpora clearly show that unsupervised pre-training can vastly improve the performance of downstream tasks. In this paper, we present an Adversarial Training BERT method named AT-BERT, our winning solution to acronym identification task for Scientific Document Understanding (SDU) Challenge of AAAI 2021. Specifically, the pre-trained BERT is adopted to capture better semantic representation. Then we incorporate the FGM adversarial training strategy into the fine-tuning of BERT, which makes the model more robust and generalized. Furthermore, an ensemble mechanism is devised to involve the representations learned from multiple BERT variants. Assembling all these components together, the experimental results on the SciAI dataset show that our proposed approach outperforms all other competitive state-of-the-art methods.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        Acronyms are widespread used in many technical
documents to reduce duplicate references to the same concept.
According to the reports
        <xref ref-type="bibr" rid="ref2">(Barnett and Doubleday 2020)</xref>
        ,
after an analysis of more than 24 million article titles and 18
million article abstracts published between 1950 and 2019,
there was at least one acronym in 19% of the titles and 73%
of the abstracts. As the growing amount of scientific
papers published every year, the number of acronyms is also
constantly climbing. However, not all acronyms are
standard written (i.e., take the first letter of each word and put
them together in all capital letters), there are many different
ways of writing, e.g., XGBoost is an acronym of eXtreme
Gradient Boosting
        <xref ref-type="bibr" rid="ref4">(Chen and Guestrin 2016)</xref>
        . Thus,
automatic identification of acronyms and discovery of associated
definitions are crucial for text understanding tasks, such as
question answering
        <xref ref-type="bibr" rid="ref1 ref31">(Ackermann et al. 2020; Veyseh 2016)</xref>
        ,
slot filling
        <xref ref-type="bibr" rid="ref7">(Pouran Ben Veyseh, Dernonrcourt, and Nguyen
2019)</xref>
        and definition extraction
        <xref ref-type="bibr" rid="ref8">(Kang et al. 2020)</xref>
        .
Copyright © 2021 for this paper by its authors. Use permitted under
Creative Commons License Attribution 4.0 International (CC BY
4.0). All rights reserved.
      </p>
      <p>
        Several approaches have been proposed to solve the
acronym identification problem in the last two decades. The
majority of the prior methods are rule-based
        <xref ref-type="bibr" rid="ref21 ref24">(Schwartz and
Hearst 2002; Okazaki and Ananiadou 2006)</xref>
        or feature-based
        <xref ref-type="bibr" rid="ref10 ref17">(Kuo et al. 2009; Liu, Liu, and Huang 2017)</xref>
        , which
employs manually designed rules or features for the acronym
and long form predictions. Due to the rules/features are
specially designed for finding long forms, these methods have
high precision. However, they fail to capture all the diverse
forms of acronym expression
        <xref ref-type="bibr" rid="ref7">(Harris and Srinivasan 2019)</xref>
        .
On the contrast, taking advantage of pre-trained word
embeddings and deep architecture, deep learning models like
LSTM-CRF show promising results for acronym
identification
        <xref ref-type="bibr" rid="ref32 ref33">(Veyseh et al. 2020b)</xref>
        . Although these works have made
great progress, there are still some limitations that hinder
further improvement, such as the limited size of manually
annotated acronyms and the noises in the automatically
created datasets.
      </p>
      <p>
        Motivated by the above observations, the first publicly
available and the largest manually annotated acronym
identification the dataset in scientific domain is released
        <xref ref-type="bibr" rid="ref32 ref33">(Veyseh
et al. 2020b)</xref>
        , and the Scientific Document Understanding
(SDU) Challenge
        <xref ref-type="bibr" rid="ref13 ref2 ref32 ref33 ref8">(Veyseh et al. 2020a)</xref>
        for acronym
identification task is hosted 1. The task aims to identify acronyms
(i.e., short-forms) and their meanings (i.e.,long-forms) from
the documents, a toy example is shown in Table 1. In this
paper, we formulate the problem as a sentence-level sequence
labeling problem, and design a novel BERT-based
ensemble model called Adversarial Training BERT (AT-BERT).
Specifically, considering the training data is relatively small,
we adopt the pre-trained BERT model as sentence encoder,
which is pre-trained on general domain corpora and shows a
significant improvement on the performance of downstream
tasks with supervised fine-tuning
        <xref ref-type="bibr" rid="ref3 ref7">(Beltagy, Lo, and Cohan
2019)</xref>
        . Furthermore, we leverage the FGM
        <xref ref-type="bibr" rid="ref20">(Miyato, Dai, and
Goodfellow 2017)</xref>
        , an adversarial training strategy to
improve the generalization ability of the model, making it more
robust to noisy data. Finally, we utilize a multi-BERT
ensemble to fully exploit the representations learned from
multiple BERT variants (Xu et al. 2020). Combining these
respective advantages, our proposed model won the first prize
in the SDU@AAAI-21, outperforming all the other
compet1https://sites.google.com/view/sdu-aaai21/shared-task
      </p>
      <sec id="sec-1-1">
        <title>Output:</title>
        <p>Existing methods for learning with noisy labels (LNL) primarily take a loss correction approach.</p>
        <p>Existing methods for learning with noisy labels (LNL) primarily take a loss correction approach.
itive methods.</p>
        <p>The main contributions are summarized as follows:
• To the best of our knowledge, it is the first work to
incorporate adversarial training strategy into BERT-based
model for acronym identification task in the scientific
domain.
• We propose a novel framework for acronym
identification, including a pre-trained BERT for the semantic
representation, an adversarial training strategy to make the
model more robust and generalized, as well as a
multiBERT ensemble mechanism to achieve superior
performance.
• Extensive experiments are conducted on the data offered
by the SDU@AAAI-21, demonstrating the effectiveness
of our proposed method.</p>
      </sec>
    </sec>
    <sec id="sec-2">
      <title>Related Work</title>
      <p>In this section, we mainly introduce the related studies for
the sequence labeling problem especially the BERT-based
models, then we review the existing researches on
adversarial training.</p>
      <sec id="sec-2-1">
        <title>Sequence Labeling and BERT-based Models</title>
        <p>
          In this paper, we formulate the acronym identification
as a sequence labeling problem. Traditional approaches
of sequence labeling are mainly based on rule-based or
feature-based methods
          <xref ref-type="bibr" rid="ref10 ref21">(Okazaki and Ananiadou 2006; Kuo
et al. 2009)</xref>
          . Recently, deep learning models have achieved
promising results, for instance, the LSTM-CRF
          <xref ref-type="bibr" rid="ref13">(Li et al.
2020)</xref>
          model utilizes LSTMs to extract contextualized
representations and implement sequence optimization by CRF.
With the development of pre-trained language models,
BERT-based models achieve state-of-the-art results in
natural language related tasks. BERT
          <xref ref-type="bibr" rid="ref7 ref9">(Kenton and Toutanova
2019)</xref>
          is a multi-layer bidirectional Transformer encoder,
which is pre-trained on Wikipedia and BooksCorpus, has
given state-of-the-art results on a wide variety of NLP tasks
and inspired many variants. RoBERTa (Liu et al. 2019)
utilizes BPE(Byte Pair Encoding) and dynamic masking to
increase the shared vocabulary. It optimizes the training
strategy of BERT and achieves better performance. ALBERT
          <xref ref-type="bibr" rid="ref12">(Lan et al. 2019)</xref>
          utilizes factorized embedding
parameterization and cross-Layer parameter sharing to reduce the
model parameters. ERINE
          <xref ref-type="bibr" rid="ref14 ref27">(Sun et al. 2019)</xref>
          proposes a new
masking strategy based on phrases and entities, in which
customized tasks are continuously introduced and trained
through multi-task learning.
        </p>
        <p>As for acronym identification, it is more challenging than
general sequence labeling problems since acronyms are
diverse and ambiguous. Thus the con-textualized
representations are crucial and BERT-based models with better
semantic representation are more suitable for the task.</p>
      </sec>
      <sec id="sec-2-2">
        <title>Adversarial Training</title>
        <p>
          Adversarial training, in which a network is trained on
adversarial examples, is an important way to enhance the
robustness of neural networks. The Fast Gradient Sign Method
(FGSM)
          <xref ref-type="bibr" rid="ref6">(Goodfellow, Shlens, and Szegedy 2015)</xref>
          and its
variant Fast Gradient Method (FGM)
          <xref ref-type="bibr" rid="ref20">(Miyato, Dai, and
Goodfellow 2017)</xref>
          are firstly proposed for adversarial
training. The FGSM and FGM methods generate adversarial
examples by adding gradient-based perturbation to the input
samples with different normalization strategies. They relies
heavily on the assumption that the loss function is linear.
Different from them, the Projected Gradient Descent (PGD)
          <xref ref-type="bibr" rid="ref19">(Madry et al. 2018)</xref>
          method is an iterative attack method
with multi-step iterations, and each iteration will project the
perturbation to a specified range. PGD increases
computational cost to get better effect, and many PGD-based
methods have been proposed to be more efficient. YOPO
          <xref ref-type="bibr" rid="ref36">(Zhang
et al. 2019)</xref>
          computes the gradient of first layer merely, while
FreeAT
          <xref ref-type="bibr" rid="ref25">(Shafahi et al. 2019)</xref>
          and FreeLB
          <xref ref-type="bibr" rid="ref39">(Zhu et al. 2020)</xref>
          further reduce the frequency of the gradient computation.
        </p>
        <p>Considering the dataset for acronym identification is
relatively small that is easily to be overfit, we incorporate the
adversarial training strategy into the BERT-based models to
achieve a more robust and generalized performance.</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Methodology</title>
      <p>In this section, we present the overall architecture of our
proposed method, which uses the BERT-based model to solve
the sequence labeling problem, and adopt adversarial
training strategies to improve the robustness of the model.</p>
      <sec id="sec-3-1">
        <title>Overview</title>
        <p>In the following, we propose a BERT-based classification
model based on adversarial training strategy, which is called
adversarial training BERT (AT-BERT). As show in Figure
1, the pre-trained BERT model is used for semantic feature
encoding, and downstream acronym identification task is
solved using its output representations with linear classifiers.
In addition, due to the complexity of the acronyms in
scientific documents and the relatively small training dataset, the
model is prone to overfitting. We use the FGM to add
perturbation to the input samples for adversarial training, making
the model more robust and generalized. Finally, in order to
improve the accuracy of the task, We train different BERT
models, such as BERT, SciBERT, RoBERTa, ALBERT and
ELECTRA, and make an average ensemble for all the
models to achieve superior performance.</p>
      </sec>
      <sec id="sec-3-2">
        <title>BERT For Sequence Labeling Problem</title>
        <p>
          BERT (Bidirectional Encoder Representations from
Transformers) is state of the art language model for NLP. It
uses the encoder structure of the Transformer
          <xref ref-type="bibr" rid="ref30">(Vaswani
et al. 2017)</xref>
          for deep self-supervised learning, which requires
task-specific fine-tuning. Transformer is an attention
mechanism that learns contextual relations between words (or
subwords) in a text. In this paper, the downstream task is a
single sentence tagging problem. We denote a sequence with
T words as : W = (w1; w2; :::; wT ), and a corresponding
target as Y = (y1; y2; :::; yT ). BERT trains an encoder that
generates a contextualized vector representation for each
token as a hidden state:
        </p>
        <p>H = BERT(w1; w2; :::; wT ; )
= (h1; h2; :::; hT )</p>
        <p>L =</p>
        <p>T C
X X yji logsij
i
j
where yi and si are the ground truth probability distribution
and the predicted probability distribution, C is the number
of categories.</p>
      </sec>
      <sec id="sec-3-3">
        <title>Adversarial Training For BERT</title>
        <p>
          Adversarial training is an important way to enhance the
robustness of models by adversarial samples. An adversarial
example is an instance with small, intentional feature
perturbations that induce the model to make a false prediction.
In the procedure of adversarial training, the input samples
will firstly be mixed with some small perturbation to
generate adversarial samples
          <xref ref-type="bibr" rid="ref29">(Szegedy et al. 2014)</xref>
          . The model
is trained with both the original input sample and generated
adversarial samples to enhance its robustness and
generalization.
          <xref ref-type="bibr" rid="ref19">(Madry et al. 2018)</xref>
          abstracted the general form of
adversarial training as the maximum and minimum formula
as follows.
        </p>
        <p>min E(x;y) D radv2S
[ max L( ; x + radv; y)]
(3)
The hidden state is then fed into a fully connection layer
with a softmax unit to obtain the predicted probability
distribution for each token. The model is trained with the
CrossEntropy loss function, which is defined as follows.
(4)
(5)
(1)
(2)
where x represents the input representation of the sample,
and a corresponding target as y, radv is the perturbation
applied to the input, S is the perturbation space, and L is some
loss function like Equation (2). First, The internal
maximization problem is to find the best perturbation at a given data
point x in the perturbation space to generate adversarial
examples that achieves high loss. This can be seen as an attack
on a given neural network. Second, The goal of the external
minimization problem is to find the model parameters to
minimize the “adversarial loss” given by the internal attack
problem.</p>
        <p>With the above clear definition of the adversarial
training, we will introduce how to apply a small perturbation
to the input sample to generate adversarial samples in our
task. There are many related studies on adversarial training
such as the FGSM, single-step algorithm FGM, multi-step
algorithm PGD, and Free-LB. Since these can basically be
regarded as a series of methods, we will briefly introduce
FGM. FGM made a simple extension on the calculation of
perturbation in FGSM and proposed FGM. The main idea is
to add a perturbation to the input that can increase the loss,
it happens to be the direction in which the gradient of the
loss function rises. Specifically, the adversarial perturbation
is defined as follows.</p>
        <p>radv =
g = rxL( ; x; y)</p>
        <p>g
jjgjj2
where g is the gradient of the loss with respect to x, the L2
norm is used to constrain g in Equation (5), and the is a
hyperparameter and defaults to 1. In our acronym identification
task, the perturbation radv will be added to the embedding
of the input word. The overall architecture of the proposed
AT-BERT is shown in Figure 1.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Experiments</title>
      <p>In this section, we first introduce the experimental dataset
and evaluation metrics, and then conduct comprehensive
experimental studies to verify the effectiveness of our method.</p>
      <sec id="sec-4-1">
        <title>Dataset</title>
        <p>We evaluate all models based on the dataset provided by
SDU@AAAI-21. It contains a training set of 14,006
samples, a development set of 1,717 samples, and a test set of
1,750 samples, as shown in Table 2. This task aims to
identify acronyms (i.e., short-forms) and their meanings (i.e.,
long-forms) from the documents. The dataset provides the
boundaries for the acronyms and long forms in the sentence
using BIO format (i.e., label set includes B-short, I-short,
Blong, I-long and O). The percentage of each label category
in all tokens is shown in Figure 2. Obviously, the distribution
of label classes across the all known classes is biased. Each
sample in the training set and development set has three
attributes:
• tokens: The list of words (tokens) of the sample.
• labels: The short-form and long-form labels of the words
in BIO format. The labels B-short and B-long
identifies the beginning of a short-form and long-form phrase,
respectively. The labels I-short and I-long indicates the
words inside the short-form or long-form phrases. Finally,
the label O shows the word is not part of any short-form
or long-form phrase.
• id: The unique ID of the sample.</p>
        <p>
          And the test set has no labels attributes. We refer the readers
to the work
          <xref ref-type="bibr" rid="ref32 ref33">(Veyseh et al. 2020b)</xref>
          for more details.
        </p>
      </sec>
      <sec id="sec-4-2">
        <title>Evaluation Metrics</title>
        <p>
          Regarding the evaluation metrics, similar to previous
work
          <xref ref-type="bibr" rid="ref32 ref33">(Veyseh et al. 2020b)</xref>
          , the results are evaluated based
on their macro-averaged precision, recall, and F1 score on
the test set computed for correct predictions of short-form
(i.e., acronym) and long-form (i.e., phrase) boundaries in
the sentences. A short-form or long-form boundary
prediction is counted as correct if the beginning and the end of the
predicted short-form or long-from boundaries equal to the
ground-truth beginning and end of the short-form or
longform boundary, respectively. The official score (noded as
MacroF1) is the macro average of short-form and long-form
prediction F1 score.
        </p>
      </sec>
      <sec id="sec-4-3">
        <title>Compared Methods</title>
        <p>
          We experiment with four schemes: Baselines, BERT
models, Adversarial Training for BERT (AT-BERT) and Model
Ensemble.
(a) Baselines
• Rule-based methods: These models employ manually
designed rules to extract acronyms and long forms in
the text. The evaluation code and results are provided by
SDU@AAAI-212.
• Deep learning models: As shown in previous work
          <xref ref-type="bibr" rid="ref32 ref33">(Veyseh et al. 2020b)</xref>
          , we can see that the F1 score of the
LSTM-CRF model is only one percentage point higher
than the rule-based models. Therefore, we do not
implement the LSTM-CRF model by ourselves. More details on
these models and hyper parameters are illustrated in
          <xref ref-type="bibr" rid="ref32 ref33">(Veyseh et al. 2020b)</xref>
          .
(b) BERT Models
• BERT: BERT
          <xref ref-type="bibr" rid="ref7 ref9">(Kenton and Toutanova 2019)</xref>
          is a
multilayer bidirectional transformer encoder trained with a
masked language modeling (MLM) objective and the next
sentence prediction task. It has two sizes, we have both
experimented, namely BERTBASE architecture (L=12,
H=768, A=12, total 110M parameters) and BERTLARGE
architecture (L=24, H=1024, A=16, total 355M
parameters) provided by huggingface
          <xref ref-type="bibr" rid="ref34">(Wolf et al. 2020)</xref>
          .
• SciBERT: SciBERT is the pretrained model presented by
Beltagy, Lo, and Cohan, which is based on BERTBASE
and trained on a large corpus of scientific text. It has
achieved new state-of-the-art results on a suite of tasks
in the scientific domain
          <xref ref-type="bibr" rid="ref3 ref38 ref7">(Beltagy, Lo, and Cohan 2019;
Zhong et al. 2021)</xref>
          .
• RoBERTa: RoBERTa (Liu et al. 2019) improves the
original implementation of BERT for better performance,
using dynamic masking, removing the next sentence
prediction task, training with larger batches, on more data,
and for longer. RoBERTa follows the same architecture
as BERT.
• ALBERT: The ALBERT model
          <xref ref-type="bibr" rid="ref12">(Lan et al. 2019)</xref>
          presents
two parameter-reduction techniques to lower memory
consumption and increases the training speed of BERT.
First, splitting the embedding matrix into two smaller
matrices. Second, using repeating layers split among groups.
• ELECTRA: ELECTRA
          <xref ref-type="bibr" rid="ref5">(Clark et al. 2020)</xref>
          proposes a
more effective pretraining method. Instead of corrupting
2https://github.com/amirveyseh/AAAI-21-SDU-shared-task1-AI
        </p>
        <p>Model
Arguments
pretrained model
epoch
batch size
learning rate
max seq len
attention probs
dropout prob
hidden dropout prob
classifier dropout prob
num attention heads
num hidden layers
hidden size
hidden act
intermediate size
vocab size
a https://github.com/allenai/scibert
b https://huggingface.co/bert-base-uncased
c https://huggingface.co/bert-large-uncased
d https://huggingface.co/roberta-large
e https://huggingface.co/albert-xxlarge-v2
f https://huggingface.co/google/electra-large-discriminator
0.1
0.1
some positions of inputs with [MASK], ELECTRA
replaces some tokens of the inputs with their plausible
alternatives sampled from a small generator network.
ELECTRA trains a discriminator to predict whether each
token in the corrupted input was replaced by the generator
or not. The pretrained discriminator can then be used in
downstream tasks for fine-tuning.
(c) AT-BERT Models
In order to solve the problem that the models may be
overfitted and have poor generalization due to less training data, we
used the FGM algorithm for adversarial training on various
BERT models.
(d) Model Ensemble
Model ensemble is a commonly used method to improve
model accuracy. We perform an average ensemble of the
output probability distributions of various BERT models to
obtain the final prediction results. In general, model fusion
requires that the fused models themselves perform well and
are different from each other, so we finally use four models:
BERTLARGE, RoBERTa, ALBERT, and ELECTRA for
fusion (named BERT-E shortly). AT-BERT equipped with
adversarial training strategy is shorted as AT-BERT-E.</p>
      </sec>
      <sec id="sec-4-4">
        <title>Implementation</title>
        <p>
          All models are implemented based on the open source
transformers library of huggingface
          <xref ref-type="bibr" rid="ref34">(Wolf et al. 2020)</xref>
          , which
provides thousands of pretrained models to perform tasks
on texts such as sequence classification and information
extraction. It provides APIs to quickly download and use those
pretrained models on a given text, fine-tune them on your
own datasets. The deep learning framework used in this
paper is Pytorch. In addition, We use two V100 GPUs with 12
cores to complete these experiments.
        </p>
        <p>
          For the above models, we do not modify the original
network structure. For more detailed network structures and
parameters, please refer to transformers
          <xref ref-type="bibr" rid="ref34">(Wolf et al. 2020)</xref>
          . For
each BERT variant model, we pick the best learning rate and
number of epochs on the development set and report the
corresponding test results. We found that when epoch is set to
3, the learning rate is 2e-5, the maximum sentence length is
512 and the batch size is set to occupy as much GPU as
possible, most models are close to convergence. Therefore, we
set the above training parameters uniformly for all models.
More detailed parameter settings are shown in Table 3.
        </p>
      </sec>
      <sec id="sec-4-5">
        <title>Performance Comparison</title>
        <p>The comparison results are shown in Table 4. The main
observations are summarized as follows:</p>
        <p>(1) Compared with the rule-based method and
LSTMCRF model, all the BERT-based models achieve better
results, illustrating the advantage with pre-trained BERT. Due
to the conservative nature of rule-base method, it has higher
precision but far lower recall than all other models. With
unsupervised pre-training on large corpus, the BERT-based
models outperform LSTM-CRF among all the evaluation
metrics.</p>
        <p>(2) Among the six different BERT-based models, the
SciBERT model has the same architecture and training
strategy with BERTBASE. However, the SciBERT, whose
corpus is more relevant to our task, outperforms BERTBASE
with 1.03% increased MarcoF1 score. Meanwhile, the
BERTLARGE have more complex architecture and
parameter, thus it performs better than SciBERT. Taking
advantage of larger training corpus and more effective training
strategies, the performances of other BERT-based models
like RoBERTa and ELECTRA get further improvement.
(3) With the FGM adversarial training strategy, as shown</p>
      </sec>
      <sec id="sec-4-6">
        <title>RULE</title>
      </sec>
      <sec id="sec-4-7">
        <title>LSTM-CRF</title>
        <sec id="sec-4-7-1">
          <title>BERTBASE</title>
        </sec>
      </sec>
      <sec id="sec-4-8">
        <title>SciBERT</title>
        <p>BERTLARGE</p>
      </sec>
      <sec id="sec-4-9">
        <title>RoBERTa</title>
      </sec>
      <sec id="sec-4-10">
        <title>ALBERT</title>
      </sec>
      <sec id="sec-4-11">
        <title>ELECTRA</title>
        <sec id="sec-4-11-1">
          <title>BERTLARGE</title>
        </sec>
      </sec>
      <sec id="sec-4-12">
        <title>RoBERTa</title>
      </sec>
      <sec id="sec-4-13">
        <title>ALBERT</title>
      </sec>
      <sec id="sec-4-14">
        <title>ELECTRA</title>
      </sec>
      <sec id="sec-4-15">
        <title>BERT-E</title>
      </sec>
      <sec id="sec-4-16">
        <title>AT-BERT-E</title>
      </sec>
      <sec id="sec-4-17">
        <title>Human Performance P(%)</title>
        <p>in Figure 3, we can clearly observe that the AT-BERT based
models outperforms those without adversarial training by
a large margin. The obvious improvement indicates that
the adversarial training strategy has a positive effect on the
BERT-based models’ performance.</p>
        <p>(4) From the comparison of ensemble strategies, we can
find that the BERT-E model is more superior than any
BERT-based model, especially in the precision and MarcoF1
metrics. The similar phenomenon also occurs in the
comparison of AT-BERT-E model with single AT-BERT based
model. The AT-BERT-E model which performs best is more
advanced than the baseline methods, i.e., the rule-based
method and LSTM-CRF model, with 8.66% and 7.57%
increased MarcoF1 score, respectively.</p>
        <p>The above observations demonstrate that the effectiveness
of different components of our proposed AT-BERT model.
However, the best performance is still less effective than
human performance, thereby providing many research
opportunities for this scenario.</p>
      </sec>
      <sec id="sec-4-18">
        <title>Case Study</title>
        <p>We further analyze the prediction results of BERT and
ATBERT. An interesting example (DEV-1629) is shown in
Table 5. The corresponding long-forms of “CNNs”, “RNNs”,
and “CRNNs” is “convolutional and/or recurrent neural
nets”, while the prediction of BERT is “recurrent neural
nets”. This example is very confusing, because “recurrent
neural nets” can be considered as the long form of “RNNs”.
The general BERT model might be easily affected by the
token “and/or” and ignores the previous token “convolutional.
The experimental results prove that our proposed AT-BERT</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>Conclusion and Future Work</title>
      <p>In this paper, we proposed a novel BERT-based model called
AT-BERT for acronym identification, the winning solution
to the AAAI-21 Workshop on Scientific Document
Understanding. A FGM-based adversarial training strategy was
incorporated in the fine-tuning of BERT variants, and an
average ensemble mechanism was devised to capture the better
representation from multi-BERT variants. The extensive
experiments were conducted on the SciAI dataset and achieved
the best performance among all the competitive methods,
which verifies the effectiveness of the proposed approach.</p>
      <p>
        In the future, we will optimize our model from two
perspectives. One is to explore more adversarial training
strategies such as PGD and FreeLB for BERT model. The other
is to try different loss function such as Dice Loss
        <xref ref-type="bibr" rid="ref14">(Li et al.
2019)</xref>
        and Focal Loss (Lin et al. 2017) to alleviate the
phenomenon of class imbalance.
      </p>
    </sec>
    <sec id="sec-6">
      <title>Acknowledgments</title>
      <p>We thank the organizers of acronym identification and
disambiguation competitions and the reviewers for their
valuable comments and suggestions.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          <string-name>
            <surname>Ackermann</surname>
            ,
            <given-names>C. F.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Beller</surname>
            ,
            <given-names>C. E.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Boxwell</surname>
            ,
            <given-names>S. A.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Katz</surname>
            ,
            <given-names>E. G.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Summers</surname>
            ,
            <given-names>K. M.</given-names>
          </string-name>
          <year>2020</year>
          .
          <article-title>Resolution of Acronyms in Question Answering Systems</article-title>
          .
          <source>US Patent</source>
          <volume>10</volume>
          ,
          <issue>572</issue>
          ,
          <fpage>597</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <string-name>
            <surname>Barnett</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Doubleday</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          <year>2020</year>
          .
          <article-title>Meta-Research: The Growth of Acronyms in the Scientific Literature</article-title>
          .
          <source>Elife</source>
          <volume>9</volume>
          :
          <fpage>e60080</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          <string-name>
            <surname>Beltagy</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ; Lo,
          <string-name>
            <given-names>K.</given-names>
            ; and
            <surname>Cohan</surname>
          </string-name>
          ,
          <string-name>
            <surname>A.</surname>
          </string-name>
          <year>2019</year>
          .
          <article-title>SciBERT: Pretrained Language Model for Scientific Text</article-title>
          .
          <source>In EMNLP.</source>
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Guestrin</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <year>2016</year>
          .
          <article-title>XGBoost: A Scalable Tree Boosting System</article-title>
          .
          <source>In KDD</source>
          ,
          <fpage>785</fpage>
          -
          <lpage>794</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          <string-name>
            <surname>Clark</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Luong</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Le</surname>
            ,
            <given-names>Q. V.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Manning</surname>
            ,
            <given-names>C. D.</given-names>
          </string-name>
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          <string-name>
            <surname>Goodfellow</surname>
            ,
            <given-names>I. J.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Shlens</surname>
          </string-name>
          , J.; and
          <string-name>
            <surname>Szegedy</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <year>2015</year>
          .
          <article-title>Explaining and Harnessing Adversarial Examples</article-title>
          .
          <source>In ICLR.</source>
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          <string-name>
            <surname>Harris</surname>
            ,
            <given-names>C. G.</given-names>
          </string-name>
          ; and Srinivasan,
          <string-name>
            <surname>P.</surname>
          </string-name>
          <year>2019</year>
          .
          <article-title>My Word! Machine versus Human Computation Methods for Identifying and Resolving Acronyms</article-title>
          .
          <source>Computacio´n y Sistemas</source>
          <volume>23</volume>
          (
          <issue>3</issue>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          <string-name>
            <surname>Kang</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ; Head,
          <string-name>
            <given-names>A.</given-names>
            ;
            <surname>Sidhu</surname>
          </string-name>
          ,
          <string-name>
            <surname>R.</surname>
          </string-name>
          ; Lo,
          <string-name>
            <given-names>K.</given-names>
            ;
            <surname>Weld</surname>
          </string-name>
          ,
          <string-name>
            <surname>D. S.</surname>
          </string-name>
          ; and Hearst,
          <string-name>
            <surname>M. A.</surname>
          </string-name>
          <year>2020</year>
          .
          <article-title>Document-Level Definition Detection in Scholarly Documents: Existing Models, Error Analyses, and Future Directions</article-title>
          . arXiv preprint arXiv:
          <year>2010</year>
          .05129 .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          <string-name>
            <surname>Kenton</surname>
          </string-name>
          ,
          <string-name>
            <surname>J. D. M.-W. C.</surname>
          </string-name>
          <article-title>;</article-title>
          and
          <string-name>
            <surname>Toutanova</surname>
            ,
            <given-names>L. K.</given-names>
          </string-name>
          <year>2019</year>
          .
          <article-title>BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding</article-title>
          .
          <source>In NAACL-HLT</source>
          ,
          <fpage>4171</fpage>
          -
          <lpage>4186</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          <string-name>
            <surname>Kuo</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          -J.; Ling,
          <string-name>
            <given-names>M. H.</given-names>
            ;
            <surname>Lin</surname>
          </string-name>
          , K.-T.; and
          <string-name>
            <surname>Hsu</surname>
            ,
            <given-names>C.-N.</given-names>
          </string-name>
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          <string-name>
            <surname>BIOADI:</surname>
          </string-name>
          <article-title>A Machine Learning Approach to Identifying Abbreviations and Definitions in Biological Literature</article-title>
          .
          <source>In BMC bioinformatics</source>
          , volume
          <volume>10</volume>
          , S7. Springer.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          <string-name>
            <surname>Lan</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Goodman</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Gimpel</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Sharma</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ; and Soricut,
          <string-name>
            <surname>R.</surname>
          </string-name>
          <year>2019</year>
          .
          <article-title>ALBERT: A Lite BERT for Selfsupervised Learning of Language Representations</article-title>
          .
          <source>In ICLR.</source>
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Sun</surname>
            ,
            <given-names>A</given-names>
          </string-name>
          .; Han,
          <string-name>
            <given-names>J</given-names>
            .; and
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <surname>C.</surname>
          </string-name>
          <year>2020</year>
          .
          <article-title>A Survey on Deep Learning for Named Entity Recognition</article-title>
          .
          <source>IEEE Transactions on Knowledge and Data Engineering .</source>
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Sun</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Meng</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Liang</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Wu</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          <article-title>Dice Loss for Data-imbalanced NLP Tasks</article-title>
          . arXiv preprint arXiv:
          <year>1911</year>
          .02855 .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          2017.
          <article-title>Focal Loss for Dense Object Detection</article-title>
          . In ICCV,
          <fpage>2980</fpage>
          -
          <lpage>2988</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ; Liu,
          <string-name>
            <surname>C.</surname>
          </string-name>
          ; and Huang,
          <string-name>
            <surname>Y.</surname>
          </string-name>
          <year>2017</year>
          .
          <article-title>Multi-granularity Sequence Labeling Model for Acronym Expansion Identification</article-title>
          .
          <source>Information Sciences</source>
          <volume>378</volume>
          :
          <fpage>462</fpage>
          -
          <lpage>474</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          2019.
          <article-title>RoBERTa: A Robustly Optimized BERT Pretraining Approach</article-title>
          . arXiv preprint arXiv:
          <year>1907</year>
          .11692 .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          <string-name>
            <surname>Madry</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Makelov</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Schmidt</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Tsipras</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Vladu</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <year>2018</year>
          .
          <article-title>Towards Deep Learning Models Resistant to Adversarial Attacks</article-title>
          .
          <source>In ICLR.</source>
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          <string-name>
            <surname>Miyato</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Dai</surname>
            ,
            <given-names>A. M.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Goodfellow</surname>
            ,
            <given-names>I. J.</given-names>
          </string-name>
          <year>2017</year>
          .
          <article-title>Adversarial Training Methods for Semi-Supervised Text Classification</article-title>
          .
          <source>In ICLR.</source>
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          <string-name>
            <surname>Okazaki</surname>
          </string-name>
          , N.; and
          <string-name>
            <surname>Ananiadou</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <year>2006</year>
          .
          <article-title>Building an Abbreviation Dictionary Using a Term Recognition Approach</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          <source>Bioinformatics</source>
          <volume>22</volume>
          (24):
          <fpage>3089</fpage>
          -
          <lpage>3095</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          2019.
          <article-title>Improving Slot Filling by Utilizing Contextual Information</article-title>
          . arXiv arXiv-
          <year>1911</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          <string-name>
            <surname>Schwartz</surname>
            ,
            <given-names>A. S.</given-names>
          </string-name>
          ; and Hearst,
          <string-name>
            <surname>M. A.</surname>
          </string-name>
          <year>2002</year>
          .
          <article-title>A Simple Algorithm for Identifying Abbreviation Definitions in Biomedical Text</article-title>
          .
          <source>In Biocomputing</source>
          <year>2003</year>
          ,
          <fpage>451</fpage>
          -
          <lpage>462</lpage>
          . World Scientific.
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          <string-name>
            <surname>Shafahi</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Najibi</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Ghiasi</surname>
            ,
            <given-names>M. A.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Xu</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Dickerson</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ; Studer,
          <string-name>
            <given-names>C.</given-names>
            ;
            <surname>Davis</surname>
          </string-name>
          ,
          <string-name>
            <surname>L. S.</surname>
          </string-name>
          ; Taylor, G.; and Goldstein,
          <string-name>
            <surname>T.</surname>
          </string-name>
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          <string-name>
            <given-names>Adversarial</given-names>
            <surname>Training</surname>
          </string-name>
          for Free! In NeurIPS,
          <fpage>3358</fpage>
          -
          <lpage>3369</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          <string-name>
            <surname>Sun</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Feng</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ; Zhang, H.;
          <string-name>
            <surname>Tian</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Zhu</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ; Tian, H.; and Wu,
          <string-name>
            <surname>H.</surname>
          </string-name>
          <year>2019</year>
          .
          <article-title>Ernie: Enhanced Representation Through Knowledge Integration</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          arXiv preprint arXiv:
          <year>1904</year>
          .09223 .
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          <string-name>
            <surname>Szegedy</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Zaremba</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ; Sutskever,
          <string-name>
            <surname>I.</surname>
          </string-name>
          ; Bruna,
          <string-name>
            <given-names>J.</given-names>
            ;
            <surname>Erhan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            ;
            <surname>Goodfellow</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. J</surname>
          </string-name>
          .; and Fergus,
          <string-name>
            <surname>R.</surname>
          </string-name>
          <year>2014</year>
          .
          <article-title>Intriguing Properties of Neural Networks</article-title>
          . In Bengio, Y.; and LeCun, Y., eds., ICLR.
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          <string-name>
            <surname>Vaswani</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Shazeer</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Parmar</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Uszkoreit</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Jones</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Gomez</surname>
            ,
            <given-names>A. N.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Kaiser</surname>
          </string-name>
          , Ł.; and
          <string-name>
            <surname>Polosukhin</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          <year>2017</year>
          .
          <article-title>Attention is All You Need</article-title>
          .
          <source>In NIPS</source>
          ,
          <fpage>5998</fpage>
          -
          <lpage>6008</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          <string-name>
            <surname>Veyseh</surname>
            ,
            <given-names>A. P. B.</given-names>
          </string-name>
          <year>2016</year>
          .
          <article-title>Cross-lingual Question Answering Using Common Semantic Space</article-title>
          . In TextGraphs,
          <fpage>15</fpage>
          -
          <lpage>19</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          <string-name>
            <surname>Veyseh</surname>
            ,
            <given-names>A. P. B.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Dernoncourt</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Nguyen</surname>
            ,
            <given-names>T. H.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Chang</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Celi</surname>
            ,
            <given-names>L. A.</given-names>
          </string-name>
          <year>2020a</year>
          .
          <article-title>Acronym Identification and Disambiguation shared tasks for Scientific Document Understanding</article-title>
          .
          <source>In AAAI Workshop on Scientific Document Understanding.</source>
        </mixed-citation>
      </ref>
      <ref id="ref33">
        <mixed-citation>
          <string-name>
            <surname>Veyseh</surname>
            ,
            <given-names>A. P. B.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Dernoncourt</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Tran</surname>
            ,
            <given-names>Q. H.</given-names>
          </string-name>
          ; and Nguyen,
          <string-name>
            <surname>T. H.</surname>
          </string-name>
          <year>2020b</year>
          .
          <article-title>What Does This Acronym Mean? Introducing a New Dataset for Acronym Identification and Disambiguation</article-title>
          . In COLING,
          <fpage>3285</fpage>
          -
          <lpage>3301</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref34">
        <mixed-citation>
          <string-name>
            <surname>Wolf</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Debut</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Sanh</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Chaumond</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ; Delangue,
          <string-name>
            <given-names>C.</given-names>
            ;
            <surname>Moi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ;
            <surname>Cistac</surname>
          </string-name>
          ,
          <string-name>
            <surname>P.</surname>
          </string-name>
          ; Rault,
          <string-name>
            <given-names>T.</given-names>
            ;
            <surname>Louf</surname>
          </string-name>
          ,
          <string-name>
            <surname>R.</surname>
          </string-name>
          ; Funtowicz,
          <string-name>
            <given-names>M.</given-names>
            ;
            <surname>Davison</surname>
          </string-name>
          ,
          <string-name>
            <surname>J.</surname>
          </string-name>
          ; Shleifer, S.; von Platen, P.; Ma,
          <string-name>
            <given-names>C.</given-names>
            ;
            <surname>Jernite</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            ;
            <surname>Plu</surname>
          </string-name>
          , J.;
          <string-name>
            <surname>Xu</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Scao</surname>
            ,
            <given-names>T. L.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Gugger</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ; Drame,
          <string-name>
            <given-names>M.</given-names>
            ;
            <surname>Lhoest</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            ; and
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            ;
            <surname>Qiu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            ;
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ; and
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <surname>X.</surname>
          </string-name>
          <year>2020</year>
          .
          <article-title>Improving BERT Fine-Tuning via Self-Ensemble and Self-Distillation.</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref35">
        <mixed-citation>
          arXiv preprint arXiv:
          <year>2002</year>
          .10345 .
        </mixed-citation>
      </ref>
      <ref id="ref36">
        <mixed-citation>
          <string-name>
            <surname>Zhang</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ; Zhang, T.;
          <string-name>
            <surname>Lu</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Zhu</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Dong</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref37">
        <mixed-citation>
          <string-name>
            <given-names>You</given-names>
            <surname>Only Propagate</surname>
          </string-name>
          <article-title>Once: Accelerating Adversarial Training via Maximal Principle</article-title>
          . In NeurIPS,
          <fpage>227</fpage>
          -
          <lpage>238</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref38">
        <mixed-citation>
          <string-name>
            <surname>Zhong</surname>
            ,
            <given-names>Q.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Zeng</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Zhu</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ; Zhang,
          <string-name>
            <given-names>Y.</given-names>
            ;
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            ;
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            ; and
            <surname>Tang</surname>
          </string-name>
          ,
          <string-name>
            <surname>J.</surname>
          </string-name>
          <year>2021</year>
          .
          <article-title>Leveraging Domain Agnostic and Specific Knowledge for Acronym Disambiguation</article-title>
          .
          <source>In AAAI Workshop on Scientific Document Understanding.</source>
        </mixed-citation>
      </ref>
      <ref id="ref39">
        <mixed-citation>
          <string-name>
            <surname>Zhu</surname>
          </string-name>
          , C.; Cheng, Y.;
          <string-name>
            <surname>Gan</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Sun</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ; Goldstein,
          <string-name>
            <surname>T.</surname>
          </string-name>
          ; and Liu,
          <string-name>
            <surname>J.</surname>
          </string-name>
          <year>2020</year>
          .
          <article-title>FreeLB: Enhanced Adversarial Training for Natural Language Understanding</article-title>
          .
          <source>In ICLR.</source>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>