<!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>Spanish Pre-Trained Language Models for HealthCare Industry</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Jalaj Harkawat</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Tejas Vaidhya</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Equal Contribution by both Authors</institution>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Indian Institute of Technology</institution>
          ,
          <addr-line>Kharagpur</addr-line>
          ,
          <country country="IN">INDIA</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Currently transformer based model have shown high accuracy and good prediction on downstream tasks like Named Entity Recognition, Sentiment analysis etc. But the terminologies used in Healthcare sector such as names of di erent diseases, medicines and departments makes it di cult to predict with high accuracy. In this paper we are going to show a system for Named Entity tagging based on BETO (Spanish BERT). Experimental results have shown that our model gives better results than the current baseline of MEDDOPROF Shared task.</p>
      </abstract>
      <kwd-group>
        <kwd>BERT</kwd>
        <kwd>NER</kwd>
        <kwd>Healthcare Industry</kwd>
        <kwd>Transformers</kwd>
        <kwd>BART</kwd>
        <kwd>BETO</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        Natural Language Processing (NLP) is a rapidly expanding subject with
several applications, and we are utilising it to get more insights into our existing
dataset. We all know how important our occupations and employment status are
to our identities. Occupations have a signi cant in uence on one's physical and
mental health, as well as their habits and lifestyle choices. For the prevention
and control of the negative health impacts of our occupations, an entire
medical specialty, occupational medicine, is required (workplace accidents, short and
long-term e ect of exposition to toxic substances and pathogens, work-related
mental health issues such as overburden and stress). The COVID-19 epidemic
has highlighted this impact, since many people in certain vocations have been
disproportionately impacted (for instance, health professionals and other
essential workers).
"Tools that automatically detect these sociodemographic factors can help
researchers to better characterize multiple health aspects related to speci c
occupations. However, up until now these entities have mostly been ignored. The
MEDDOPROF Shared Task [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] takes a more comprehensive look at
occupations, also considering employment statuses and non-paid activities. [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]"
      </p>
      <sec id="sec-1-1">
        <title>Background</title>
        <p>
          We generate a lot of data as a result of continual technological development and
a fast-paced environment, and with advancements in technology, particularly
deep learning techniques used in Natural Language Processing (NLP), there has
been substantial improvement in Named Entity Recognition. Long ShortTerm
Memory (LSTM) [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] and Conditional Random Field (CRF) [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ], for example,
have signi cantly improved their performance in biological Named entity
recognition (NER) [
          <xref ref-type="bibr" rid="ref17">17</xref>
          ] in recent years. In this paper we are introducing our system
for Named Entity Recognition tagging on the MEDDOPROF Dataset. We will
use BETO [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ] which is a BERT [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] based model trained on big Spanish corpus.
Our Code and ne-tuned model is available at:
https://github.com/jharkawat/meddoprof shared task
2
        </p>
      </sec>
    </sec>
    <sec id="sec-2">
      <title>Task Description and Dataset</title>
      <p>MEDDOPROF (Medical Documents Profession Recognition) is a shared task
organized within the IberLEF 2021 workshop that focuses on to develop automatic
occupation detection systems for Spanish medical texts. It has three sub-tracks
and Shared Task-1 Named MEDDOPROF-NER is a Named Entity Recognition
task, requires automatically nding mentions of occupations and classifying each
of them as a profession, an employment status or an activity. It can be described
as a token-level classi cation task.</p>
      <sec id="sec-2-1">
        <title>Our sentence with n number of words is de ned as:</title>
      </sec>
      <sec id="sec-2-2">
        <title>Then it can be classi ed into a label set with m labels:</title>
        <p>A = fa1; a2; a3; a4; a5; a6:::::ang</p>
        <p>y = fl1; l2; l3; l4; l5; l6:::::lmg
Given Named-Entity of type Y Y Y . If entities of type Y Y Y are immediately next
to each other, the rst word of the second entity will be tagged B-YYY in order
to show that it starts another entity and the entities inside B Y Y Y will be
represented as I Y Y Y . For example, the sentence "equipo de psiquiatr a" have the
following labels fB P ROF ESION; I P ROF ESION; I P ROF ESION g.
2.1</p>
        <sec id="sec-2-2-1">
          <title>Dataset</title>
          <p>
            The MEDDOPROF corpus [
            <xref ref-type="bibr" rid="ref8">8</xref>
            ] is a collection of 1844 clinical cases annotated
