<!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>Boosting Transformers for Job Expression Extraction and Classi cation in a Low-Resource Setting</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Lukas Lange</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Heike Adel</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Jannik Strotgen</string-name>
          <email>Jannik.Stroetgeng@de.bosch.com</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Bosch Center for Arti cial Intelligence Robert-Bosch-Campus 1</institution>
          ,
          <addr-line>71272 Renningen</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Saarbrucken Graduate School of Computer Science Saarland Informatics Campus, Saarland University</institution>
          ,
          <addr-line>Saarbrucken</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Spoken Language Systems</institution>
          ,
          <addr-line>LSV</addr-line>
        </aff>
      </contrib-group>
      <abstract>
        <p>In this paper, we explore possible improvements of transformer models in a low-resource setting. In particular, we present our approaches to tackle the rst two of three subtasks of the MEDDOPROF competition, i.e., the extraction and classi cation of job expressions in Spanish clinical texts. As neither language nor domain experts, we experiment with the multilingual XLM-R transformer model and tackle these low-resource information extraction tasks as sequence-labeling problems. We explore domain- and language-adaptive pretraining, transfer learning and strategic datasplits to boost the transformer model. Our results show strong improvements using these methods by up to 5.3 F1 points compared to a ne-tuned XLM-R model. Our best models achieve 83.2 and 79.3 F1 for the rst two tasks, respectively.</p>
      </abstract>
      <kwd-group>
        <kwd>Named Entity Recognition</kwd>
        <kwd>Neural Sequence Tagging</kwd>
        <kwd>Domainand Language-adapted Language Models</kwd>
        <kwd>Strategic Datasplits</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Information extraction in non-standard domains is a challenging problem due to
