<!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>SINAI at eHealth-KD Challenge 2020: Combining Word Embeddings for Named Entity Recognition in Spanish Medical Records</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Pilar López-Úbeda</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>José M. Perea-Ortega</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Manuel C. Díaz-Galiano</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>M. Teresa Martín-Valdivia</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>L. Alfonso Ureña-López</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>SINAI research group, University of Jaén</institution>
          ,
          <country country="ES">Spain</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>University of Extremadura</institution>
          ,
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <fpage>141</fpage>
      <lpage>150</lpage>
      <abstract>
        <p>This paper describes the system presented by the SINAI research group to the eHealth-KD challenge at IberLEF 2020. Two main subtasks for knowledge discovery in Spanish medical records were defined: entity recognition and relationship extraction. In the Natural Language Processing (NLP) field, Named Entity Recognition (NER) may be formulated as a sequence labeling problem where the text is treated as a sequence of words to be labeled with linguistic tags. Since current state-of-the-art approaches for sequence labeling typically use Recurrent Neural Networks (RNN), our proposal employs a BiLSTM+CRF neural network where diferent word embeddings are combined as an input to the architecture. Thus we could test the performance of diferent types of word embeddings for the NER task in Spanish medical records: own-generated medical embeddings, contextualized non-medical embeddings, and pre-trained non-medical embeddings based on transformers. The obtained results for the entity recognition task achieved the highest F1-score among all the participants, while those obtained for the relationship extraction task show that the proposed approach needs to be further explored.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Natural Language Processing</kwd>
        <kwd>Named Entity Recognitio</kwd>
        <kwd>Relation Extraction</kwd>
        <kwd>Word Embeddings</kwd>
        <kwd>Deep Learning</kwd>
        <kwd>eHealth</kwd>
        <kwd>Knowledge Discovery</kwd>
        <kwd>Spanish language</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        The volume of digitized data available from the healthcare domain is increasing exponentially.
In this scenario, Natural Language Processing (NLP) techniques are becoming essential to
discover new knowledge in clinical texts, where valuable information about symptoms, diagnosis,
treatments, or drug use is included. Plenty of research has been carried out for clinical text
processing for text written in English, but not that much for under-resourced languages such as
Spanish. The IberLEF eHealth-KD [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] shared task comes to meet this challenge since two years
ago [
        <xref ref-type="bibr" rid="ref2 ref3">2, 3</xref>
        ], providing diferent NLP tasks to automatically extract a variety of knowledge from
electronic health documents written in Spanish. In 2020, eHealth-KD proposes two subtasks
related to capturing the semantic meaning of health-related sentences: entity recognition
(subtask A), whose goal is to identify all the entities in a document and their types; and relation
extraction (subtask B), which seeks to identify all relevant semantic relationships between the
entities recognized [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].
      </p>
      <p>
        In recent years, deep learning-based methods have been widely used for some NLP-related
tasks, such as Named Entity Recognition (NER) or Part-of-Speech (PoS) tagging. These tasks are
commonly approached as a sequence labelling problem, where the text is treated as a sequence
of words to be labeled with linguistic tags. Current state-of-the-art approaches for sequence
labeling propose the use of Recurrent Neural Networks (RNNs) to learn useful representations
automatically since they facilitate modeling long-distance dependencies between the words in a
sentence. These networks usually rely on word embeddings, which represent words as vectors
of real numbers. There are diferent types of word embeddings (classical [
        <xref ref-type="bibr" rid="ref4 ref5">4, 5</xref>
        ], character-level
[
        <xref ref-type="bibr" rid="ref6 ref7">6, 7</xref>
        ], or contextualized [
        <xref ref-type="bibr" rid="ref8 ref9">8, 9</xref>
        ]) that are commonly pre-trained over very large corpora to capture
latent syntactic and semantic similarities between words. A novel type of word embeddings
called contextual string embeddings is proposed by Akbik et al. [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ], which essentially model
words as sequences of characters, thus contextualizing a word by their surrounding text and
allowing the same word to have diferent embeddings depending on its contextual use.
      </p>
      <p>
        This paper describes the system presented by the SINAI team for both subtasks of the
