<!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>IxaMed at eHealth-KD Challenge 2019</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Iakes Goenaga</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Sergio Santana</string-name>
          <email>ssantana005@ikasle.ehu.eus</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Sara S</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>ntiso</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>o Goj</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Relation Extraction</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Joint</string-name>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>University of the Basque Country (UPV/EHU)</institution>
          ,
          <addr-line>Basque Country</addr-line>
          ,
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2019</year>
      </pub-date>
      <fpage>43</fpage>
      <lpage>50</lpage>
      <abstract>
        <p>The aim of this paper is to present our approach IxaMed in the eHeath-KD 2019 task. The task consists of identifying di erent types of entities and the relations between them in the clinical domain in Spanish. The evaluation of the tasks is divided in three scenarios: one corresponding to the detection of medical entities, one corresponding to the detection of the relations between gold standard entities and the third one corresponding to the entire automatic pipeline, that is, entities and relations. In order to carry out the task, we have made use of a Recurrent Neural Network (RNN) to identify medical entities and three di erent approaches to detect relations between them: a Bi-LSTM with a CRF, a joint AB-LSTM, and a dependency parser. We have achieved a F-score of 0.68 identifying named entities and 0.43 in relation extraction with our best proposal for this task.</p>
      </abstract>
      <kwd-group>
        <kwd>Medical Entity Recognition AB-LSTM Bi-LSTM Dependency parser</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        The aim of this paper is to present the work pursued by the IXAMed team
in the eHealth-KD Challenge 2019 [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ]. The task consists of identi cation and
classi cation of terms and relations in medical texts. The evaluation of the task
is divided in two sub-tasks: a) identi cation and classi cation of key phrases, the
goal of this sub-task is to identify all the key phrases per document and their
classes, where the key phrases are all the relevant terms (single word or multiple
words) that represent semantically important elements in a sentence, and b) the
detection of semantic relations between the entities detected in sub-task 1. In
order to carry out the task, we have used a Recurrent Neural Network (RNN)
for sequence to sequence tagging for the rst task, and di erent approaches for
the relation extraction task.
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>Related work</title>
      <p>
        The Clinical E-Science Framework (CLEF) project [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] developed a
semantically annotated corpus that consists of both the structured records and free text
documents. Two main elements were annotated entities and semantic relations
between them. [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] used this corpus to evaluate methodologies on semantic
relation extraction. In last years in the di erent areas various shared tasks have
focused on relation classi cation. In 2010 i2b2/VA Workshop on Natural
Language Processing Challenges for Clinical Records [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ] organized a task for
assigning relation types that hold between medical problems, tests, and treatments,
the objective was extracting semantic relations from medical documents.
Classi cation systems that used support vector machines were the most common.
      </p>
      <p>
        SemEval 2017 Task 10 [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] tackled with extraction of semantic relations
between keywords from scienti c documents. Some of the participants used SVM
classi ers while others released on methods based on neural networks.
      </p>
      <p>
        In 2018 the Workshop on Semantic Analysis at the SEPLN congress organized
Task 3 [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] with the objective of discovering semantic relations between concepts
from Spanish electronic health documents. Two methodologies were the most
frequent: those that use shallow supervised models (CRF, SVM, etc.) and those
that are based on deep learning models.
      </p>
      <p>
        In [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ] the authors experimented with a corpus of Spanish Electronic Health
Records to extract semantic relations, in particular adverse drug reactions. In
this case they explore di erent deep learning models. In this paper we are going to
evaluate di erent deep learning methodologies with the aim to extract semantic
relations from Spanish electronic health documents.
3
      </p>
    </sec>
    <sec id="sec-3">
      <title>Resources</title>
      <p>
        Apart from the tools we will present in the following subsections, we made use
of external data with the intention of completing the information the system
extracts from the corpus provided by organization. For this purpose we employed
word-embeddings [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] we have calculated ( window length = 1, dimensions =
300, algorithm = SkipNgram) from Electronic Health Records (50M words).
4
      </p>
    </sec>
    <sec id="sec-4">
      <title>SubTask A: Medical Entity Recognition</title>
      <p>In this section we present our approach in order to identify clinical entities which
corresponds to the system we have employed in the Subtask A of the shared
task3.
3 https://knowledge-learning.github.io/ehealthkd-2019
4.1</p>
      <sec id="sec-4-1">
        <title>Bi-LSTM and CRF</title>
        <p>
          We employed neural network based architecture, more precisely an speci c