with professions and employment statuses from over 20 di erent specialities.
After many rounds of quality control and annotation consistency analysis, the
corpus was annotated by a team of linguists and clinical specialists who followed
speci cally developed annotation standards before annotating the whole dataset.
Each clinical case will be stored as a separate le in the corpus, which will be
delivered in plain text with UTF8 encoding.
          </p>
          <p>
            Refer to Figure 1 for an example of the corpus' annotation [
            <xref ref-type="bibr" rid="ref15">15</xref>
            ]
(1)
(2)
In part 3.1, we'll go over the BETO that we used in our nal submission, then
in section 3.2, we'll go over our problem-solving strategy, and nally, we'll go
over which additional model we utilised during our tests.
          </p>
          <p>
            Baseline We compare our system to the baseline provided by the organizers [
            <xref ref-type="bibr" rid="ref1">1</xref>
            ],
which is a simple lookup system that uses the training set as a reference. It
then examines if the extracted annotations are present in a fresh batch of text
documents.
3.1
          </p>
        </sec>
        <sec id="sec-2-2-2">
          <title>BETO</title>
          <p>
            BETO is a BERT model trained on a big Spanish corpus [
            <xref ref-type="bibr" rid="ref5">5</xref>
            ] (ParaCrawl,
EUBookshop [
            <xref ref-type="bibr" rid="ref16">16</xref>
            ], MultiUN [
            <xref ref-type="bibr" rid="ref16">16</xref>
            ], OpenSubtitles, DGC [
            <xref ref-type="bibr" rid="ref16">16</xref>
            ], DOGC [
            <xref ref-type="bibr" rid="ref16">16</xref>
            ], ECB, EMEA,
Europarl, GlobalVoices [
            <xref ref-type="bibr" rid="ref16">16</xref>
            ], JRC, News-Commentary11 [
            <xref ref-type="bibr" rid="ref16">16</xref>
            ], TED, UN). BETO
is around the same size (24-layer, 1024-hidden, 16-heads, 340M parameters) as
a BERT-Base and was trained using the Whole Word Masking and Next
Sentence Prediction classi ers. In most downstream tasks in the Spanish language,
this surpassed the Best Multilingual BERT. Such language-speci c bidirectional
representations, we believe, are also important for our purpose.
3.2
          </p>
        </sec>
        <sec id="sec-2-2-3">
          <title>Architecture</title>
          <p>
            We rst sub-word tokenize each token of sentences, using BETO's [
            <xref ref-type="bibr" rid="ref6">6</xref>
            ] wordpiece
tokenizer from Huggingface [
            <xref ref-type="bibr" rid="ref18">18</xref>
            ] library and pass it through BETO Models BERT
Transformer stacks (trained on big Spanish corpus) to extract contextualised
domain speci c representation. Then, for each word, we choose the representation
of the rst sub-word token and ne-tuning by training an additional feed-forward
layer log(softmax(CW )) that assigns the softmax probability distribution to each
label.
          </p>
          <p>The loss function used:
loss(x; class) =
log
exp(x[class]) !
Pj exp(x[j])
=</p>
          <p>0 1
x[class] + log @X exp(x[j])A (3)
j</p>
          <p>Additionally, we also tried using a Multilingual BERT (cased), which was
pretrained model on the top 104 languages with the largest Wikipedia using
a masked language modeling (MLM) objective. This model is case sensitive: it
makes a di erence between english and English.</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Settings and Results</title>
      <sec id="sec-3-1">
        <title>Experimental Settings</title>
        <p>
          We keep maximum length of input sentence to 512 to consider long sentences.
Large models (24-layer, 1024-hidden, 16-heads, 340M parameters) are trained
for 4 epochs with batch size 16. We early stop the models using the valid set.
The dropout probability was set to 0.1 for all layers. Optimization is done using
Adam [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ] with a learning rate of 5e-5. The remaining hyperparameters were
kept same as BERT. We used the PyTorch [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ] implementation of BERT from
Huggingfaces tranformers library. An overview of these parameters is given in
Table 1.
        </p>
        <p>
          For selecting best models in experimental phase (i.e. before release of test
set) we use split of 60/20/20 for train, dev and test respectively. For our nal
submission, we used a 70/30 split for train/valid set of initial data and a
pretrained BETO model. We also split sentences with more than 512 tokens to two
or more sentences to get the desired model's input sentence length. To evaluate
the performance of the system, an evaluation script [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ] along with the dataset
was provided by the organizers.
The BETO models we propose is a competitive solution that performs better
than the task's baseline. Tables 2 shows the system's performance on the test set,
while Table 3 contain our ablation study and result are based on partial matches,
unlike the o cial results which uses exact matches. We also used multilingual
BERT for performance comparison.
        </p>
        <p>BETO performed better than other multi language model because it is trained