eHealthKD 2020: entity recognition and relation extraction. Our group has experience in NER task
in the biomedical domain using diferent methodologies such as traditional machine learning
[
        <xref ref-type="bibr" rid="ref11">11</xref>
        ], RNNs [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] and unsupervised machine learning [
        <xref ref-type="bibr" rid="ref13 ref14">13, 14</xref>
        ], among others. For this challenge,
our proposal is based on RNNs or, more precisely, the bidirectional variant of Long Short Term
Memory along with a stacked Conditional Random Fields decoding layer (BiLSTM+CRF) [
        <xref ref-type="bibr" rid="ref15 ref6">15, 6</xref>
        ].
This specialized architecture is chosen to approach NER because it facilitates the processing of
arbitrary length input sequences and enables the learning of long-distance dependencies, which
is particularly advantageous in the case of the focused NER task. Besides, our approach proposes
the combination of diferent types of word embeddings by concatenating each embedding vector
to form the final word vectors. In this way, the probability of recognizing a specific word (entity)
in a text should be increased as diferent types of representation of that word are combined. For
the case of contextual string embeddings, since they are robust in face of misspelled words, we
suppose they could be highly suitable for NER in clinical texts.
      </p>
      <p>In the next section, we describe the architecture of our deep learning-based model along with
the diferent word embeddings used as an input for such a model. Furthermore, we explain
how the learning was performed by using the datasets provided by the eHealth-KD shared task.
Section 3 reports the results obtained for the diferent evaluation scenarios and, finally, we
conclude with a brief discussion in Section 4 and the conclusions in Section 5.</p>
    </sec>
    <sec id="sec-2">
      <title>2. System Description</title>
      <p>
        The approach used to address both subtasks of the eHealth-KD challenge (NER and relation
extraction) is based on deep learning by implementing the RNN proposed by Huang et al.
[
        <xref ref-type="bibr" rid="ref15">15</xref>
        ]. Specifically, we have used a Bidirectional Long-Short Term Memory (BiLSTM) with a
sequential Conditional Random Field layer (CRF). BiLSTM is an extension of traditional LSTM
      </p>
      <p>CRF layer
Backward
LSTM
Forward
LSTM</p>
      <p>XLM
RoBERTa
embeddings
BETO
embeddings
Contextual
word
embeddings
Medical
FastText
embeddings
tahn
tahn
tahn</p>
      <p>B-Concept I-Concept
tahn
tahn
tahn</p>
      <p>
        B-Concept
tahn
problemas
en
el
sistema
eléctrico
del
corazón
that improves the model performance on sequence classification problems [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ]. On the one
hand, the main goal of BiLSTM is to split the neurons of a regular LSTM into two directions, one
for positive time direction (forward states), and another for negative time direction (backward
states). Using two time directions, input information from the past and future of the current
time frame can be used to better understand the context of the medical report. On the other
hand, a CRF layer is represented by lines that connect consecutive output layers, so that allows
us to eficiently use past and future tags to predict the current tag, which is similar to the use of
past and future input features via a BiLSTM network.
      </p>
      <p>Recurrent Neural Networks generally use an embedding layer as an input, which makes
it possible to represent words and documents using a dense vector representation. Thus the
position of a word within the vector space is learned from the text allowing words that are used
in a similar way to have a similar representation. In order to fit the text input into the deep neural
network structure, we combine diferent types of word embeddings: own-generated biomedical
word embeddings for Spanish, contextual word embeddings, and pre-trained word embeddings
based on transformers. Figure 1 shows the proposed architecture based on a BiLSTM+CRF
neural network that uses a combination of diferent word embeddings as an input layer.</p>
      <sec id="sec-2-1">
        <title>2.1. Word Embeddings</title>
        <p>Diferent word embeddings have been combined to form the input layer to the proposed