BiLSTM (a RNN subclass, [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ]) with a CRF on top of it [
          <xref ref-type="bibr" rid="ref11 ref12">11, 12</xref>
          ] using as input
raw text and the word-embeddings we have mentioned in section 3. This kind
of neural network is widely used to pursue sequence to sequence tagging [
          <xref ref-type="bibr" rid="ref12 ref9">12, 9</xref>
          ].
One of the advantages of using Bi-LSTM in contrast to other machine learning
techniques such as SVM, Perceptron or CRFs is that the size of the context
is automatically learned by the LSTM and there is no need to perform any
complicated text preprocessing to obtain features to feed the tool.
5
        </p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>SubTask B: Relation extraction</title>
      <p>In this section we present our three approaches in order to extract relations
between entities which they correspond to the systems we have employed in the
Subtask B of the shared task.
5.1</p>
      <sec id="sec-5-1">
        <title>Joint AB-LSTM</title>
        <p>
          Contextual information resulted important in related tasks such as Drug-Drug
Interaction [
          <xref ref-type="bibr" rid="ref18">18</xref>
          ]. Bi-LSTM networks, a type of [
          <xref ref-type="bibr" rid="ref20">20</xref>
          ], were demonstrated successful
to cope with the context in related works [
          <xref ref-type="bibr" rid="ref21 ref23 ref6">21, 6, 23</xref>
          ]. In particular, we opted for
a Joint AB-LSTM network, a particular case of the Bi-LSTM with attention
mechanisms. Attention aims at capturing relevant evidences (e.g. phrases around
the medical entities) to the relation extraction.
        </p>
        <p>
          For this work we made use of the implementation provided by [
          <xref ref-type="bibr" rid="ref18">18</xref>
          ] adapted,