on large domain speci c(Spanish corpus) on the other hand multilingual BERT
is trained on relatively less data with multiple languages.
Domain speci c pretrained transformer models have shown remarkable
improvement in the majority of the downstream NLP tasks, but there are instances where
BERT failed drastically. In this section we will try to nd out some of the causes
of failure in our system (BETO).
1. On our dataset, the BERT tokenizer is ine cient. Its lexicon does not include
terminology from the healthcare industry, and it has not been trained in a
language-speci c setting. As a result, learning encoding based on improperly
subtokenized words is di cult for the BERT model. Tokenizers could be
trained on both biomedical and general text sets as a feasible approach.
2. The dataset contains a large number of phrases that lack Named Entity
Recognition tags, resulting in a large number of negative entries and a poor
F1-score. Increase the dataset size and eliminate the sentences with no or
few NER tags available as a possible solution.
3. Because of small dataset size, our Transformer based model is not giving
very good results. A Possible solution can be to add more positive datapoint
and break the bigger sentences into smaller ones. This will also help with
maintaining the token length less than 512 as desired by BERT based models.
6</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Conclusion and Future Work</title>
      <p>In this paper, we have presented a system based on BETO for the rst sub-track
of the MEDDOPROF Shared Task, held as part of the IberLEF 2021 workshop.
We build our models keeping in mind the success of pre-trained models. It helps
in generating bidirectional contextualized representation of each tokens that can
be further utilised for task speci c ne tuning.</p>
      <p>
        As a future work, we would like to improve our current work by extending
the work by performing layer by layer analysis of BERT and try to experiment
with other Architectures like XLNet [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ] and try to make more cost and memory
e cient using adapter [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ].
7
      </p>
    </sec>
    <sec id="sec-5">
      <title>Acknowledgement</title>
      <p>We would like to thank the organiser of Shared task MEDDOPROF for providing