BiLSTM+CRF neural network:</p>
        <sec id="sec-2-1-1">
          <title>2.1.1. Medical FastText embeddings</title>
          <p>
            Although there are available biomedical word embeddings for Spanish [
            <xref ref-type="bibr" rid="ref17 ref18 ref19">17, 18, 19</xref>
            ], we have tried
to generate new ones from existing corpora related to the biomedical domain in Spanish. For this
purpose, firstly we extracted the Spanish corpus from MeSpEN [
            <xref ref-type="bibr" rid="ref20">20</xref>
            ]. Then, extra information in
Spanish from diferent clinical information websites such as Mayo Clinic [
            <xref ref-type="bibr" rid="ref21">21</xref>
            ], World Health
Organization [
            <xref ref-type="bibr" rid="ref22">22</xref>
            ], and WebMD [
            <xref ref-type="bibr" rid="ref23">23</xref>
            ] was added to the former corpus. The pre-processing carried
out to train the word embeddings consisted of converting the text to lowercase, removing the
URLs, and removing the multi-lines. Finally, FastText [
            <xref ref-type="bibr" rid="ref24">24</xref>
            ] was used to perform the training by
applying the following setup: skip-gram model, 0.05 for the learning rate, size of 300 for the
word vectors, 10 for the number of epochs, and 5 for the minimal number of word occurrences.
          </p>
        </sec>
        <sec id="sec-2-1-2">
          <title>2.1.2. Contextual Word Embeddings</title>
          <p>
            Contextual word embeddings are considered powerful embeddings because they capture latent
syntactic-semantic information that goes beyond standard word embeddings [
            <xref ref-type="bibr" rid="ref10">10</xref>
            ]. These
embeddings are based on character-level language modeling and their use is particularly advantageous
when the NER task is approached as a sequential labeling problem. For our experiments, we
have used the pooled contextualized embeddings proposed by Akbik et al. [
            <xref ref-type="bibr" rid="ref25">25</xref>
            ] for NER. In that
work, the authors propose an approach in which a pooling operation is applied to distill a global
word representation from all contextualized instances of that word, thus producing evolving
word representations that change over time as more instances of the same word are observed in
the data.
          </p>
        </sec>
        <sec id="sec-2-1-3">
          <title>2.1.3. Pre-trained Word Embeddings Based on Transformers</title>
          <p>
            Finally, we have combined pre-trained word embeddings based on transformers [
            <xref ref-type="bibr" rid="ref26">26</xref>
            ], a popular
attention mechanism used in transfer learning approaches. Transfer learning [
            <xref ref-type="bibr" rid="ref27">27</xref>
            ] is based
on applying the knowledge learned from previous tasks to a new task domain. This kind of
embeddings are commonly pre-trained over very large corpora to capture latent syntactic and
semantic similarities between words. For our experiments, we have used two specific pre-trained
word embeddings: BETO [
            <xref ref-type="bibr" rid="ref28">28</xref>
            ], which follows a BERT model trained on a big Spanish corpus,
and XLM-RoBERTa [
            <xref ref-type="bibr" rid="ref29">29</xref>
            ], which were generated by using a large multilingual language model
trained on 2.5 TB of filtered CommonCrawl data.
          </p>
        </sec>
      </sec>
      <sec id="sec-2-2">
        <title>2.2. Training Phase</title>
        <p>The task organizers provided several datasets (training, validation and test) to allow the
participants to train their systems properly. Besides, an unreviewed dataset named “ensemble" that
contained the submissions from past editions, and a dataset called “transfer" from the Spanish
Los O
tumores B-Concept
malignos B-Concept
de O
glándulas B-Concept
suprarrenales I-Concept
son O
poco O
comunes B-Concept
. O</p>
        <p>Los O
médicos O
diagnostican B-entails
talasemias O
mediante O
pruebas I-entails
de I-entails
sangre I-entails
. O
version of Wikinews were provided as well. For scenarios 1, 2 and 3, we used the training,
ensembled and transfer (800 + 3000 + 100 sentences respectively) datasets for training, while
the development set (200 sentences) was used to validate our system. However, for scenario 4,
the training, ensembled and development datasets (800 + 3000 + 200 sentences, respectively)
were used for training, while the transfer set (100 sentences) was used to validate the system.</p>
        <p>For all the scenarios, each sentence was first tokenized. For the entity recognition task, the