the large number of complex terms and unusual document structures [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. Despite
this, pretrained transformer models demonstrated robustness across languages
and domains. However, these models still show their best performance when
applied to targets similar to their pretraining corpora which can limit their
applicability in many situations [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. One example for this is the Spanish clinical
domain, where both, language and domain, can be considered a non-standard
setting in the English-centric NLP community [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ].
      </p>
      <p>
        In this paper, we explore possible enhancements of transformer models to
overcome this domain and language gap in the context of the MEDDOPROF shared
task [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ]. In particular, we participate in the rst two tasks of MEDDOPROF
[
        <xref ref-type="bibr" rid="ref14">14</xref>
        ], a challenge concerned with the extraction, classi cation and normalization
of job-related expressions in Spanish clinical texts. The rst task NER requires
the extraction of three di erent kinds of occupation and the second task CLASS
demands to classify each of the previously extracted occupations into four classes
re ecting the holder of that job.
      </p>
      <p>
        We approach this challenge as Neither Language Nor Domain Experts
(NLNDE) and model them as sequence labeling tasks. Our solution for these
tasks is a neural sequence tagger based on multilingual transformer models.
In particular, we experiment with continuing the masked language modeling
pretraining of the multilingual XLM-R model [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] on Spanish texts, transferring
trained models between the two tasks [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] and using strategic datasplits [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ].
      </p>
      <p>Our results highlight the importance of domain- and language-adapted
transformer models, as well as the advantages of combining several models trained
on challenging datasplits with ensembling techniques. Using these methods, our
best models achieve F1-scores of 83.2 and 79.3 for the two tasks and outperform
a ne-tuned XLM-R model by 4.2 and 5.3 F1 points, respectively.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Related Work</title>
      <p>
        The MEDODPROF challenge follows a series of shared tasks on Spanish clinical
information extraction, including the MEDDOCAN shared task on medical
document anonymization [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] and the PharmaCoNER shared task on concept
extraction [
        <xref ref-type="bibr" rid="ref10 ref5">5, 10</xref>
        ]. Main ndings of all of these challenges were that transformer
models become more commonly used [
        <xref ref-type="bibr" rid="ref15 ref5">5, 15</xref>
        ] as they begun to dominate the eld
of information extraction due to their general applicability across languages and
domains. For an overview of recent approaches to low-resource NLP, we refer the
refer to [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ].
      </p>
      <p>
        As the inclusion of domain knowledge via domain-speci c embeddings in
these special settings is often bene cial [
        <xref ref-type="bibr" rid="ref11 ref4">4, 11</xref>
        ], we explore domain- and
languageadaptive pretraining of transformer models in this paper. Several recent works
have shown that this kind of adaptation boosts performance for downstream tasks
in non-standard domains by, e.g., pretraining with masked language modeling
(MLM) objectives on documents from the target domain [
        <xref ref-type="bibr" rid="ref1 ref7">1, 7</xref>
        ].
      </p>
      <p>
        In addition, we analyze the e ects of model transfer between the rst tasks
of the challenge, as model transfer between related tasks in similar domains can
result in signi cant performance gains [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ].
      </p>
      <p>
        Further, there is a line of work now questioning traditional train-dev splits
[
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] as well as random splits [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ]. More challenging datasplits can be created
by clustering the documents based on their similarity, where each split encodes
unique information to a certain degree [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ]. We use this method to train ensembles
of models on these splits in a cross-validation format, such that each model has
observed slightly di erent training instances.
      </p>
      <p>Document</p>
      <p>Train ?</p>
      <p>Dev ?</p>
      <p>Strategies:
S1,2 Everything for Training
S3 Strategic Datasplits</p>
      <p>PROFESION
(T1)</p>
      <p>SANITARIO</p>
      <p>(T2)
Paciente mujer de 38 años
remitida a consulta desde su
médico de cabecera para estudio de
eccemaen dorso de manos que viene
presentando desde hace 3 años.</p>
      <p>De profesión manipuladora de rosquil etas.</p>
      <p>...</p>
      <p>XLM-R
Subword</p>
      <p>Tokenization
_Pacient e _mujer _de _38 _años _remit ida
_a _consulta _desde _su _médico _de
_cabe cera _para _estudio _de _ecce ma
_en _dor so _de _manos _que _viene
_presenta ndo _desde _hace _3 _años.</p>
      <p>_De _profesión _manipula dora
_de _ros qui l e tas . ...</p>
      <p>O O O O O O O O O O O O O O O
T1: O O B-PROF I-PROF I-PROF I-PROF I-PROF I-PROF E-PROF O</p>
      <p>O O ... O B-PROF I-PROF I-PROF E-PROF O O ...</p>
      <p>PROFESION</p>
      <p>(T1)
PACIENTE
(T2)</p>
      <p>CRF
XLM-R</p>
      <p>S2-3 Multilingual MLM
S2-3 + Spanish General MLM
S1-3 + Spanish Clinical MLM</p>
      <p>S4 + Trained on other Task
&lt;DOCSTART&gt; __Pcaacbieencteera...__psaura_m_eésdtuodcoio_..d.e _De _profesión ...
_Pacient e _mujer ... _De p_rdoefe_srióons _qmuialneiptausla.dora _La _paciente ...
_De profesión ... _La _paciente _refiere _emp e or ar _No _puedo ...</p>
      <p>_tras _el _contacto ...</p>
      <p>
        Left context Target sentence Right context
(100 tokens max) (300 tokens max) (100 tokens max)
Step 1: Datasplit Creation Step 2: Document Preprocessing
Step 3: Model Training &amp; Prediction
Tokenization can be challenging in non-standard domains, including the clinical
domain [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ]. We thus use the XLM-R subword tokenizer and perform sequence
labeling on the subtoken level with spacy for sentence segmentation. Initial
experiments showed possible improvements of up to 2 F1 points compared to
NER on token level.
      </p>
      <p>
        Domain- and Language-speci c Masked Language Modeling
We use XLM-R [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] as the main component of our models. XLM-R is a pretrained
multilingual transformer model for 100 languages, including Spanish. It shows
superior performance in di erent tasks across languages, and can even outperform
monolingual models in certain settings. It was pretrained on a large-scale corpus,
and Spanish documents made up only 2% of this data, as provided in Table 1.
      </p>
      <p>
        Thus, we explore further pretraining of this model and tune it towards Spanish
documents by pretraining either on (1) a medium-size Spanish corpus with general
domain documents [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] or (2) a smaller Spanish clinical corpus consisting of the
MeSpEN resources [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] and publicly available Scielo articles. Note that the clinical
corpus was not part of the general-domain corpus.
      </p>
      <p>
        We use masked language modeling for pretraining and trained for three epochs
over the corpora, which roughly corresponds to 30k steps for the smaller clinical
corpus and 685k steps for the general-domain corpus using a batch-size of 4.
Finally, we have three XLM-R variants that we compare in this paper:
1. Standard XLM-R pretrained on 100 languages by [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ].
2. Spanish XLM-R based on standard XLM-R with further pretraining using
      </p>
      <p>Spanish documents from the general domain.
3. Spanish Clinical XLM-R based on standard XLM-R with further
pretraining using Spanish documents from the clinical domain.
3.3</p>
      <p>
        Sequence Tagger
For the sequence tagger, we use one of the XLM-R models, either the standard
XLM-R or one of our adapted models, and apply a CRF layer on top [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]. We add
this CRF layer to address the problem of longer multi-word annotations, as job
descriptions often span several tokens or, in our case, subtokens (as explained in
Section 3.1). In addition, a CRF prevents inconsistencies in the labels.
      </p>
      <p>We split all sentences to a maximum length of 300 subtokens and add the
context of up to 100 subtokens to the left/right to get cross-sentence
information. The labels are in BIOSE encoding, which is an extended BIO encoding
with additional labels for the last token of an annotation (E-) and single-token
annotations (S-)</p>
      <p>Our model architecture is basically the same across all runs. We only exchange
the transformer model. The models are trained using an AdamW optimizer for a
maximum of 20 epochs. Our hyperparameters are given in Table 2.
3.4</p>
      <p>Strategic Datasplits
We test two options to train the sequence taggers:</p>
      <p>(1) Using all of the available training data and stop training according to the
training loss. This method provides the model with the most input instances.
However, the stopping criterion is not as meaningful as using the task's metric
on a held-out validation set.</p>
      <p>
        (2) Thus, as our second method, we split the data into train and validation
sets. Then, we train the model using only the train-fraction of all the data and
use the held-out validation data to determine the best model, which is then used
to annotate the test data. As an alternative to random splits, we follow [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ]
and create strategic datasplits by clustering the documents according to their
similarity. This creates more challenging splits, as more distant documents are
left out for validation.
      </p>
      <p>For this, each document is represented as the average vector of the XLM-R
embeddings for each token. This document representation is reduced to ve
dimensions using PCA. Finally, the documents are clustered into ve
equallysized splits using k-Means clustering. We train ve models for each task and
embedding with each having a di erent validation split. Our splits are visualized
in Figure 2. We see that clusters 1, 2 and 4 are densely populated with highly
similar documents, while clusters 3 and 5 contain more distinct documents.</p>
      <p>To better understand the strategic datasplits, we analyzed whether the
di erent medical topics included in the corpus correlate with the splits. However,
we found that the strategic clusters incorporate more diverse information than just
topic similarity as there is no substantial overlap between topics and datasplits.
2C 10
P
40
30
20
0
10
20</p>
      <p>Fig. 2. Our strategic datasplits in the two-dimensional space with PCA.
In order to capture the di erent advantages of multiple models, we combine them
using ensembling. This is particularly helpful when models carry di erent types
of information. For example, the models trained using our strategic datasplits
all have seen a slightly di erent training set, and, thus, combining them using
ensembling should further improve performance. We apply ensembling by majority
voting. For this, we use hard voting that counts the labels by each model and does
not consider the CRF probabilities. We convert the BIOSE labels to BIO labels
for the ensembling process as the simpler BIO encoding leads to fewer con icts.
Further, we apply postprocessing of the label sequence to correct inconsistencies
in the resulting label sequence and enforce for 0.23% of predictions for the test
set that the rst token of each annotations begins with B-.
As the rst two tasks of the challenge are related and can possibly bene t from
each other, we explore the potential of model transfer between them. For example,
having basic knowledge of what and which occupations (task 1) are mentioned in
a text can be useful to determine whether occupations are related to the patient
or to someone else (task 2). For this, we rst train models on the auxiliary task
and then transfer the resulting model to the targeted main task. In our case, the
auxiliary task is either task 1 or 2 and the other task is the main task.
The following ve runs are the NLNDE submissions to the MEDDOPROF
shared task. We use the same model architectures for both tasks. Note that all
submissions, except for S1 are ensembles of multiple models based on the three
di erent embeddings. In Section 4, we compare these submissions with further
model variations.</p>
      <p>S1 : The Spanish clinical XLM-R model trained on the complete training data.
S2 : All three XLM-R language models combined in one ensemble (3 models).
S3 : Ensemble of models trained using strategic datasplits (15 models).
S4 : Ensemble of models based on transfer learning from the auxiliary task to
the main task (3 models).</p>
      <p>S5 : The combination of all above models into one ensemble (21 models).
4</p>
    </sec>
    <sec id="sec-3">
      <title>Results</title>
      <p>Our o cial results for the rst two tasks of the MEDDOPROF shared task are
given in Table 3. In addition, we include several other models to analyze the
performance of each embedding, because most of our submissions are ensembles
combining all three XLM-R embeddings. The o cial evaluation metric is the
F1-score and our best models are highlighted.</p>
      <p>We nd that the Spanish XLM-R trained on general-domain Spanish data is
often the best transformer compared to the standard XLM-R and the clinical one,
probably because it was trained on the largest amount of data. In addition, the
extraction of occupations is not unique to the clinical domain and general-domain
Spanish knowledge seems to be bene cial for this as well.</p>
      <p>We nd that model transfer (S4 ) is only useful when transferring models from
task 1 (the detection of occupations) to task 2 (the classi cation of occupations).
Reusing models that already learned the detection of profession expressions as an
auxiliary task improves the main task, e.g., by up to 2.9 F1 points for XLM-R.</p>
      <p>Training models on strategic datasplits (S3 ) provides the best results overall,
and is even better than the ensemble of all models (S5 ). The strategic datasplits
improved the ensemble model S2 by 0.4 and 2.3 F1 points for task 1 and 2. Note
that this submission unintentionally contained the Spanish general-domain
XLMR models with transfer learning in the ensemble. These were trained without our
strategic datasplits. The corrected results are marked with "*".</p>
      <p>The overall best model for task 1 is the ensemble of general-domain XLM-R
trained using the strategic datasplits with an F1-score of 83.2. This model was
not submitted as a run to the shared task, but shows the importance of the
language-adaptive pretraining and the usefulness of strategic datasplits.
ensemble of all models (S5)</p>
    </sec>
    <sec id="sec-4">
      <title>Conclusion</title>
      <p>In this paper, we described our submissions for the rst two tasks of the
MEDDOPROF competition. By utilizing domain- and language-adaptive pretraining,
strategic datasplits and ensembling methods, we were able to improve already
high-performing transformer-based models by up to 5.3 F1 points and achieved
competitive results in the competition as neither language nor domain experts.
Future work will include the exploration of di erent clinical corpora with our
newly trained Spanish XLM-R models.</p>
    </sec>
    <sec id="sec-5">
      <title>Acknowledgments</title>
      <p>The authors would like to thank the anonymous reviewer for the helpful comments
and the text mining group at the barcelona supercomputing center for the smooth
organization of MEDDOPROF.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Beltagy</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lo</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cohan</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>SciBERT: A pretrained language model for scienti c text</article-title>
          .
          <source>In: Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP)</source>
          . pp.
          <volume>3615</volume>
          {
          <fpage>3620</fpage>
          . Association for Computational Linguistics, Hong Kong,
          <source>China (Nov</source>
          <year>2019</year>
          ). https://doi.org/10.18653/v1/
          <fpage>D19</fpage>
          -1371, https://www.aclweb.org/anthology/D19-1371
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2. 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="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Conneau</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , et al.:
          <article-title>Unsupervised cross-lingual representation learning at scale</article-title>
          .
          <source>In: Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics</source>
          . pp.
          <volume>8440</volume>
          {
          <fpage>8451</fpage>
          . Association for Computational Linguistics,
          <source>Online (Jul</source>
          <year>2020</year>
          ). https://doi.org/10.18653/v1/
          <year>2020</year>
          .acl-main.
          <volume>747</volume>
          , https://www.aclweb.org/anthology/2020.acl-main.
          <fpage>747</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Friedrich</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , et al.:
          <article-title>The SOFC-exp corpus and neural approaches to information extraction in the materials science domain</article-title>
          .
          <source>In: Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics</source>
          . pp.
          <volume>1255</volume>
          {
          <fpage>1268</fpage>
          . Association for Computational Linguistics,
          <source>Online (Jul</source>
          <year>2020</year>
          ). https://doi.org/10.18653/v1/
          <year>2020</year>
          .acl-main.
          <volume>116</volume>
          , https://www.aclweb.org/anthology/2020.acl-main.
          <fpage>116</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Gonzalez-Agirre</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Marimon</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Intxaurrondo</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rabal</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Villegas</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Krallinger</surname>
            ,
            <given-names>M.:</given-names>
          </string-name>
          <article-title>PharmaCoNER: Pharmacological substances, compounds and proteins named entity recognition track</article-title>
          .
          <source>In: Proceedings of The 5th Workshop on BioNLP Open Shared Tasks</source>
          . pp.
          <volume>1</volume>
          {
          <fpage>10</fpage>
          . Association for Computational Linguistics, Hong Kong,
          <source>China (Nov</source>
          <year>2019</year>
          ). https://doi.org/10.18653/v1/
          <fpage>D19</fpage>
          -5701, https://www.aclweb.org/anthology/D19-5701
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Gorman</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bedrick</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>We need to talk about standard splits</article-title>
          .
          <source>In: Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics</source>
          . pp.
          <volume>2786</volume>
          {
          <fpage>2791</fpage>
          . Association for Computational Linguistics, Florence,
          <source>Italy (Jul</source>
          <year>2019</year>
          ). https://doi.org/10.18653/v1/
          <fpage>P19</fpage>
          -1267, https://www.aclweb.org/anthology/P19- 1267
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Gururangan</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , et al.:
          <article-title>Don't stop pretraining: Adapt language models to domains and tasks</article-title>
          .
          <source>In: Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics</source>
          . pp.
          <volume>8342</volume>
          {
          <fpage>8360</fpage>
          . Association for Computational Linguistics,
          <source>Online (Jul</source>
          <year>2020</year>
          ). https://doi.org/10.18653/v1/
          <year>2020</year>
          .acl-main.
          <volume>740</volume>
          , https://www.aclweb.org/anthology/2020.acl-main.
          <fpage>740</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Hedderich</surname>
            ,
            <given-names>M.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lange</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Adel</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          , Strotgen, J.,
          <string-name>
            <surname>Klakow</surname>
            ,
            <given-names>D.:</given-names>
          </string-name>
          <article-title>A survey on recent approaches for natural language processing in low-resource scenarios</article-title>
          .
          <source>In: Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</source>
          . pp.
          <volume>2545</volume>
          {
          <fpage>2568</fpage>
          . Association for Computational Linguistics,
          <source>Online (Jun</source>
          <year>2021</year>
          ). https://doi.org/10.18653/v1/
          <year>2021</year>
          .naacl-main.
          <volume>201</volume>
          , https://www.aclweb.org/anthology/2021.naacl-main.
          <fpage>201</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <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>
          . pp.
          <volume>282</volume>
          {
          <fpage>289</fpage>
          . ICML '
          <fpage>01</fpage>
          , Morgan Kaufmann Publishers Inc., San Francisco, CA, USA (
          <year>2001</year>
          ), http://dl.acm.org/citation.cfm?id=
          <volume>645530</volume>
          .
          <fpage>655813</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Lange</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Adel</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          , Strotgen, J.: NLNDE:
          <article-title>Enhancing neural sequence taggers with attention and noisy channel for robust pharmacological entity detection</article-title>
          .
          <source>In: Proceedings of The 5th Workshop on BioNLP Open Shared Tasks</source>
          . pp.
          <volume>26</volume>
          {
          <fpage>32</fpage>
          . Association for Computational Linguistics, Hong Kong,
          <source>China (Nov</source>
          <year>2019</year>
          ). https://doi.org/10.18653/v1/
          <fpage>D19</fpage>
          -5705, https://www.aclweb.org/anthology/D19- 5705
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Lange</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Adel</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          , Strotgen, J.: NLNDE:
          <article-title>The neither-language-nor-domain-experts' way of spanish medical document de-identi cation</article-title>
          .
          <source>In: Proceedings of The Iberian Languages Evaluation Forum (IberLEF</source>
          <year>2019</year>
          ).
          <source>CEUR Workshop Proceedings</source>
          (
          <year>2019</year>
          ), http://ceur-ws.
          <source>org/</source>
          Vol-2421/MEDDOCAN paper 5.pdf
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Lange</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dai</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Adel</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          , Strotgen, J.:
          <article-title>NLNDE at CANTEMIST: neural sequence labeling and parsing approaches for clinical concept extraction (</article-title>
          <year>2020</year>
          ), https://arxiv.org/abs/
          <year>2010</year>
          .12322
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Lange</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          , Strotgen, J.,
          <string-name>
            <surname>Adel</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Klakow</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>To share or not to share: Predicting sets of sources for model transfer learning</article-title>
          .
          <source>arXiv preprint arXiv:2104.08078</source>
          (
          <year>2021</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <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="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Marimon</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          , et al.:
          <article-title>Automatic de-identi cation of medical texts in spanish: the meddocan track, corpus, guidelines, methods and evaluation of results</article-title>
          .
          <source>In: Proceedings of the Iberian Languages Evaluation Forum (IberLEF</source>
          <year>2019</year>
          ),
          <source>CEUR Workshop Proceedings</source>
          ,
          <year>2019</year>
          . pp.
          <volume>618</volume>
          {
          <issue>638</issue>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16. S gaard, A.,
          <string-name>
            <surname>Ebert</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bastings</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Filippova</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          :
          <article-title>We need to talk about random splits</article-title>
          .
          <source>In: Proceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics:</source>
          Main Volume. pp.
          <year>1823</year>
          {
          <year>1832</year>
          .
          <article-title>Association for Computational Linguistics</article-title>
          ,
          <source>Online (Apr</source>
          <year>2021</year>
          ), https://www.aclweb.org/anthology/2021.eacl-main.
          <fpage>156</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Villegas</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Intxaurrondo</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gonzalez-Agirre</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Marimon</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Krallinger</surname>
            ,
            <given-names>M.:</given-names>
          </string-name>
          <article-title>The mespen resource for english-spanish medical machine translation and terminologies: census of parallel corpora, glossaries and term translations</article-title>
          . LREC
          <string-name>
            <surname>MultilingualBIO: Multilingual Biomedical Text Processing (Malero</surname>
            <given-names>M</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Krallinger</surname>
            <given-names>M</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gonzalez-Agirre</surname>
            <given-names>A</given-names>
          </string-name>
          , eds.) (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Wecker</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Friedrich</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Adel</surname>
          </string-name>
          , H.:
          <article-title>ClusterDataSplit: Exploring challenging clustering-based data splits for model performance evaluation</article-title>
          .
          <source>In: Proceedings of the First Workshop on Evaluation and Comparison of NLP Systems</source>
          . pp.
          <volume>155</volume>
          {
          <fpage>163</fpage>
          . Association for Computational Linguistics,
          <source>Online (Nov</source>
          <year>2020</year>
          ). https://doi.org/10.18653/v1/
          <year>2020</year>
          .eval4nlp-
          <fpage>1</fpage>
          .15, https://www.aclweb.org/anthology/
          <year>2020</year>
          .eval4nlp-
          <fpage>1</fpage>
          .
          <fpage>15</fpage>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>