<!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>FLE at CLEF eHealth 2020: Text Mining and Semantic Knowledge for Automated Clinical Encoding</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Nuria Garc´ıa-Santa</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Kendrick Cetina</string-name>
          <email>kendrick.cetinag@uk.fujitsu.com</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Fujitsu Laboratories of Europe (FLE)</institution>
          ,
          <addr-line>Pozuelo de Alarco ́n (Madrid) 28224</addr-line>
          ,
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>In Healthcare domain, several documents are provided in a narrative way, following textual unstructured formats. This is the case of the discharge summaries, which are clinical texts where physicians describe the conditions of the patients with natural language, making the automated processing of such texts hard and challenging. The objective of the tasks of the 2020 CLEF eHealth for Multilingual Information Extraction is to develop solutions to automatically annotate Spanish clinical texts with codes from the International Classification of Diseases, 10th version (ICD-10). In the present paper, we show our approach which is based on Named Entity Recognition (NER) to detect the diagnoses and procedures, and semantic linking against a Knowledge Graph to extract the ICD10 codes. Besides, we exploit text augmentation techniques to generate synthetic input samples and we use BERT pre-trained models and architecture to train the NERs.</p>
      </abstract>
      <kwd-group>
        <kwd>CLEF eHealth</kwd>
        <kwd>Clinical Encoding</kwd>
        <kwd>Text Mining</kwd>
        <kwd>Semantic Knowl- edge</kwd>
        <kwd>Named Entity Recognition (NER)</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Automated Clinical Encoding covers multiple computer-assisted techniques to extract