provided annotations were encoded by using the BIO tagging scheme. Thus each token in a
sentence was labeled with O (non-entity), B (beginning token of an entity), or I (inside token of
an entity). This scheme is the most popular in the NER task although it presents problems when
the entity contains discontinuous tokens. Figure 2 shows an example of the encoded annotation
carried out for both tasks.</p>
        <p>For the relationship extraction task, we decided to generate the same neural network to train
each of the 13 semantic relationship defined for the task.</p>
        <p>Therefore the only input linguistic features used for the training phase were the tokens
(original words) of each sentence and the generated BIO tags.</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Experimental Setup and Results</title>
      <p>
        For generating the diferent learning models we employed Flair as a NLP framework [
        <xref ref-type="bibr" rid="ref30">30</xref>
        ]. We
used the default hyperparameter setting in Flair with the following configuration: learning rate
as 0.1, batch size as 32, dropout probability as 0.5 and maximum epoch as 150. All experiments
were performed on a single Tesla-V100 32 GB GPU with 192 GB of RAM.
      </p>
      <p>The SINAI team submitted 3 runs for each proposed scenario, where each run represents a
diferent combination of word embeddings, as described in Section 2:
• Run 1: Medical FastText embeddings + Contextual word embeddings.
• Run 2: Medical FastText embeddings + Contextual word embeddings + BETO embeddings.
• Run 3: Medical FastText embeddings + Contextual word embeddings + BETO embeddings
+ XLMRoBERTa embeddings.</p>
      <p>The metrics defined by the eHealth-KD challenge to evaluate the submitted experiments are
those commonly used for some NLP tasks such as NER or text classification, namely precision,
recall, and F1-score. Table 1 shows the results obtained by the SINAI team for each scenario
and run submitted.</p>
      <p>As shown in Table 1, the results obtained for scenario 4 are low (28.12% of F1-score), although
this behavior may be due to the limited amount of documents available to train an alternative
domain. For scenario 3 (subtask B), we achieved our best F1-score with run 2 (46.17%), which
means that the XLMRoBERTa embeddings did not provide valuable information during the
learning phase. Regarding scenario 1 (main evaluation), we achieved a relatively poor F1-score
of 42.07%, which is somehow in line with the behavior obtained for scenario 3, where the use of
the pre-trained embeddings based on transformers have not improved the performance. Finally,
it should be noted that the F1-score achieved by our run 3 submitted for scenario 2 (82.52%)
outperformed the rest of the competition runs for that scenario among all the participants.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Discussion</title>
      <p>Based on the obtained results, we found that the combination of word embeddings generally
provides an extra value for the learning phase of the neural network. In the case of the entity
recognition (subtask A, scenario 2), the combination of all embeddings (run 3) does improve all
the metrics obtained when fewer types of embeddings are combined. It should be noted that our
starting point (run 1) combines embeddings that were generated from the biomedical domain
and for which we already obtained a high F1-score. Therefore it can be considered positive to
have slightly improved those results when other non-biomedical embeddings were added.</p>
      <p>
        A fine grained evaluation of these systems can be defined in terms of comparing the response
of the system against the golden annotation [
        <xref ref-type="bibr" rid="ref31">31</xref>
        ]. Then, the evaluation of our system considering
these diferent categories of errors is shown in Table 2.
      </p>
      <p>As shown in Table 2, our system performs well in the first task (entity recognition) and
scenario 2, but it has some performance shortcomings for the relation extraction task. For
future work, we should focus on finding out why the system is not correctly capturing the
relationships between concepts. Finally, we would also like to highlight the behavior of our
system in the alternative scenario (scenario 4), in which it could not be able to recognize entities
that were not related to the medical domain. We believe that it could be due to the use of word
embeddings specifically pre-trained in that domain.</p>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusions</title>
      <p>This paper presents the participation of the SINAI research group in the eHealth-KD challenge