slightly, to this task. In what follows, we summarize the architecture and the
adaptations made to cope with this task. The architecture comprises these layers:
{ Feature Layer: even though the original implementation just considered the
word-features, in this implementation we incorporated, as well, the distance
from source to target entity since previous works demonstrated that
relations tend to occur within a distance-scope mainly (i.e. the distance is not
homogeneously distributed). Admittedly, we did not corroborate this fact for
the corpus provided to this task but still used the distance. This is a point
that should be explored for future works.
{ Embedding Layer: the embeddings corresponding to the aforementioned
features are obtained and concatenated. To be precise, the word-embeddings
were trained as in [
          <xref ref-type="bibr" rid="ref19">19</xref>
          ] while the distance was shelf-trained as an extension
to the original architecture. From this layer, the information ows to two
Bi-LSTMs. Both Bi-LSTMs are equal (and described below) just di er on
the pooling strategy (as stated next). Turning to practical details, we chose
a vector of dimension 300 and 50 respectively to embed words and distances.
{ Bi-LSTM Layer: this layer comprises two LSTMs devoted to capture,
respectively, forward and backward information.
{ Pooling Layer: one Bi-LSTM employs attentive pooling and he other one
employs max pooling. Next, the features obtained with each pooling stage
are concatenated.
{ Softmax layer: to the output of the pooling layer the tanh activation function
is applied in order to obtain the input of the fully connected layer. Next, the
predicted relation is attained by means of the Softmax function. Even though
the original architecture was conceived for binary (yes/no) relations, for this
task a small adaptation was incorporated to enable multi-class classi cation
(there are a number of available relations).
        </p>
        <p>
          In the training stage, cross-entropy loss function was employed and Adam
algorithm employed [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ] for the optimization. The training procedure incorporated
two regularization approaches: L2-regularization and Dropout.
        </p>
        <p>
          This work shows several gaps that we mean to explore for future work.
Particularly, we nd that the main weakness rests on the super cial experimental
framework carried out. For example we should have ne tuned sensitive
parameters (e.g. the dimensions were arbitrarily chosen). Besides, in an attempt to
enhance contextual information, ad-hoc contextual-embeddings derived from
either Elmo [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ] or Bert [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ] seem of interest to this particular task. Regarding the
classi cation approach, we nd important to explore alternative variants: binary
(with a specialized classi er per relation type) and multi-class (as we did in this
case). Finally, we did not cope, either, with the skewed class distribution even
though we realized that some classes are much more frequent than others. To
sum up, we are aware of the fact that there is room for improvement.
5.2
        </p>
      </sec>
      <sec id="sec-5-2">
        <title>Bi-LSTM and CRF</title>
        <p>In order to extract the relations that occur between entities, we have made
use of the same system that we have used to identify entities. The only di
erence is that this last system is passed as a parameter the previously detected
entities and that it has to predict both the label of the relation between
entities and the distance between the entity with which a given entity is linked.
Let's take as an example the following phrase: No existe un tratamiento que
restablezca la funcion ovarica normal. In this case, as the objective is to identify
the relations between entities, the entities will be previously identi ed as
follows: No existe[B-Action] un tratamiento[B-Concept] que restablezca[B-Action]
la funcion[B-Concept] ovarica[I-Concept] normal[B-Concept]. Therefore, what
the system that extracts the di erent types of relations would show as a result the
following: No existe[TwoTarget] un tratamiento que restablezca[MOneSubject] la
funcion[OneIn-context] ovarica normal.</p>
        <p>In the labels returned by the system we can clearly see two parts, the rst
part corresponds to the distance from the other entity to which it is attached
and the second part to the type of relation they share. If the entity to which
an entity is attached occurs earlier in the text, an M is placed in front of the
distance between entities (e.g MOneSubject). Conversely, if the entity occurs
later in the text, only the distance is set (e.g TwoTarget).</p>
        <p>Having said that, in the previous example our system would predict that
the entity existe is linked to the entity restablezca through the target relation,
the entity restablezca with the entity tratamiento through the subject relation
and the entity funcion ovarica with the entity normal through the in-context
relation.
5.3</p>
      </sec>
      <sec id="sec-5-3">
        <title>Mate Parser</title>
        <p>
          Relation extraction can be viewed as the process of obtaining a hierarchical
structure where some words are related to others by means of binary relations.
One of the words can be considered as the head and the other one as the
dependent (e.g. \af ecta ! asma" by means of the subject dependency relation), and
this approach allows the use of standard parsing algorithms. The Mate parser [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ]
is a development of the algorithms described in [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ], that basically adopts the
second order maximum spanning tree dependency parsing algorithm. In particular,
this parser exploits a hash kernel, a new parallel parsing and feature extraction
algorithm that improves accuracy as well as parsing speed [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ].
        </p>
        <p>In this particular case, what we have done so that the dependency parser
solves the relations between entities has been to train a model of dependencies
passing as input each word with its features. These features are the word itself,
its entity type and if it has any relation with another word in the sentence, the
number of that word in the sentence and the type of relation they share. If a
particular word is not linked by any relation with another entity, in the column
where the information about the type of relation goes is put a NULL and in the
column where the information about the head of the relation goes is put a zero.
In gure 1 we can clearly see what we have commented.
We present the results we have obtained in all the scenarios in table 1. If we
analyze the results we can observe that all the systems have obtained the same
results in scenario 2 identifying entities due to we have used the same system
(a Bi-LSTM with a CRF) in the three approaches. This result is quite low
especially if we compare it with the result that we have achieved in exact match
(74.4) in the same test dataset. This di erence is due to the penalty received
by incorrect matches using the proposed evaluation method of the shared task
which combines exact match and partial match results in the same evaluation.</p>
        <p>On the other hand, in scenario 3 we have obtained very disparate results. It
is curious how the only system designed to extract relations (Joint AB-LSTM)
has been the one that has obtained the worst results. Mate dependency analyzer
has obtained better results taking into account that it has not been designed for
this task and surprisingly we have obtained a good result (43.56) using the same
neural tagger we have used to identify entities (Bi-LSTM + CRF).</p>
        <p>Finally, in scenario 1 we have obtained very similar results for the three
systems. This fact may seem di cult to understand given the di erent results
obtained in scenario 3. The main reason for these results is that the Joint
ABLSTM system did not give any answer (null system) while the other two systems
succeeded much more but fail even more in a evaluation method that severely
penalizes incorrect and spurious cases.
The purpose of this work was to evaluate the feasibility of di erent approaches
to medical entity detection and relation extraction. Entity detection was dealt
with a sequential tagger that uses word embeddings acquired from electronic
health records. The relation extraction task was approached in three di erent
ways:
{ A sequential tagger where, for each dependent, a tag indicates the type and
position of its head.
{ A neural system that, given two entities, decides if they are related or not,
also giving the relation type. This approach can be seen as a classi cation
task, after a previous stage of entity detection.
{ Construction of a partial dependency tree where the head of each relation is
connected to its dependent.</p>
        <p>The di erent approaches range from the simplest one (a tagger) to the more
sophisticate parsing algorithm. Surprisingly, the tagger obtained the best results
by an important margin, and this aspect deserves a further study of the strengths
and weaknesses of each approach.</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>Acknowledgments</title>
      <p>Funding: This work has been partially funded by Spanish ministry project
PROSA-MED(TIN2016-77820-C3-1-R) and a Basque Government Grant for the
student Sergio Santana.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Augenstein</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Das</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Riedel</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vikraman</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>McCallum</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Semeval 2017 task 10: Scienceie-extracting keyphrases and relations from scienti c publications</article-title>
          .
          <source>arXiv preprint arXiv:1704.02853</source>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Bohnet</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>Very high accuracy and fast dependency parsing is not a contradiction</article-title>
          .
          <source>In: Proceedings of the 23rd International Conference on Computational Linguistics</source>
          . pp.
          <volume>89</volume>
          {
          <issue>97</issue>
          (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Bohnet</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nivre</surname>
            ,
            <given-names>J.:</given-names>
          </string-name>
          <article-title>A transition-based system for joint part-of-speech tagging and labeled non-projective dependency parsing</article-title>
          .
          <source>In: Proceedings of the 2012 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning</source>
          . pp.
          <volume>1455</volume>
          {
          <issue>1465</issue>
          (
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Carreras</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          :
          <article-title>Experiments with a higher-order projective dependency parser</article-title>
          .
          <source>In: Proceedings of the CoNLL Shared Task Session of EMNLP-CoNLL</source>
          <year>2007</year>
          . Prague, Czech Republic (
          <year>June 2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Devlin</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chang</surname>
            ,
            <given-names>M.W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lee</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Toutanova</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          :
          <article-title>Bert: Pre-training of deep bidirectional transformers for language understanding</article-title>
          . arXiv preprint arXiv:
          <year>1810</year>
          .
          <volume>04805</volume>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Gupta</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pawar</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ramrakhiyani</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Palshikar</surname>
            ,
            <given-names>G.K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Varma</surname>
            ,
            <given-names>V.:</given-names>
          </string-name>
          <article-title>Semisupervised recurrent neural network for adverse drug reaction mention extraction</article-title>
          .
          <source>BMC bioinformatics 19(8)</source>
          , 1{
          <issue>7</issue>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Gurulingappa</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mateen-Rajpu</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Toldo</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>Extraction of potential adverse drug events from medical case reports</article-title>
          .
          <source>Journal of biomedical semantics 3</source>
          (
          <issue>1</issue>
          ),
          <volume>15</volume>
          (
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Hochreiter</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schmidhuber</surname>
            ,
            <given-names>J.:</given-names>
          </string-name>
          <article-title>Long short-term memory</article-title>
          .
          <source>Neural Comput</source>
          .
          <volume>9</volume>
          (
          <issue>8</issue>
          ),
          <volume>1735</volume>
          {1780 (Nov
          <year>1997</year>
          ). https://doi.org/10.1162/neco.
          <year>1997</year>
          .
          <volume>9</volume>
          .8.1735, http://dx.doi.org/10.1162/neco.
          <year>1997</year>
          .
          <volume>9</volume>
          .8.
          <fpage>1735</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Jagannatha</surname>
            ,
            <given-names>A.N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yu</surname>
          </string-name>
          , H.:
          <article-title>Structured prediction models for rnn based sequence labeling in clinical text</article-title>
          .
          <source>In: Proceedings of the Conference on Empirical Methods in Natural Language Processing. Conference on Empirical Methods in Natural Language Processing</source>
          . vol.
          <year>2016</year>
          , p.
          <volume>856</volume>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Kingma</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ba</surname>
          </string-name>
          , J.:
          <article-title>Adam: A method for stochastic optimization</article-title>
          .
          <source>In: International Conference on Learning Representations</source>
          . vol.
          <volume>5</volume>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Lample</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ballesteros</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Subramanian</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kawakami</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dyer</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Neural architectures for named entity recognition</article-title>
          .
          <source>arXiv preprint arXiv:1603.01360</source>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Ma</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hovy</surname>
            ,
            <given-names>E.H.</given-names>
          </string-name>
          :
          <article-title>End-to-end sequence labeling via bi-directional lstm-cnns-crf</article-title>
          .
          <source>In: ACL (1)</source>
          .
          <article-title>The Association for Computer Linguistics (</article-title>
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Mart nez Camara</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Almeida Cruz</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          , D az Galiano,
          <string-name>
            <given-names>M.C.</given-names>
            ,
            <surname>Estevez-Velarde</surname>
          </string-name>
          ,
          <string-name>
            <surname>S.</surname>
          </string-name>
          , Garc a Cumbreras,
          <string-name>
            <surname>M.A.</surname>
          </string-name>
          , Garc a Vega,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Gutierrez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            ,
            <surname>Montejo</surname>
          </string-name>
          <string-name>
            <surname>Raez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Montoyo</surname>
          </string-name>
          ,
          <string-name>
            <surname>A.</surname>
          </string-name>
          , Mun~oz, R., et al.:
          <article-title>Overview of tass 2018: Opinions, health and emotions (</article-title>
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Mikolov</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sutskever</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Corrado</surname>
            ,
            <given-names>G.S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dean</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          :
          <article-title>Distributed representations of words and phrases and their compositionality</article-title>
          .
          <source>In: Advances in neural information processing systems</source>
          . pp.
          <volume>3111</volume>
          {
          <issue>3119</issue>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Peters</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Neumann</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Iyyer</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gardner</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Clark</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lee</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zettlemoyer</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>Deep contextualized word representations</article-title>
          .
          <source>In: Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</source>
          , Volume
          <volume>1</volume>
          (Long Papers). pp.
          <volume>2227</volume>
          {
          <issue>2237</issue>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Piad-Mor s</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gutierrez</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Consuegra-Ayala</surname>
            ,
            <given-names>J.P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Estevez-Velarde</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Almeida-Cruz</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          , Mun~oz, R.,
          <string-name>
            <surname>Montoyo</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Overview of the ehealth knowledge discovery challenge at iberlef</article-title>
          <year>2019</year>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Roberts</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gaizauskas</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hepple</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Davis</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Demetriou</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Guo</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kola</surname>
            ,
            <given-names>J.S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Roberts</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Setzer</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tapuria</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , et al.:
          <article-title>The clef corpus: semantic annotation of clinical text</article-title>
          .
          <source>In: AMIA Annual Symposium Proceedings</source>
          . vol.
          <year>2007</year>
          , p.
          <fpage>625</fpage>
          . American Medical Informatics Association (
          <year>2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Sahu</surname>
            ,
            <given-names>S.K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Anand</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Drug-drug interaction extraction from biomedical texts using long short-term memory network</article-title>
          .
          <source>Journal of biomedical informatics 86</source>
          ,
          <volume>15</volume>
          {
          <fpage>24</fpage>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Santiso</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Perez</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Casillas</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Exploring joint ab-lstm with embedded lemmas for adverse drug reaction discovery</article-title>
          .
          <source>IEEE journal of Biomedical and Health Informatics</source>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Schuster</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Paliwal</surname>
            ,
            <given-names>K.K.:</given-names>
          </string-name>
          <article-title>Bidirectional recurrent neural networks</article-title>
          .
          <source>IEEE Transactions on Signal Processing</source>
          <volume>45</volume>
          (
          <issue>11</issue>
          ),
          <volume>2673</volume>
          {
          <fpage>2681</fpage>
          (
          <year>1997</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <surname>Stanovsky</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gruhl</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mendes</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Recognizing mentions of adverse drug reaction in social media using knowledge-infused recurrent models</article-title>
          .
          <source>In: Proceedings of the 15th Conference of the European Chapter of the Association for Computational Linguistics: Volume</source>
          <volume>1</volume>
          ,
          <string-name>
            <given-names>Long</given-names>
            <surname>Papers</surname>
          </string-name>
          . pp.
          <volume>142</volume>
          {
          <issue>151</issue>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <surname>Uzuner</surname>
            ,
            <given-names>O</given-names>
          </string-name>
          .,
          <string-name>
            <surname>South</surname>
            ,
            <given-names>B.R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shen</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , DuVall, S.L.:
          <year>2010</year>
          i2b2/
          <article-title>va challenge on concepts, assertions, and relations in clinical text</article-title>
          .
          <source>Journal of the American Medical Informatics Association</source>
          <volume>18</volume>
          (
          <issue>5</issue>
          ),
          <volume>552</volume>
          {
          <fpage>556</fpage>
          (
          <year>2011</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          23.
          <string-name>
            <surname>Wunnava</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Qin</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kakar</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rundensteiner</surname>
            ,
            <given-names>E.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kong</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          :
          <article-title>Bidirectional lstm-crf for adverse drug event tagging in electronic health records</article-title>
          .
          <source>In: International Workshop on Medication and Adverse Drug Event Detection</source>
          . vol.
          <volume>90</volume>
          , pp.
          <volume>48</volume>
          {
          <issue>56</issue>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>