us this opportunity and to present our work.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>1. Baseline code, https://github.com/TeMU-BSC/meddoprof-baseline</mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2. Evalutionscript, https://github.com/TeMU-BSC/
          <article-title>meddoprof-evaluation-library</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>3. Example, https://temu.bsc.es/meddoprof/data/</mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>4. Home page, https://temu.bsc.es/meddoprof/</mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5. Can~ete, J.:
          <article-title>Compilation of large spanish unannotated corpora</article-title>
          (May
          <year>2019</year>
          ). https://doi.org/10.5281/zenodo.3247731, https://doi.org/10.5281/zenodo. 3247731
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6. Can~ete, J.,
          <string-name>
            <surname>Chaperon</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fuentes</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ho</surname>
            ,
            <given-names>J.H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kang</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Perez</surname>
          </string-name>
          , J.:
          <article-title>Spanish pretrained bert model and evaluation data</article-title>
          .
          <source>In: PML4DC at ICLR</source>
          <year>2020</year>
          (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Devlin</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chang</surname>
            ,
            <given-names>M.W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lee</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Toutanova</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          :
          <article-title>Bert: Pre-training of deep bidirectional transformers for language understanding (</article-title>
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Farre-Maduell</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lima-Lopez</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Miranda-Escalada</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>BrivaIglesias</surname>
          </string-name>
          , V.,
          <string-name>
            <surname>Krallinger</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Meddoprof corpus: test set</article-title>
          (
          <year>Jun 2021</year>
          ). https://doi.org/10.5281/zenodo.4889777, https://doi.org/10.5281/zenodo. 4889777
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Hochreiter</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schmidhuber</surname>
            ,
            <given-names>J.:</given-names>
          </string-name>
          <article-title>Long short-term memory</article-title>
          .
          <source>Neural Comput</source>
          .
          <volume>9</volume>
          (
          <issue>8</issue>
          ),
          <volume>1735</volume>
          {1780 (Nov
          <year>1997</year>
          ). https://doi.org/10.1162/neco.
          <year>1997</year>
          .
          <volume>9</volume>
          .8.1735, https://doi. org/10.1162/neco.
          <year>1997</year>
          .
          <volume>9</volume>
          .8.
          <fpage>1735</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Kingma</surname>
            ,
            <given-names>D.P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ba</surname>
          </string-name>
          , J.:
          <article-title>Adam: A method for stochastic optimization (</article-title>
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>La</surname>
            <given-names>erty</given-names>
          </string-name>
          , J.D.,
          <string-name>
            <surname>McCallum</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pereira</surname>
            ,
            <given-names>F.C.N.</given-names>
          </string-name>
          :
          <article-title>Conditional random elds: Probabilistic models for segmenting and labeling sequence data</article-title>
          .
          <source>In: Proceedings of the Eighteenth International Conference on Machine Learning</source>
          . p.
          <volume>282</volume>
          {
          <fpage>289</fpage>
          . ICML '
          <fpage>01</fpage>
          , Morgan Kaufmann Publishers Inc., San Francisco, CA, USA (
          <year>2001</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Lima-Lopez</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Farre-Maduell</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Miranda-Escalada</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Briva-Iglesias</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Krallinger</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Nlp applied to occupational health: Meddoprof shared task at iberlef 2021 on automatic recognition, classi cation and normalization of professions and occupations from medical texts</article-title>
          .
          <source>Procesamiento del Lenguaje Natural</source>
          <volume>67</volume>
          (
          <year>2021</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Paszke</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gross</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Massa</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lerer</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bradbury</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chanan</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          , et al.:
          <article-title>Pytorch: An imperative style, high-performance deep learning library</article-title>
          .
          <source>In: Advances in Neural Information Processing Systems</source>
          <volume>32</volume>
          , pp.
          <volume>8024</volume>
          {
          <fpage>8035</fpage>
          . Curran Associates, Inc. (
          <year>2019</year>
          ), http://papers.neurips.cc/paper/ 9015-pytorch
          <article-title>-an-imperative-style-high-performance-deep-learning-library</article-title>
          . pdf
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14. Ruckle,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Geigle</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            ,
            <surname>Glockner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Beck</surname>
          </string-name>
          ,
          <string-name>
            <surname>T.</surname>
          </string-name>
          ,
          <article-title>Pfei er</article-title>
          , J.,
          <string-name>
            <surname>Reimers</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          , et al.:
          <article-title>Adapterdrop: On the e ciency of adapters in transformers (</article-title>
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Stenetorp</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pyysalo</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Topic</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ohta</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ananiadou</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tsujii</surname>
          </string-name>
          , J.:
          <article-title>brat: a web-based tool for NLP-assisted text annotation</article-title>
          .
          <source>In: Proceedings of the Demonstrations at the 13th Conference of the European Chapter of the Association for Computational Linguistics</source>
          . pp.
          <volume>102</volume>
          {
          <fpage>107</fpage>
          . Association for Computational Linguistics, Avignon, France (
          <year>Apr 2012</year>
          ), https://aclanthology.org/E12-2021
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Tiedemann</surname>
          </string-name>
          , J.:
          <article-title>Parallel data, tools and interfaces in opus</article-title>
          . In: Chair),
          <string-name>
            <given-names>N.C.C.</given-names>
            ,
            <surname>Choukri</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            ,
            <surname>Declerck</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            ,
            <surname>Dogan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.U.</given-names>
            ,
            <surname>Maegaard</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            ,
            <surname>Mariani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Odijk</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Piperidis</surname>
          </string-name>
          , S. (eds.)
          <source>Proceedings of the Eight International Conference on Language Resources and Evaluation (LREC'12)</source>
          .
          <source>European Language Resources Association (ELRA)</source>
          , Istanbul, Turkey (may
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Vaidhya</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kaushal</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>IITKGP at W-NUT 2020 shared task-1: Domain speci c BERT representation for named entity recognition of lab protocol</article-title>
          .
          <source>In: Proceedings of the Sixth Workshop on Noisy User-generated Text (WNUT</source>
          <year>2020</year>
          ). pp.
          <volume>268</volume>
          {
          <fpage>272</fpage>
          . Association for Computational Linguistics,
          <source>Online (Nov</source>
          <year>2020</year>
          ). https://doi.org/10.18653/v1/
          <year>2020</year>
          .wnut-
          <volume>1</volume>
          .34, https://www.aclweb. org/anthology/2020.wnut-
          <volume>1</volume>
          .
          <fpage>34</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <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>
          ,
          <string-name>
            <surname>Delangue</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Moi</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , et al.:
          <article-title>Huggingface's transformers: State-of-the-art natural language processing (</article-title>
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Yang</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dai</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yang</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          , Carbonell, J.,
          <string-name>
            <surname>Salakhutdinov</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Le</surname>
            ,
            <given-names>Q.V.</given-names>
          </string-name>
          :
          <article-title>Xlnet: Generalized autoregressive pretraining for language understanding (</article-title>
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>