at IberLEF 2020 (Iberian Languages Evaluation Forum), where two main NLP tasks involving
the Spanish language were defined: entity recognition and relationship extraction. Several
challenge scenarios were also proposed where diferent NLP subtasks were evaluated.</p>
      <p>Our proposal follows a deep learning-based approach for Named Entity Recognition (NER)
in Spanish health documents. It is focused on the use of a BiLSTM+CRF neural network where
diferent word embeddings are combined as an input to the architecture. Then this neural
network is trained by using the annotated datasets provided by the organization, which were
previously tokenized and tagged by using the BIO scheme. Our main goal was to prove the
performance of diferent types of word embeddings for the NER task in the medical domain:
own-generated medical embeddings, contextualized non-medical embeddings, and pre-trained
non-medical embeddings based on transformers. The obtained results for the entity recognition
task achieved the highest evaluation score among all the participants, achieving 82.52% of
F1-score, 84.46% of precision and 80.67% of recall. However, our proposal revealed certain
weaknesses for the relationship extraction task, any of the existing relationships in the gold test
have not been captured by our system which means a loss in recall, we need analyze in detail if
the problem lies in the BIO notation of the relationship because using this notation when the
system finds a beginning of relationship it is associated with the end of the closest relationship
annotated, so the approach used will need to be further explored.</p>
      <p>For future work, we will study the performance of using more linguistic features such as
Part-Of-Speech tags as an input in the neural network, as well as the use of ontologies related
to the biomedical domain and other types of word embeddings. Furthermore, we will try to
improve the extraction of relationships by implementing another neural network that captures
in a better way the relationships between concepts.</p>
    </sec>
    <sec id="sec-6">
      <title>Acknowledgments</title>
      <p>This work has been partially supported by LIVING-LANG project (RTI2018-094653-B-C21) from