valuable knowledge within clinical documents written in natural language and
transform such knowledge to structured information. Clinical documents usually include
medical entities that correspond to diagnoses, procedures, symptoms, drugs, etc., but
the use of narrative and informal language is challenging for the automatic processing
of this information. Among Automated Clinical Encoding tasks, a popular one is the
assisted assignment of codes to the clinical documents from standard medical
classifications, such as the International Classification of Diseases (ICD) [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. Traditionally,
this code assignment is done manually by healthcare professionals. Therefore, the main
objective of automated approaches is to support clinicians in their daily activities by
helping them save time and resources.
      </p>
      <p>
        The CLEF eHealth challenge on Multilingual Information Extraction of this year
is focused on this kind of techniques [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ][
        <xref ref-type="bibr" rid="ref14">14</xref>
        ]. The three sub-tasks of this 2020
challenge are based on the automated code assignment of Spanish clinical documents for
diagnoses and procedures of the International Classification of Diseases (ICD).
      </p>
      <p>
        In previous years, the challenges worked in the same line of research. For CLEF
eHealth 2017 challenge, participants provided solutions to extract ICD codes (10th
version , ICD-10) in death certificates for English and French [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ], and, in 2018, for
French, Italian, and Hungarian [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ]. In the CLEF eHealth challenge of 2019, the shared
task was focused on the automatic detection of ICD-10 codes for German Non-technical
summaries (NTSs), which are short descriptions of planned animal experiments [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ].
      </p>
      <p>
        In these past challenges, the best approaches were mainly based on neural network
architectures. In the best approach of 2017, the authors provided sequence-to-sequence
deep learning models based on Recurrent Neural Networks (RNNs) [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ]. In 2018,
the best solution followed a similar way, proposing a machine learning
sequence-tosequence neural model to map input text snippets with the output ICD-10 codes [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] .
And, in 2019, the best two approaches developed different neural network designs, such
as CNNs and Attention models [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ], or logistic regression classifiers [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ], but both used
multilingual BERT [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
      </p>
      <p>
        In the literature, a wide range of approaches have been published, since
semanticbased or rule-based solutions to machine learning proposals. Several examples of
semantic approaches are works such as Pakhomov et al. [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ], where the authors presented
a system that relies on a Knowledge Base obtained by manually coded data, collected
over 10 years, or Garc´ıa-Santa et. al [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ], that developed a solution to return
automatically the k-top ICD codes associated to a clinical text through exploitation of enriched
Knowledge Graphs and heuristic rules. In machine learning research, Mullenbach et
al. [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ] proposed a method called Convolutional Attention for Multi-Label classification
(CAML) that is based on a CNN and a per-label attention mechanism, and, it includes
explanations of the code assignments. Baumel et al. [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] described a Hierarchical
Attention bidirectional Gated Recurrent Unit (HA-GRU) to identify the relevant sentences
for each code. In this approach, the authors compared the results with an SVM-based
one-vs-all model, a continuous bag-of-words (CBOW) model, and a CNN.
      </p>
      <p>To address the CLEF eHealth 2020 challenge, our FLE team has developed a
solution focused on Named Entity Recognition (NER) and semantic-based approaches
exploiting Knowledge Graphs. Our Knowledge Graph has been enriched with the
annotations coming from training and validation sets provided by the organizers of the
challenge. Besides, we extended the input datasets for the NER models by creating
synthetic samples with text augmentation techniques over the train/validation sets and
we also used BERT pre-trained models and architecture for the NER training.
2
2.1</p>
    </sec>
    <sec id="sec-2">
      <title>Material and Methods</title>
      <sec id="sec-2-1">
        <title>Problem definition</title>
        <p>
          Current CLEF eHealth 2020 task deals with multilingual Information Extraction (IE).
Concretely, this year, the challenge is focused on automatic coding of Spanish clinical
textual documents to the International Classification of Diseases [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ], version 10
(ICD10)1, in its Spanish distribution (CIE-10)2. This is the first community task oriented
exclusively to the automatic coding of clinical cases in Spanish [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ].
        </p>
        <p>The challenge is divided in three sub-tasks:
– Task 1: Automatic code assignment of Spanish texts to CIE10-CM, i.e. to specific
diagnoses of the standard.
– Task 2: Automatic code assignment of Spanish texts to CIE10-PCS, i.e. to specific
procedures of the standard.
– Task 3: Addition of explainability references for the two aforementioned tasks. It
requires a joint automatic code assignment of diagnoses and procedures, including
the positions of the key entities that justify such code assignment.</p>
        <p>The output has to be a list of ICD-10 codes for each text document. In the first
two sub-tasks, this list must be arranged in descending order, based on the relevance
of the code to the corresponding document. In the last sub-task, order of relevance is
not required but a joint list of codes has to be presented for diagnoses and procedures,
specifying the position of related entities in the text documents.</p>
        <p>Our team has participated in the three sub-tasks through a multi-task approach. In
our proposal, the core and main techniques have been shared and reused to address the
three sub-tasks in a unified way.
2.2</p>
      </sec>
      <sec id="sec-2-2">
        <title>Datasets and Resources</title>
        <p>For all the sub-tasks, a synthetic corpus of 1000 clinical case studies has been published.
The dataset was manually annotated by clinical professionals. In the official source of
the challenge it is specified that the dataset comprises 16,504 sentences and 396,988
words, with an average of 396.2 words per clinical case. This corpus is freely
accessible3. There are separate directories for train, dev and test datasets. The train set has 500
clinical cases, the dev set has 250, and the test set with gold standard annotations has
250 clinical cases. In addition, organizers shared a background set without annotations
of 2,751 clinical cases. Besides the texts of the clinical cases, in the corpus of train and
dev set, tab-separated files for each sub-task are included. These files include the
annotations associated to each clinical case. In figure 1, an excerpt sample of these files is
shown for task 1 (CIE10-CM) and task 3 (Explainability).</p>
        <p>
          The training dataset of the task 3 (Explainability) has 9,211 annotated codes, of
which, 2,392 are unique. Taking into account that CIE10-CM reports a number of
71,486 diagnoses and CIE10-PCS has a number of 87,170 procedures, we have a total
of 158,656 codes [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ]. This quantity is very far from the unique number of annotated
codes in the dataset, which means that we are losing a wide spectrum of potential codes
of assignment. This makes it more difficult to provide scalable systems in supervised
learning approaches. Besides, the number of the code annotations in the dataset is very
unbalanced. If this issue is not addressed, it could increase classification biases to most
frequent codes. Figure 2 shows the forty most frequent codes in the dataset.
        </p>
        <sec id="sec-2-2-1">
          <title>1 https://www.who.int/classifications/icd/en/ 2 https://eciemaps.mscbs.gob.es/ecieMaps/browser/metabuscador.html 3 https://zenodo.org/record/3837305#.XtTwHjozYgx</title>
          <p>
            Aside from these core datasets of the challenge, we also tried the additional Spanish
abstracts provided by the organizers4. These abstracts were a total of 176,294 texts and
they were annotated automatically [
            <xref ref-type="bibr" rid="ref13">13</xref>
            ]. After several tests, we decided to discard the
use of this resource in final versions because it increased the noise of our annotations
and the performance was affected negatively.
          </p>
          <p>
            External sources such as PubMed [
            <xref ref-type="bibr" rid="ref11">11</xref>
            ] and MIMIC-III [
            <xref ref-type="bibr" rid="ref8">8</xref>
            ] have been used to
support Named Entity Recognition (NER) tasks. Annotated samples of diagnoses and
procedures entities mentioned in medical literature from PubMed (through PubTator FTP
service [
            <xref ref-type="bibr" rid="ref22">22</xref>
            ]) and in clinical notes from MIMIC-III databases are exploited to train NER
models. We translated those annotated datasets from English to Spanish. In this NER
task, the pre-trained language model of Multi-lingual BERT5 [
            <xref ref-type="bibr" rid="ref4">4</xref>
            ] was also used.
          </p>
          <p>Other linguistic resource that we used is the NegEx-MES tool6 to detect entities
negated in Spanish texts. This resource was exploited in several of our final versions for
post-processing steps.</p>
        </sec>
        <sec id="sec-2-2-2">
          <title>4 https://zenodo.org/record/3606662#.XtUVdDozYgx 5 https://github.com/google-research/bert/blob/master/multilingual.md 6 https://github.com/PlanTL-SANIDAD/NegEx-MES</title>
          <p>
            And, finally, we used the lists of valid codes for Spanish ICD-10 [
            <xref ref-type="bibr" rid="ref15">15</xref>
            ], for diagnoses
and procedures (CIE-10).
2.3
          </p>
        </sec>
      </sec>
      <sec id="sec-2-3">
        <title>Automated Clinical Encoding Methodology</title>
        <p>The main workflow and steps of our system are depicted in figure 3. We followed an
approach based on named entity detection from clinical texts and later Knowledge Graph
(KG) entity linking to CIE-10 codes. We also tested an approach based on text
classification through simple Convolutional Neural Networks (CNNs). However, performance
decreased and the system was less scalable because of imbalance nature and low
coverage of datasets, as we explained in previous section. Because of these reasons, we
discarded a full Machine Learning approach in our final system, instead, we
developed a combination of Machine Learning for Named Entity Recognition (NER) and
semantic-based approach for CIE-10 entity linking through Knowledge Graph (KG)
construction.</p>
        <p>The first steps include the activities of KG Creation and Data Pre-process. For the
KG Creation, we take the lists of valid codes in CIE-10 and we implement a
Knowledge Graph with that information. This data contains nodes with the CIE-10 code, the
description in Spanish, the description in English and hierarchical relations between
the CIE-10 nodes. In this implementation we use the framework of Neo4j7. In Data</p>
        <sec id="sec-2-3-1">
          <title>7 https://neo4j.com/</title>
          <p>Pre-process, we perform Terms Population to the KG. These terms come from the
samples annotated in the training and validation sets provided by the organizers. Taking the
datasets annotated in the task 3, we get the CIE-10 codes and its related term mentions
and we create a new array attribute for that CIE-10 node in the KG, adding all the
different ways to name a diagnosis or procedure (term mentions). We also perform Dataset
Preparation, cleaning the clinical texts of special characters and encoding issues, and
solving several errors in the annotated samples regarding wrong labels (e.g. a
diagnosis with the type label of procedure or vice versa), and codes that belonged to other
standards. In this step, we also adapt the format of input annotated samples and clinical
texts to the BIOES format or IOBES8 in order to be used later for training the NER.</p>
          <p>In the intermediate step, we proceed to train a Named Entity Recognition (NER)
model. We use the pre-trained language model of Multilingual BERT to initialize the
neural network. We have performed different trainings depending on variations in the
input annotated samples. Below, we point out the different settings (all samples follow
the BIOES format):
– Baseline: Input annotated samples from train and dev sets provided by organizers.
– Baseline + Abstracts: Previous samples + annotated samples from the additional</p>
          <p>Spanish abstracts resource.
– Baseline + MIMIC-III: Baseline samples + annotated samples from MIMIC-III
dataset.
– Baseline + Text Augmentation: Baseline samples + annotated samples augmented
with Fujitsu’s proprietary technology.</p>
          <p>
            For the final versions, we carried out the setting of ’Baseline + Text Augmentation’
because we achieved the best results as shown in the evaluation section. We trained
two different NER models for each type of label; one for diagnoses recognition, and
the other for procedures recognition. In the neural network, we follow the BERT
architecture. Bidirectional Encoder Representations from Transformers (BERT) [
            <xref ref-type="bibr" rid="ref4">4</xref>
            ] is a
bidirectional transformer encoder whose main features are multi-headed self attention,
multi-layer feed forward and positional embeddings. We fine-tuned the Multilingual
BERT for our supervised NER model.
          </p>
          <p>
            Next, in the CIE-10 Linking process, the previous models were run over the test
sets to extract all named entities within the clinical texts. In this way, we are able to
obtain the named entity, its label (diagnosis or procedure) and its position in the text.
Once we have detected the named entities, we perform the linking algorithm to extract
the correspondent CIE-10 codes. For this activity, we use Levenshtein string similarity
distance [
            <xref ref-type="bibr" rid="ref10">10</xref>
            ]. We compare the named entities against the terms and descriptions of the
KG, getting the most suitable CIE-10 codes.
          </p>
          <p>In the final step, we develop Data Post-process methods to create the definitive
results. For the task 1 and the task 2 we apply frequency-based techniques to sort the
results. We assume the most frequent named entities in a text are the most relevant
ones. The CIE-10 codes of such named entities would be in the first positions of the
list of a clinical text. However, in those cases when the frequency is the same, we
apply reordering based on the text position of named entities. We give more relevance
8 https://donovanong.github.io/ner/tagging-scheme-for-ner.html
to named entities nearer to the end of the text, where conclusions and the diagnostics
usually take place. We assign lower relevance to the entities located at the beginning
of the text, where the antecedents are usually exposed. For all these tasks, we created
a version of results where we removed the entities negated with NegEx-MES tool. We
also created other versions where we analyzed overlapping of named entities in different
text positions to normalize the CIE-10 code of the longest named entity.
3</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Evaluation</title>
      <p>In this section we first describe the environment and the tools that we used. Then, we
describe the experiments carried out to select the tools and the methods used. And
finally, we present and discuss the CLEF eHealth performance evaluation of our results.
3.1</p>
      <sec id="sec-3-1">
        <title>Environment setup</title>
        <p>
          All the NER models described here are obtained by fine-tuning a BERT-Based
Multilingual cased architecture with 110 million trainable parameters. The weights are available
on GitHub9. It supports 104 languages (Spanish included). We chose this architecture
empirically from the experience we have on training biomedical domain models. We
used the script run ner.py, which is available on GitHub10 to fine-tune our NER
models. This script was also previously used to train BioBERT[
          <xref ref-type="bibr" rid="ref9">9</xref>
          ].
        </p>
        <p>
          For text augmentation of the NER input datasets, we trained a text generation model
with Fujitsu’s proprietary technology based on decentralized learning. We used a
subset of MIMIC-III [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] and PubMed [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ] databases. We selected the first 10% of each
database and we created sequences of sizes 40 and 50 for MIMIC-III and PubMed
respectively. We trained a total of 4,113,665 parameters with batch size of 128 for 250
epochs. The training time for this model was 16.6 hours. This is the main version of
the Fujitsu Text Generation model, but we generated a second analogue model with the
training data provided by CLEF eHealth challenge. In our experiments, we tested the
performance of both versions.
        </p>
        <p>After the prediction of the NER and the linking process to the CIE-10 codes with the
help of the Knowledge Graph, we performed 4 different methods of post-processing of
the results. We presented 4 versions of our results, one for each type of post-processing
method applied. Table 1 presents the identifiers of each version, and then we describe
the methods of post-processing followed.</p>
        <p>– No position overlap: After locating the position of each entity found in the text,
we remove entities with overlapping positions and we only keep the longest entity.
For instance, if we detect the entities “hipertensio´n ocular” and “hipertensio´n”, the
second entity is a substring of the first, that is, it is in the same position of the word
“hipertensio´n” from the first entity. In this case, we only keep the first entity, which
is the longest one.</p>
        <sec id="sec-3-1-1">
          <title>9 https://github.com/google-research/bert 10 https://github.com/dmis-lab/biobert</title>
          <p>The performance of each experiment in the building of the NER model is shown in the
Table 2.</p>
          <p>Data-2 + Augmentation extended Val Data-2 diagnostico
Data-2 + Augmentation extended Val Data-2 procedimiento
F1-Score
56.82
24.05
57.10
– Baseline: Firstly, we obtain a baseline performance by fine tuning BERT for the
entity “diagnostico”. This baseline is trained with the first version of the dataset
provided by the organizers (Data-1) and it is tested with the validation set (Val
Data1). We achieve an F1-Score of 56.82 with this experiment. Based on this result, we
are going to proceed to adjusting training parameters.
– Abstracts: Besides training and validation sets, organizers provided extra text
annotations from literature abstracts. So, in this experiment, we trained an NER with the
initial training set and the data from the abstracts. The performance decreased, so
we discarded the abstract data for the following training iterations. We believe the
data imbalance and noise introduced to the training by the abstracts are responsible
of this low performance.
– MIMIC-III: Similar to the previous experiment, we trained an NER with the initial
training set plus data from MIMIC-III dataset, taking care not to outnumber the data
points of CLEF eHealth data. This experiment resulted in a better performance over
the baseline. Therefore, we thought that data augmentation would be a useful tool
to achieve higher performance.
– Fujitsu Augmentation: We used the Text Generation model trained with Fujitsu’s
proprietary Decentralized Learning technology. This Text Generation model was
trained with MIMIC-III and PubMed data. This model receives a seed text as input
and it generates text similar to the medical domain text. In our experiments, the
seed text is the word or the set of words that conform to an entity. By using our
Text Generation model, we duplicate the number of samples in the initial train set.
And by the randomness of the generated text, we add robustness to the final NER
model. In this experiment we achieve an F1-Score of 58.03.
– Fujitsu Augmentation fine-tune: In this experiment we fine-tune the Text
Generation model with data from CLEF eHealth challenge. This means the Text
Generation model learns from MIMIC-III, PubMed and CLEF eHealth data. Similar to
the previous experiment, we duplicate the training samples and we obtain an NER
with a performance of 58.40. This is the final methodology used to train the NER
model in our system.</p>
          <p>Using the method of experiment “Fujitsu Augmentation fine-tune” we trained two
NER models with the latest released datasets (Data-2) from the task 3 for type
“diagnostico” (Final T1) and for type “procedimiento” (Final T2). With this method and the
updated dataset we go from 56.82 to 72.45 F1-Score for the entity “diagnostico”. And
these NER models are the ones used alongside the linking algorithm with our
Knowledge Graph to obtain our results over the test set.</p>
          <p>After post-processing the data with the 4 methods described in Section 3.1, we
submitted the results for evaluation. Table 3 shows the performance obtained after the
evaluation carried out by the organizers of the CLEF eHealth challenge.</p>
          <p>From the evaluation tables we see that for task 1, V 1 achieves the highest Mean
Average Precision (MAP) and F1-Score. V 3 and V 4 achieved the highest MAP and
F1-Score for task 2 of the challenge and V 1 was the highest performance approach for
task 3. We associate the lower results in task 2 to issues with bigger specificity regarding
body parts and concrete parameters in CIE10-PCS. There are cases where our approach
is missing the specifications of the procedure. In those cases, we are retrieving wrong
code annotations, what decreases the precision and recall.</p>
          <p>We can highlight the versions of post-processing that did not remove negated
entities as the highest achieving approaches. We conclude, after analysis over the
groundtruth, that negated entities are contemplated as part of the expected results. In the case of
task 1, out of the 2841 negated entities that we removed from our results, 2059 appear in
the ground-truth. And in case of task 2, the ground-truth contains 61 appearances from
the 58 negated entities removed from our results. This is the reason why versions of our
results that do not remove negated entities (V 1 and V 3) outperform the versions that
remove negated entities (V 2 and V 4) across all the tasks. And due to the small number
of negated entities we found in task 2, the performance differences between versions is
negligible.
4</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Conclusions</title>
      <p>In this paper we present the methods used in the CLEF eHealth 2020 Challenge for
Automated Clinical Encoding. This challenge consisted of 3 tasks for CIE-10 code
assignment of texts written in Spanish for diagnoses (task 1) and procedures (task 2),
and identifying the positioning of those entities in the texts (task 3).</p>
      <p>We followed an approach composed of a Knowledge Graph created with the CIE-10
standard and the training data annotations. Then we fine-tuned a multilingual
BERTbased network for Named Entity Recognition to predict entities in the clinical texts.
We used data augmentation through Fujitsu proprietary Text Generation Model, trained
with Decentralized Learning from the datasets MIMIC-III and PubMed, to create
synthetic samples for the NER training. With the output of our NER models and the
Knowledge Graph, we developed a linking algorithm to assign a CIE-10 code to predicted
entities in the texts. Finally, we post-processed the output of our linking algorithm to
remove negated entities using the NegEx-MES tool. We also analyzed the output to
provide 4 different versions of our results taking into account the overlapping words
and positions of predicted entities.</p>
      <p>Our approach achieves F1-Scores of 0.67, 0.51 and 0.61 for tasks 1, 2 and 3
respectively. The versions of our results that achieve higher performance are the ones that do
not remove negated entities, named CodiEspD v1, CodiEspP v3 and CodiEspX v1.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Amin</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Neumann</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dunfield</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vechkaeva</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chapman</surname>
            ,
            <given-names>K.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wixted</surname>
            ,
            <given-names>M.K.</given-names>
          </string-name>
          :
          <article-title>MLTDFKI at CLEF eHealth 2019: Multi-label Classification of ICD-10 Codes with BERT</article-title>
          .
          <source>In: Working Notes of CLEF 2019 - Conference and Labs of the Evaluation Forum, Lugano, Switzerland, September</source>
          <volume>9</volume>
          -
          <issue>12</issue>
          ,
          <year>2019</year>
          .
          <source>CEUR Workshop Proceedings</source>
          , vol.
          <volume>2380</volume>
          . CEURWS.org (
          <year>2019</year>
          ), http://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>2380</volume>
          /paper 67.pdf
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Atutxa</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Casillas</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ezeiza</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fresno</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Goenaga</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gojenola</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          , Mart´ınez, R.,
          <string-name>
            <surname>Anchordoqui</surname>
            ,
            <given-names>M.O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Perez-</surname>
          </string-name>
          de-Vin˜ aspre, O.:
          <article-title>IxaMed at CLEF eHealth 2018 Task 1: ICD10 Coding with a Sequence-to-Sequence Approach</article-title>
          . In: Working Notes of CLEF 2018 -
          <article-title>Conference and Labs of the Evaluation Forum</article-title>
          , Avignon, France,
          <source>September 10-14</source>
          ,
          <year>2018</year>
          .
          <source>CEUR Workshop Proceedings</source>
          , vol.
          <volume>2125</volume>
          .
          <string-name>
            <surname>CEUR-WS.org</surname>
          </string-name>
          (
          <year>2018</year>
          ), http://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>2125</volume>
          /paper 167. pdf
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Baumel</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nassour-Kassis</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          , Cohen,
          <string-name>
            <given-names>R.</given-names>
            ,
            <surname>Elhadad</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Elhadad</surname>
          </string-name>
          , N.:
          <source>Multi-Label Classification of Patient Notes: Case Study on ICD Code Assignment. In: The Workshops of the The Thirty-Second AAAI Conference on Artificial Intelligence</source>
          , New Orleans, Louisiana, USA, February 2-
          <issue>7</issue>
          ,
          <year>2018</year>
          .
          <source>AAAI Workshops</source>
          , vol.
          <source>WS-18</source>
          , pp.
          <fpage>409</fpage>
          -
          <lpage>416</lpage>
          . AAAI Press (
          <year>2018</year>
          ), https://aaai.org/ocs/index.php/WS/AAAIW18/paper/view/16881
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <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="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Garc</surname>
          </string-name>
          <article-title>´ıa-</article-title>
          <string-name>
            <surname>Santa</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          , San-Miguel,
          <string-name>
            <given-names>B.</given-names>
            ,
            <surname>Ugai</surname>
          </string-name>
          ,
          <string-name>
            <surname>T.</surname>
          </string-name>
          :
          <article-title>The Magic of Semantic Enrichment and NLP for Medical Coding</article-title>
          . In: The Semantic Web:
          <article-title>ESWC 2019 Satellite Events - ESWC 2019 Satellite Events</article-title>
          , Portorozˇ, Slovenia, June 2-6,
          <year>2019</year>
          ,
          <source>Revised Selected Papers. Lecture Notes in Computer Science</source>
          , vol.
          <volume>11762</volume>
          , pp.
          <fpage>58</fpage>
          -
          <lpage>63</lpage>
          . Springer (
          <year>2019</year>
          ). https://doi.org/10.1007/978- 3-
          <fpage>030</fpage>
          -32327-1 12
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Goeuriot</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Suominen</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kelly</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Miranda-Escalada</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Krallinger</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pasi</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          , Saez Gonzales,
          <string-name>
            <given-names>G.</given-names>
            ,
            <surname>Viviani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <surname>C.</surname>
          </string-name>
          :
          <article-title>Overview of the CLEF eHealth Evaluation Lab 2020</article-title>
          . In: Arampatzis,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Kanoulas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            ,
            <surname>Tsikrika</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            ,
            <surname>Vrochidis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            ,
            <surname>Joho</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            ,
            <surname>Lioma</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Eickhoff</surname>
          </string-name>
          ,
          <string-name>
            <surname>C.</surname>
          </string-name>
          , Ne´ve´ol,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Cappellato</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Ferro</surname>
          </string-name>
          , N. (eds.)
          <string-name>
            <surname>Experimental IR Meets Multilinguality</surname>
          </string-name>
          , Multimodality, and
          <source>Interaction: Proceedings of the Eleventh International Conference of the CLEF Association (CLEF</source>
          <year>2020</year>
          ) . LNCS Volume number:
          <volume>12260</volume>
          (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>ICD</surname>
          </string-name>
          , W.: 10:
          <article-title>International statistical classification of diseases and related health problems</article-title>
          . World Health Organization,
          <string-name>
            <surname>Geneva</surname>
          </string-name>
          (
          <year>1992</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Johnson</surname>
            ,
            <given-names>A.E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pollard</surname>
            ,
            <given-names>T.J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shen</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <article-title>Li-wei,</article-title>
          <string-name>
            <given-names>H.L.</given-names>
            ,
            <surname>Feng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Ghassemi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            , Moody, B.,
            <surname>Szolovits</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            ,
            <surname>Celi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.A.</given-names>
            ,
            <surname>Mark</surname>
          </string-name>
          , R.G.:
          <article-title>MIMIC-III, a freely accessible critical care database</article-title>
          .
          <source>Scientific data 3</source>
          ,
          <issue>160035</issue>
          (
          <year>2016</year>
          ). https://doi.org/10.13026/C2XW26
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Lee</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yoon</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kim</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kim</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kim</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>So</surname>
            ,
            <given-names>C.H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kang</surname>
            ,
            <given-names>J.:</given-names>
          </string-name>
          <article-title>BioBERT: a pre-trained biomedical language representation model for biomedical text mining</article-title>
          .
          <source>Bioinform</source>
          .
          <volume>36</volume>
          (
          <issue>4</issue>
          ),
          <fpage>1234</fpage>
          -
          <lpage>1240</lpage>
          (
          <year>2020</year>
          ). https://doi.org/10.1093/bioinformatics/btz682
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Levenshtein</surname>
            ,
            <given-names>V.I.</given-names>
          </string-name>
          :
          <article-title>Binary codes capable of correcting deletions, insertions, and reversals</article-title>
          .
          <source>In: Soviet physics doklady</source>
          . vol.
          <volume>10</volume>
          , pp.
          <fpage>707</fpage>
          -
          <lpage>710</lpage>
          (
          <year>1966</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Lindberg</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Internet access to the National Library of Medicine</article-title>
          .
          <source>Effective clinical practice: ECP</source>
          <volume>3</volume>
          (
          <issue>5</issue>
          ),
          <volume>256</volume>
          (
          <year>2000</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Miftahutdinov</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tutubalina</surname>
          </string-name>
          , E.:
          <article-title>KFU at CLEF ehealth 2017 task 1: ICD-10 coding of english death certificates with recurrent neural networks</article-title>
          .
          <source>In: Working Notes of CLEF 2017 - Conference and Labs of the Evaluation Forum</source>
          , Dublin, Ireland,
          <source>September 11-14</source>
          ,
          <year>2017</year>
          .
          <source>CEUR Workshop Proceedings</source>
          , vol.
          <year>1866</year>
          .
          <article-title>CEUR-WS.org (</article-title>
          <year>2017</year>
          ), http://ceur-ws.
          <source>org/</source>
          Vol-1866/paper 64.pdf
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Miranda</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rana</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Krallinger</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Abstracts from Lilacs and Ibecs with ICD10 codes (</article-title>
          <year>Jan 2020</year>
          ). https://doi.org/10.5281/zenodo.3606626, https://doi.org/10.5281/zenodo. 3606626, Funded by the Plan de Impulso de las Tecnolog´
          <article-title>ıas del Lenguaje (Plan TL)</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Miranda-Escalada</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gonzalez-Agirre</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Armengol-Estape´</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Krallinger</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Overview of automatic clinical coding: annotations, guidelines, and solutions for non-English clinical cases at CodiEsp track of CLEF eHealth 2020</article-title>
          . In: Working Notes of Conference and
          <article-title>Labs of the Evaluation (CLEF) Forum</article-title>
          . CEUR Workshop Proceedings (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Miranda-Escalada</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Krallinger</surname>
            ,
            <given-names>M.:</given-names>
          </string-name>
          <article-title>CodiEsp codes: list of valid CIE10 codes for the CodiEsp task</article-title>
          (
          <year>Jan 2020</year>
          ), https://doi.org/10.5281/zenodo.3706838, Funded by the Plan de Impulso de las Tecnolog´
          <article-title>ıas del Lenguaje (Plan TL)</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Mullenbach</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wiegreffe</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Duke</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sun</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Eisenstein</surname>
          </string-name>
          , J.:
          <article-title>Explainable Prediction of Medical Codes from Clinical Text</article-title>
          .
          <source>In: Proceedings of the</source>
          <year>2018</year>
          <article-title>Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</article-title>
          , NAACL-HLT
          <year>2018</year>
          , New Orleans, Louisiana, USA, June 1-6,
          <year>2018</year>
          , Volume
          <volume>1</volume>
          (Long Papers). pp.
          <fpage>1101</fpage>
          -
          <lpage>1111</lpage>
          . Association for Computational Linguistics (
          <year>2018</year>
          ). https://doi.org/10.18653/v1/n18-
          <fpage>1100</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Ne</surname>
          </string-name>
          <article-title>´ve´ol,</article-title>
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Robert</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Anderson</surname>
          </string-name>
          ,
          <string-name>
            <surname>R.</surname>
          </string-name>
          , Cohen,
          <string-name>
            <given-names>K.B.</given-names>
            ,
            <surname>Grouin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Lavergne</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            ,
            <surname>Rey</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            ,
            <surname>Rondet</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Zweigenbaum</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            :
            <surname>CLEF eHealth 2017 Multilingual Information</surname>
          </string-name>
          <article-title>Extraction task Overview: ICD10 Coding of Death Certificates in English and French</article-title>
          .
          <source>In: Working Notes of CLEF 2017 - Conference and Labs of the Evaluation Forum</source>
          , Dublin, Ireland,
          <source>September 11-14</source>
          ,
          <year>2017</year>
          .
          <source>CEUR Workshop Proceedings</source>
          , vol.
          <year>1866</year>
          .
          <article-title>CEUR-WS.org (</article-title>
          <year>2017</year>
          ), http://ceur-ws.
          <source>org/</source>
          Vol-1866/invited paper 6.pdf
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Ne</surname>
          </string-name>
          <article-title>´ve´ol,</article-title>
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Robert</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Grippo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            ,
            <surname>Morgand</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Orsi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Pelikan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Ramadier</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Rey</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            ,
            <surname>Zweigenbaum</surname>
          </string-name>
          ,
          <string-name>
            <surname>P.: CLEF</surname>
          </string-name>
          <article-title>eHealth 2018 Multilingual Information Extraction Task Overview: ICD10 Coding of Death Certificates in French, Hungarian and Italian</article-title>
          . In: Working Notes of CLEF 2018 -
          <article-title>Conference and Labs of the Evaluation Forum</article-title>
          , Avignon, France,
          <source>September 10-14</source>
          ,
          <year>2018</year>
          .
          <source>CEUR Workshop Proceedings</source>
          , vol.
          <volume>2125</volume>
          .
          <string-name>
            <surname>CEUR-WS.org</surname>
          </string-name>
          (
          <year>2018</year>
          ), http://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>2125</volume>
          /invited paper 18.pdf
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Neves</surname>
            ,
            <given-names>M.L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Butzke</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          , Do¨rendahl,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Leich</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            ,
            <surname>Hummel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            , Scho¨nfelder, G.,
            <surname>Grune</surname>
          </string-name>
          ,
          <string-name>
            <surname>B.</surname>
          </string-name>
          :
          <article-title>Overview of the CLEF eHealth 2019 Multilingual Information Extraction</article-title>
          . In: Working Notes of CLEF 2019 -
          <article-title>Conference and Labs of the Evaluation Forum</article-title>
          , Lugano, Switzerland, September 9-
          <issue>12</issue>
          ,
          <year>2019</year>
          .
          <source>CEUR Workshop Proceedings</source>
          , vol.
          <volume>2380</volume>
          .
          <string-name>
            <surname>CEUR-WS.org</surname>
          </string-name>
          (
          <year>2019</year>
          ), http://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>2380</volume>
          /paper 251.pdf
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Pakhomov</surname>
            ,
            <given-names>S.V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Buntrock</surname>
            ,
            <given-names>J.D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chute</surname>
            ,
            <given-names>C.G.</given-names>
          </string-name>
          :
          <article-title>Automating the assignment of diagnosis codes to patient encounters using example-based and machine learning techniques</article-title>
          .
          <source>Journal of the American Medical Informatics Association</source>
          <volume>13</volume>
          (
          <issue>5</issue>
          ),
          <fpage>516</fpage>
          -
          <lpage>525</lpage>
          (
          <year>2006</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <surname>Sa</surname>
            ¨nger,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Weber</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kittner</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Leser</surname>
            ,
            <given-names>U.</given-names>
          </string-name>
          :
          <article-title>Classifying German Animal Experiment Summaries with Multi-lingual BERT at CLEF eHealth 2019 Task 1</article-title>
          . In: Working Notes of CLEF 2019 -
          <article-title>Conference and Labs of the Evaluation Forum</article-title>
          , Lugano, Switzerland, September 9-
          <issue>12</issue>
          ,
          <year>2019</year>
          .
          <source>CEUR Workshop Proceedings</source>
          , vol.
          <volume>2380</volume>
          .
          <string-name>
            <surname>CEUR-WS.org</surname>
          </string-name>
          (
          <year>2019</year>
          ), http://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>2380</volume>
          /paper 81.pdf
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <surname>Wei</surname>
            ,
            <given-names>C.H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Allot</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Leaman</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lu</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          :
          <article-title>PubTator central: automated concept annotation for biomedical full text articles</article-title>
          .
          <source>Nucleic acids research</source>
          <volume>47</volume>
          (
          <issue>W1</issue>
          ),
          <fpage>W587</fpage>
          -
          <lpage>W593</lpage>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>