the Spanish Government, Junta de Extremadura (GR18135) and Fondo Europeo de Desarrollo
Regional (FEDER).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>A.</given-names>
            <surname>Piad-Morfis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Gutiérrez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Cañizares-Diaz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Estevez-Velarde</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Almeida-Cruz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Muñoz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Montoyo</surname>
          </string-name>
          ,
          <article-title>Overview of the eHealth Knowledge Discovery Challenge at IberLEF 2020, in: Proceedings of the Iberian Languages Evaluation Forum co-located with 36th Conference of the Spanish Society for Natural Language Processing</article-title>
          ,
          <source>IberLEF@SEPLN</source>
          <year>2020</year>
          , Spain, September,
          <year>2020</year>
          .,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>A.</given-names>
            <surname>Piad-Morfis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Gutiérrez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Estévez-Velarde</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Almeida-Cruz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Montoyo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Muñoz</surname>
          </string-name>
          ,
          <article-title>Analysis of eHealth knowledge discovery systems in the TASS 2018 Workshop</article-title>
          , Procesamiento de Lenguaje Natural (
          <year>2019</year>
          ). doi:
          <volume>10</volume>
          .26342/2019-62-1.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>A.</given-names>
            <surname>Piad-Morfis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Gutiérrez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. P.</given-names>
            <surname>Consuegra-Ayala</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Estevez-Velarde</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Almeida-Cruz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Muñoz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Montoyo</surname>
          </string-name>
          ,
          <article-title>Overview of the eHealth knowledge discovery challenge at IberLEF 2019</article-title>
          , in: CEUR Workshop Proceedings,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>J.</given-names>
            <surname>Pennington</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Socher</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. D.</given-names>
            <surname>Manning</surname>
          </string-name>
          , GloVe:
          <article-title>Global vectors for word representation</article-title>
          ,
          <source>in: EMNLP 2014 - 2014 Conference on Empirical Methods in Natural Language Processing, Proceedings of the Conference</source>
          ,
          <year>2014</year>
          . doi:
          <volume>10</volume>
          .3115/v1/d14-
          <fpage>1162</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>T.</given-names>
            <surname>Mikolov</surname>
          </string-name>
          , I. Sutskever,
          <string-name>
            <given-names>K.</given-names>
            <surname>Chen</surname>
          </string-name>
          , G. Corrado,
          <string-name>
            <given-names>J.</given-names>
            <surname>Dean</surname>
          </string-name>
          ,
          <article-title>Distributed representations ofwords and phrases and their compositionality</article-title>
          ,
          <source>in: Advances in Neural Information Processing Systems</source>
          ,
          <year>2013</year>
          . arXiv:
          <volume>1310</volume>
          .
          <fpage>4546</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>X.</given-names>
            <surname>Ma</surname>
          </string-name>
          , E. Hovy,
          <article-title>End-to-end sequence labeling via bi-directional LSTM-CNNs-CRF, in: 54th Annual Meeting of the Association for Computational Linguistics</article-title>
          , ACL 2016
          <string-name>
            <given-names>- Long</given-names>
            <surname>Papers</surname>
          </string-name>
          ,
          <year>2016</year>
          . doi:
          <volume>10</volume>
          .18653/v1/p16-
          <fpage>1101</fpage>
          . arXiv:
          <volume>1603</volume>
          .
          <fpage>01354</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>G.</given-names>
            <surname>Lample</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ballesteros</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Subramanian</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Kawakami</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Dyer</surname>
          </string-name>
          ,
          <article-title>Neural architectures for named entity recognition, in: 2016 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</article-title>
          ,
          <source>NAACL HLT 2016 - Proceedings of the Conference</source>
          ,
          <year>2016</year>
          . doi:
          <volume>10</volume>
          .18653/v1/n16-
          <fpage>1030</fpage>
          . arXiv:
          <volume>1603</volume>
          .
          <fpage>01360</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>M. E.</given-names>
            <surname>Peters</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Ammar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Bhagavatula</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Power</surname>
          </string-name>
          ,
          <article-title>Semi-supervised sequence tagging with bidirectional language models</article-title>
          ,
          <source>in: ACL</source>
          <year>2017</year>
          -
          <article-title>55th Annual Meeting of the Association for Computational Linguistics</article-title>
          ,
          <source>Proceedings of the Conference (Long Papers)</source>
          ,
          <year>2017</year>
          . doi:
          <volume>10</volume>
          . 18653/v1/
          <fpage>P17</fpage>
          -1161. arXiv:
          <volume>1705</volume>
          .
          <fpage>00108</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>M. E.</given-names>
            <surname>Peters</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Neumann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Iyyer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Gardner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Clark</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zettlemoyer</surname>
          </string-name>
          ,
          <article-title>Deep contextualized word representations</article-title>
          ,
          <source>in: NAACL HLT</source>
          <year>2018</year>
          <article-title>- 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies -</article-title>
          <source>Proceedings of the Conference</source>
          ,
          <year>2018</year>
          . doi:
          <volume>10</volume>
          .18653/v1/n18-
          <fpage>1202</fpage>
          . arXiv:
          <year>1802</year>
          .05365.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>A.</given-names>
            <surname>Akbik</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Blythe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Vollgraf</surname>
          </string-name>
          ,
          <article-title>Contextual string embeddings for sequence labeling</article-title>
          ,
          <source>in: Proceedings of the 27th International Conference on Computational Linguistics</source>
          ,
          <year>2018</year>
          , pp.
          <fpage>1638</fpage>
          -
          <lpage>1649</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>P. L.</given-names>
            <surname>Úbeda</surname>
          </string-name>
          ,
          <string-name>
            <surname>M. C. D. Galiano</surname>
            ,
            <given-names>M. T.</given-names>
          </string-name>
          <string-name>
            <surname>Martín-Valdivia</surname>
            ,
            <given-names>L. A. U. Lopez,</given-names>
          </string-name>
          <article-title>Using machine learning and deep learning methods to find mentions of adverse drug reactions in social media</article-title>
          ,
          <source>in: Proceedings of the Fourth Social Media Mining for Health Applications (# SMM4H) Workshop &amp; Shared Task</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>102</fpage>
          -
          <lpage>106</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>P. L.</given-names>
            <surname>Úbeda</surname>
          </string-name>
          ,
          <string-name>
            <surname>M. C. D. Galiano</surname>
            ,
            <given-names>L. A. U.</given-names>
          </string-name>
          <string-name>
            <surname>Lopez</surname>
            ,
            <given-names>M. T.</given-names>
          </string-name>
          <string-name>
            <surname>Martín-Valdivia</surname>
          </string-name>
          ,
          <article-title>Using Snomed to recognize and index chemical and drug mentions</article-title>
          ,
          <source>in: Proceedings of The 5th Workshop on BioNLP Open Shared Tasks</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>115</fpage>
          -
          <lpage>120</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>P.</given-names>
            <surname>López-Ubeda</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. C.</given-names>
            <surname>Dıaz-Galiano</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. T.</given-names>
            <surname>Martın-Valdivia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. A.</given-names>
            <surname>Urena-López</surname>
          </string-name>
          ,
          <article-title>Sinai en tass 2018 task 3. clasificando acciones y conceptos con umls en medline</article-title>
          ,
          <source>Proceedings of TASS 2172</source>
          (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>P.</given-names>
            <surname>López-Úbeda</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. C.</given-names>
            <surname>Díaz-Galiano</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Montejo-Ráez</surname>
          </string-name>
          , M.-
          <string-name>
            <given-names>T.</given-names>
            <surname>Martín-Valdivia</surname>
          </string-name>
          ,
          <string-name>
            <surname>L. A.</surname>
          </string-name>
          <article-title>UreñaLópez, An Integrated Approach to Biomedical Term Identification Systems</article-title>
          ,
          <source>Applied Sciences</source>
          <volume>10</volume>
          (
          <year>2020</year>
          )
          <fpage>1726</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <article-title>Bidirectional LSTM-CRF models for sequence tagging</article-title>
          ,
          <source>arXiv preprint arXiv:1508</source>
          .
          <year>01991</year>
          (
          <year>2015</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>M.</given-names>
            <surname>Schuster</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K. K.</given-names>
            <surname>Paliwal</surname>
          </string-name>
          ,
          <article-title>Bidirectional recurrent neural networks</article-title>
          ,
          <source>IEEE Transactions on Signal Processing</source>
          <volume>45</volume>
          (
          <year>1997</year>
          )
          <fpage>2673</fpage>
          -
          <lpage>2681</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>F.</given-names>
            <surname>Soares</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Villegas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gonzalez-Agirre</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Krallinger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Armengol-Estapé</surname>
          </string-name>
          ,
          <article-title>Medical word embeddings for Spanish: Development and evaluation</article-title>
          ,
          <source>in: Proceedings of the 2nd Clinical Natural Language Processing Workshop</source>
          , Association for Computational Linguistics, Minneapolis, Minnesota, USA,
          <year>2019</year>
          , pp.
          <fpage>124</fpage>
          -
          <lpage>133</lpage>
          . URL: https://www.aclweb. org/anthology/W19-1916. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>W19</fpage>
          -1916.
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>S.</given-names>
            <surname>Santiso</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Casillas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Pérez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Oronoz</surname>
          </string-name>
          ,
          <article-title>Word embeddings for negation detection in health records written in Spanish, Soft Computing (</article-title>
          <year>2019</year>
          ).
          <source>doi:10.1007/ s00500-018-3650-7.</source>
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>I.</given-names>
            <surname>Segura-Bedmar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Martínez</surname>
          </string-name>
          ,
          <article-title>Simplifying drug package leaflets written in Spanish by using word embedding</article-title>
          ,
          <source>Journal of Biomedical Semantics</source>
          (
          <year>2017</year>
          ).
          <source>doi:10.1186/ s13326-017-0156-7.</source>
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>M.</given-names>
            <surname>Villegas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Intxaurrondo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gonzalez-Agirre</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Marimon</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Krallinger</surname>
          </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 MultilingualBIO:
          <string-name>
            <surname>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="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <surname>Mayo</surname>
            <given-names>clinic</given-names>
          </string-name>
          ,
          <fpage>1998</fpage>
          -
          <lpage>2020</lpage>
          . URL: https://www.mayoclinic.org/es-es.
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22] Organización mundial de la salud,
          <year>2020</year>
          . URL: https://www.who.int/es.
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <article-title>Webmd - better information</article-title>
          .
          <source>better health.</source>
          ,
          <year>2005</year>
          -
          <fpage>2020</fpage>
          . URL: https://www.webmd.com/.
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>P.</given-names>
            <surname>Bojanowski</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Grave</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Joulin</surname>
          </string-name>
          , T. Mikolov,
          <article-title>Enriching word vectors with subword information, Transactions of the Association for Computational Linguistics 5 (</article-title>
          <year>2017</year>
          )
          <fpage>135</fpage>
          -
          <lpage>146</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>A.</given-names>
            <surname>Akbik</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Bergmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Vollgraf</surname>
          </string-name>
          ,
          <article-title>Pooled contextualized embeddings for named entity recognition, in: Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</article-title>
          , Volume
          <volume>1</volume>
          (Long and Short Papers),
          <year>2019</year>
          , pp.
          <fpage>724</fpage>
          -
          <lpage>728</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>A.</given-names>
            <surname>Vaswani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Shazeer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Parmar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Uszkoreit</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. N.</given-names>
            <surname>Gomez</surname>
          </string-name>
          , Ł. Kaiser,
          <string-name>
            <surname>I. Polosukhin</surname>
          </string-name>
          ,
          <article-title>Attention is all you need</article-title>
          ,
          <source>in: Advances in neural information processing systems</source>
          ,
          <year>2017</year>
          , pp.
          <fpage>5998</fpage>
          -
          <lpage>6008</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <given-names>S.</given-names>
            <surname>Thrun</surname>
          </string-name>
          ,
          <article-title>Is learning the n-th thing any easier than learning the first?</article-title>
          ,
          <source>in: Advances in neural information processing systems</source>
          ,
          <year>1996</year>
          , pp.
          <fpage>640</fpage>
          -
          <lpage>646</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [28]
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</surname>
          </string-name>
          , M.-
          <string-name>
            <given-names>W.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Toutanova</surname>
          </string-name>
          , Bert:
          <article-title>Pre-training of deep bidirectional transformers for language understanding</article-title>
          , arXiv preprint arXiv:
          <year>1810</year>
          .
          <volume>04805</volume>
          (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          [29]
          <string-name>
            <given-names>A.</given-names>
            <surname>Conneau</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Khandelwal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Chaudhary</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Wenzek</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Guzmán</surname>
          </string-name>
          , E. Grave,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ott</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zettlemoyer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Stoyanov</surname>
          </string-name>
          ,
          <article-title>Unsupervised cross-lingual representation learning at scale</article-title>
          , arXiv preprint arXiv:
          <year>1911</year>
          .
          <volume>02116</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          [30]
          <string-name>
            <given-names>A.</given-names>
            <surname>Akbik</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Bergmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Blythe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Rasul</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Schweter</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Vollgraf</surname>
          </string-name>
          ,
          <string-name>
            <surname>FLAIR:</surname>
          </string-name>
          <article-title>An easy-to-use framework for state-of-the-</article-title>
          <string-name>
            <surname>art</surname>
            <given-names>NLP</given-names>
          </string-name>
          ,
          <source>in: Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics (Demonstrations)</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>54</fpage>
          -
          <lpage>59</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          [31]
          <string-name>
            <given-names>N.</given-names>
            <surname>Chinchor</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Sundheim</surname>
          </string-name>
          ,
          <article-title>MUC-5 evaluation metrics</article-title>
          ,
          <source>in: Proceedings of the 5th conference on Message understanding, Association for Computational Linguistics</source>
          ,
          <year>1993</year>
          , pp.
          <fpage>69</fpage>
          -
          <lpage>78</lpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>