<!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>Enhancing Clinical Data Capture: Developing a Natural Language Processing Pipeline for Converting Free Text Admission Notes to Structured EHR Data</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Patrick Styll</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Wojciech Kusa</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Allan Hanbury</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Data Science Research Unit (E194-04), Technische Universität Wien</institution>
          ,
          <addr-line>Favoritenstraße 9-11, 1040 Vienna</addr-line>
          ,
          <country country="AT">Austria</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2024</year>
      </pub-date>
      <fpage>26</fpage>
      <lpage>27</lpage>
      <abstract>
        <p>Automating the extraction of essential patient information from clinical texts, such as admission notes, can significantly enhance the entry of this data into Electronic Health Records (EHR), thereby enhancing workflow eficiency and supporting improved patient care and healthcare management. To address this issue, we introduce a Natural Language Processing (NLP) pipeline designed to (i) automatically extract patient data via Named Entity Recognition (NER), (ii) normalize the extracted data to correspond to codes in oficial medical ontologies, and (iii) coerce the data into EHR format using Health Level 7's (HL7) Fast Healthcare Interoperability Resources (FHIR) standard. By adhering to these widely used standardized formats, the pipeline output can be immediately integrated into the Hospital Information System (HIS). To achieve this, we propose a newly labeled dataset comprising 255 notes from unlabelled datasets published by the Text Retrieval Conference's (TREC) Clinical Trials tracks. Finally, we utilize SapBERT for the normalization of extracted entities and employ the FHIR standard as a basis to generate Electronic Health Records (EHRs).</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Clinical Named Entity Recognition</kwd>
        <kwd>SapBERT</kwd>
        <kwd>FHIR</kwd>
        <kwd>Electronic Health Records</kwd>
        <kwd>ICD-10</kwd>
        <kwd>NDC</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        Representations from Transformers (BERT) [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] models, evaluate their performance and explore diferent
techniques to further enhance them. In Section 4, we handle both the second and third step of the
pipeline. Firstly, we introduce the oficial medical ontologies we use, which are the 10ℎ revision of
the International Statistical Classification of Diseases and Related Health Problem (ICD-10) and the
National Drug Code (NDC). We also explain the underlying technology in normalizing the extracted
information via Self-Aligning Pretrained BERT (SapBERT) [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. Secondly, we reveal how we used the
HL7 FHIR standard to coerce all extracted and normalized information into an EHR. Finally, in Section 6
we conclude our research, discuss and summarize our findings and present a web-interface showcasing
the whole integrated workflow.
      </p>
    </sec>
    <sec id="sec-2">
      <title>2. Related Work</title>
      <p>
        For the first part of our pipeline, we largely rely on microsoft/mdeberta-v3-base [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] as our baseline.
This large, multilingual general-domain model has recently gained recognition for its efectiveness
in processing medical data, making it a suitable choice for medical NER. Furthermore, in our
participation [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] in the MultiCardioNER [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] task from the BioASQ [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] workshop at CLEF2024, we have
found valuable insights which we make further use of in this paper. The shared task focuses on the
multilingual adaptation of clinical NER systems to the cardiology domain. It includes two key tasks:
disease detection in Spanish texts and drug detection across Italian, Spanish, and English texts.
In the second step during our pipeline, we use Self-Aligning Pretrained BERT (SapBERT) [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ][
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] for
normalizing the extracted entities to standardized codes. SapBERT is a specialized version of the BERT
model, developed specifically for biomedical and clinical text mining and designed to create
highquality embeddings of medical texts. In order to generate embeddings that are particularly well-suited
for biomedical applications, the model has been exposed to large datasets of biomedical literature
and clinical notes during training. As of standardized codes, we use 10ℎ revision of the International
Statistical Classification of Diseases and Related Health Problem (ICD-10) to classify medical conditions,
symptoms and medical procedures. The ICD-10 is a globally recognized medical classification system
developed by the World Health Organization (WHO), and has since become a critical tool for diagnosing
and classifying a wide range of diseases and health conditions. For pharmaceuticals, we have decided
to make use of National Drug Code (NDC), which is a unique identifier largely used in the United States
for drugs and other pharmaceutical products. Established by the Food and Drug Administration (FDA),
the NDC serves as a universal product identifier for human drugs.
      </p>
      <p>For coercing the output into an EHR, we have decided to use Fast Healthcare Interoperability
Resources (FHIR) in the third step of the pipeline. FHIR is a standard for exchanging healthcare information
electronically, designed to enable interoperability between diferent healthcare systems. Since it is
designed to be extensible, it allows developers to build custom applications and extensions without
jeopardizing compatibility - this is a big factor on why we use FHIR as the output format of our pipeline.</p>
    </sec>
    <sec id="sec-3">
      <title>3. Named Entity Recognition for Patient Admission Notes</title>
      <p>In this section, we introduce the initial phase of our clinical text processing pipeline, focusing on the
extraction of crucial patient-related information from admission notes. We look into specific objectives
and evaluation metrics, and we introduce and explore a newly labeled dataset. We look into the training
and fine-tuning of various BERT models, along with strategies for enhancing their performance.</p>
      <sec id="sec-3-1">
        <title>3.1. Dataset Preparation and Exploratory Data Analysis</title>
        <sec id="sec-3-1-1">
          <title>3.1.1. Data Collection</title>
          <p>
            The primary dataset originates from the TREC CT/CDS topics, publicly accessible on the track’s oficial
website1. Each topic has a similar structure, including several diagnoses in free text format. The topics
represent admission notes containing the most important patient details which a doctor takes as soon
as a person is admitted to a hospital. This includes personal information and demographics, such as
gender and age, but also the current medical conditions, symptoms, medications/treatments and medical
procedures. The dataset makes a total of 255 entries (topics). This includes:
• TREC CDS 2016 [
            <xref ref-type="bibr" rid="ref12">12</xref>
            ] - each topic is split into three separate fields: note, description and
summary. Since each field contains the same information in other words, they will be processed
individually, creating a total of 90 topics.
• TREC CT 2021 [
            <xref ref-type="bibr" rid="ref13">13</xref>
            ] - 75 topics in total with one field.
• TREC CT 2022 [
            <xref ref-type="bibr" rid="ref14">14</xref>
            ] - 50 topics in total with one field.
• TREC CT 2023 [
            <xref ref-type="bibr" rid="ref15">15</xref>
            ] - preprocessed to free text in admission note style via GPT-3 - 40 topics in
total. More details on preprocessing can be found in [
            <xref ref-type="bibr" rid="ref16">16</xref>
            ].
          </p>
        </sec>
        <sec id="sec-3-1-2">
          <title>3.1.2. Data Labelling and Analysis</title>
          <p>For simplification purposes, we have decided to focus on four diferent entities, encompassing the most
important information which has to be extracted from admission notes.</p>
          <p>• Medical Conditions</p>
          <p>Medical conditions describe long-term conditions, such as diabetes mellitus or COVID-19.
• Symptoms</p>
          <p>In contrast to medical conditions, these describe mostly short-term conditions, which may be
indicators of medical conditions. E.g. fever, a symptom, is an indicator for COVID-19, a medical
condition.
• Medication/Treatment</p>
          <p>This could either describe medicine (e.g. Ritalin) or treatment (e.g. rehab).
• Medical Procedure</p>
          <p>This includes both invasive and non-invasive procedures, such as tracheostomy or MR.
The labelling of the dataset has been done via the open-source tool doccano [17] by the author of this
paper. See Table 1 for a summary of annotated data by entity type, showcasing how imbalanced the
entity to non-entity ratio is. It is important to mention that this specific dataset has not been reviewed
by domain experts.
There were several issues while labelling the data. The term medical condition is not entirely clear
and subject to interpretation. For instance, we can observe the relationship between medical condition
and symptom. E.g., a fever is not a medical condition - it is a response to medical condition or disease.
The same goes for dysuria, being the subsequent response to e.g. UTIs (Urinary Tract Infections), a
collection of various medical conditions. On the other hand the question arises whether injuries can be
seen as medical conditions. In fact, injuries, such as a broken arm, are not considered medical conditions
- injuries themselves are their own category in the medical language, which are, however, not included
in this analysis.</p>
        </sec>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Model Training and Evaluation</title>
        <p>
          For evaluating the models, we used entity-level evaluation metrics [18], consistent with our previous
submission for MultiCardioNER [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ], specifically using  1. Since we are working with a highly
imbalanced dataset, entity-level evaluation provides a more accurate assessment of NER performance.
For the NER step of our pipeline, we have decided to use microsoft/mdeberta-v3-base [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] instead
of models with less parameters such as google-bert/bert-base-multilingual-cased [19] or specialized
models as alvaroalon2/biobert_diseases_ner [20], since we were most successful with it in previous
experiments dealing with medical NER [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ]. For hyperparameter-tuning, we used a 70:15:15 split; we
observed that changes in certain parameters led to large performance diferences in the model. These
include the learning rate, where higher values (i.e. 0.1) lead to worse results ( 1 of ≈ 0.8); low
values (i.e. 0.0001) also led to bad performance, suggesting that a certain balance is required. Similar
behaviour can be observed for the batch size, where 16 appears to be the optimum.  1 no longer
significantly changes after about 10 epochs, and even drops, showing signs of overfitting the training
data. In the end, the parameters we achieved from tuning and therefore used for training are 16 for batch
size, 0.01 for learning rate and 128 for the input size of the model, running with the SGD optimizer
for 10 epochs. These parameters gave us a final validation  1 of 85.6% and training  1 of
89.1%. The training history of the final model can be observed in Figure 1. Table 2 demonstrates the
optimized results for all entity types. Unfortunately, the metrics for surgical procedures are relatively
low compared to the other metrics - this is largely due to the fact that surgical procedures are rather
scarce (see Table 1) and ofer a more diverse vocabulary. More data would be crucial to receive better
results.
        </p>
        <sec id="sec-3-2-1">
          <title>3.2.1. Efect of Data Augmentation</title>
          <p>As can be seen in section 3.1.2, there exist great imbalances in the relative ratio between entities and
non-entities. In order to tackle this problem and increase model accuracy, we have decided to even
these modalities out via data augmentation. In detail, we shufle the sentences and their respective
entities around in random order and thus generate new model input, essentially doubling the amount
of training data. This augmentation has only been performed on the train set, while the validation
and test set were left unchanged. For sentence detection, we have used spaCy [21]. In general, this
resulted in overall increased metric values, as can be seen in Table 2; bear in mind that they originate
from already fine-tuned models.</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Generation of Structured Electronic Health Records (EHRs)</title>
      <p>In this section, we address both the second and third steps of our pipeline. We introduce the standard
medical ontologies utilized in our work, and we also dive into the technology used for normalizing the
extracted information, specifically focusing on the application of SapBERT. Following this, we discuss
how we used the HL7 FHIR standard to integrate all extracted and normalized data into an EHR system.
For entitiy types Medical Condition, Medication/Treatment and Symptom we use the ICD-10 codes taken
directly from the website for Centers for Medicare &amp; Medicaid Services2, and for Medication we use
NDC codes. These were taken from the FDA’s oficial website openFDA 3, but had to be thoroughly
preprocessed for use. We used both the proprietary and non-proprietary name for matching the code.
Furthermore, since each NDC code includes packaging information, which we do not extract from the
text, we have arbitrarily selected one code to represent the medicine. As a result, the packaging details
associated with this code may not be accurate.</p>
      <p>Entity
Embeddings</p>
      <p>ICD/NDC</p>
      <p>Embeddings</p>
      <p>Nearest Neighbor (k=1)
Consine Similarity Threshold</p>
      <p>SapBERT
Extracted
Entities</p>
      <p>ICD/NDC
Codes
f
e
a
tr
u
e
s
p
a
c
e
r
a
w
d
a
t
a</p>
      <sec id="sec-4-1">
        <title>4.1. Integration with SapBERT</title>
        <p>The integration with SapBERT is required for medical entity normalization. In order to standardize
the extracted entities, we need to connect each of them with their respective ICD-10/NDC code. In
2https://www.cms.gov/medicare/coding-billing/icd-10-codes
3https://open.fda.gov/data/ndc/
detail, we leverage SapBERT to create embeddings for ICD-10 and NDC. The core steps of the workflow
(see Figure 2) include generating embeddings for these codes, performing nearest neighbor search,
and determining the cosine similarity between embeddings to find the closest matches based on a
pre-defined threshold. Based on experience from initial experiments, we chose 0.4 for ICD-10 codes
and 0.3 for NDC codes.</p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Application of the FHIR Standard</title>
        <p>The input of this part is (i) the extracted text of the NER model, (ii) the normalized entity and (iii)
the corresponding ICD-10/NDC code. These triples are then grouped into the fitting FHIR resource,
which represent specific types of clinical and administrative information in the FHIR standard. The
HL7 organization ofers a FHIR Resource Guide 4, with which it was quite simple to find and use the
appropriate resources. The FHIR resource templates for each separate entity type and an example for a
FHIR Resource Bundle as a final EHR can be found in the GitHub repository. It is interesting to note
that the resources templates for Medical Condition and Symptom are the same, except for a note being
used to highlight the diference. This once more emphasizes the content-related overlap of these entity
types as described in section 3.1.2.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Limitations and Future Work</title>
      <p>One of the primary limitations of this work lies in the lack of a quantitative evaluation of the mapping
methodology introduced in Section 4.1. While the approach to map extracted entities to standard codes
shows promise, we do not provide a formal assessment of its performance. Future iterations of this
study should aim to address this gap by introducing an appropriate evaluation framework, allowing
for a stronger argument regarding the efectiveness of the mapping mechanism and its applicability in
real-world scenarios. Furthermore, the dataset used in this study, consisting of approximately 32943
wordpieces, poses potential challenges for the generalizability of the findings. A dataset of this size,
while suficient for a proof-of-concept, may not capture the full complexity and variability present in
larger, real-world datasets. Moreover, the dataset lacks expert intervention during the labeling process,
which introduces the possibility of inaccuracies in entity extraction. In future work, incorporating expert
validation for at least a subset of the data would enhance the quality and accuracy of the annotations,
providing a more robust foundation for the entity extraction and mapping methods.</p>
    </sec>
    <sec id="sec-6">
      <title>6. Conclusion</title>
      <p>We have established an NLP pipeline for processing free-text admission notes into EHR. In Section 3,
we look into the problem of medical NER. We select the appropriate architecture and define metrics for
demonstrative evaluation. We describe the data mining process, explore the data and justify our data
labelling processes. Finally, we train models through various strategies and assess their performance.
In Section 4, we gave insights into medical classification lists such as ICD-10 and NDC. We further
showcase how we take the output of Section 3 to normalize the extracted entities via SapBERT. Finally,
we show how the FHIR standard aids us in generating a standardized EHR. Furthermore, we have created
a web interface to showcase all three steps of the pipeline: (i) the extracted entities inside the admission
note, (ii) the normalized entities, including the extracted text, the normalized text and ICD-10/NDC code,
and (iii) the automatically generated FHIR Resource Bundle representing a standardized EHR. Any code
can be found in the GitHub repositories Padraig20/Disease-Detection-NLP and Padraig20/EHR-Generator
for medical NER and the EHR-Generator including the SapBERT workflow as well as the Web-Interface,
respectively.
4https://www.hl7.org/fhir/resourceguide.html
in: Proceedings of the Text REtrieval Conference (TREC), National Institute of Standards and
Technology (NIST), Gaithersburg, MD, USA, 2023.
[17] H. Nakayama, T. Kubo, J. Kamura, Y. Taniguchi, X. Liang, doccano: Text annotation
tool for human, 2018. URL: https://github.com/doccano/doccano, software available from
https://github.com/doccano/doccano.
[18] D. S. Batista, Named-entity evaluation metrics based on entity-level, 2018. URL: https://www.</p>
      <p>davidsbatista.net/blog/2018/05/09/Named_Entity_Evaluation/, accessed: 2024-05-21.
[19] J. Devlin, M.-W. Chang, K. Lee, K. Toutanova, Bert: Pre-training of deep bidirectional transformers
for language understanding, in: Proceedings of the 2019 Conference of the North American Chapter
of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long
and Short Papers), 2019, pp. 4171–4186.
[20] Á. Alonso Casero, Named entity recognition and normalization in biomedical literature: a practical
case in SARS-CoV-2 literature, 2021. URL: https://oa.upm.es/67933/, unpublished.
[21] Explosion-AI, spaCy: Industrial-strength Natural Language Processing in Python, https://spacy.io/
usage/linguistic-features#sbd, 2023. URL: https://spacy.io/, version 3.0.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>G.</given-names>
            <surname>Bonetta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. D.</given-names>
            <surname>Hromei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Siciliani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Stranisci</surname>
          </string-name>
          , Preface to the
          <source>Eighth Workshop on Natural Language for Artificial Intelligence (NL4AI)</source>
          ,
          <source>in: Proceedings of the Eighth Workshop on Natural Language for Artificial Intelligence (NL4AI</source>
          <year>2024</year>
          )
          <article-title>co-located with 23th International Conference of the Italian Association for Artificial Intelligence (AI*IA</article-title>
          <year>2024</year>
          ),
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>H.</given-names>
            <surname>Dalianis</surname>
          </string-name>
          ,
          <article-title>Clinical text mining: Secondary use of electronic patient records</article-title>
          , Springer Nature,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>D.</given-names>
            <surname>Demner-Fushman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Elhadad</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Friedman</surname>
          </string-name>
          ,
          <article-title>Natural language processing for health-related texts</article-title>
          , in: Biomedical Informatics: Computer Applications in Health Care and Biomedicine, Springer,
          <year>2021</year>
          , pp.
          <fpage>241</fpage>
          -
          <lpage>272</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>A.</given-names>
            <surname>Vaswani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Shazeer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Parmar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Uszkoreit</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. N.</given-names>
            <surname>Gomez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Kaiser</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Polosukhin</surname>
          </string-name>
          ,
          <article-title>Attention is all you need</article-title>
          ,
          <source>CoRR abs/1706</source>
          .03762 (
          <year>2017</year>
          ). URL: http://arxiv.org/abs/1706.03762. arXiv:
          <volume>1706</volume>
          .
          <fpage>03762</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>F.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Shareghi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Meng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Basaldella</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Collier</surname>
          </string-name>
          ,
          <article-title>Self-alignment pretraining for biomedical entity representations</article-title>
          ,
          <source>in: Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</source>
          ,
          <year>2021</year>
          , pp.
          <fpage>4228</fpage>
          -
          <lpage>4238</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>F.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Vulić</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Korhonen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Collier</surname>
          </string-name>
          ,
          <article-title>Learning domain-specialised representations for crosslingual biomedical entity linking</article-title>
          ,
          <source>in: Proceedings of ACL-IJCNLP</source>
          <year>2021</year>
          ,
          <year>2021</year>
          , pp.
          <fpage>565</fpage>
          -
          <lpage>574</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>P.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gao</surname>
          </string-name>
          , W. Chen,
          <article-title>DeBERTaV3: Improving DeBERTa using ELECTRA-Style Pre-Training with Gradient-Disentangled Embedding Sharing</article-title>
          ,
          <year>2021</year>
          . arXiv:
          <volume>2111</volume>
          .
          <fpage>09543</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>P.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gao</surname>
          </string-name>
          , W. Chen, Deberta:
          <article-title>Decoding-enhanced bert with disentangled attention</article-title>
          ,
          <source>in: International Conference on Learning Representations</source>
          ,
          <year>2021</year>
          . URL: https://openreview.net/forum? id=XPZIaotutsD.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>P.</given-names>
            <surname>Styll</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Campillos-Llanos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Kusa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Hanbury</surname>
          </string-name>
          ,
          <article-title>Cross-linguistic disease and drug detection in cardiology clinical texts: Methods and outcomes</article-title>
          , in: CLEF 2024:
          <article-title>Conference and Labs of the Evaluation Forum, Technische Universität Wien</article-title>
          ,
          <source>Spanish National Research Council (CSIC)</source>
          , Grenoble, France,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>S.</given-names>
            <surname>Lima-López</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Farré-Maduell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Rodríguez-Miret</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Rodríguez-Ortega</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Lilli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Lenkowicz</surname>
          </string-name>
          , G. Ceroni,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kossof</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Shah</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Nentidis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Krithara</surname>
          </string-name>
          , G. Katsimpras, G. Paliouras,
          <string-name>
            <surname>M.</surname>
          </string-name>
          <article-title>Krallinger, Overview of MultiCardioNER task at BioASQ 2024 on Medical Speciality and Language Adaptation of Clinical NER Systems for Spanish, English and Italian</article-title>
          , in: G. Faggioli,
          <string-name>
            <given-names>N.</given-names>
            <surname>Ferro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Galuščáková</surname>
          </string-name>
          ,
          <string-name>
            <surname>A</surname>
          </string-name>
          . García Seco de Herrera (Eds.),
          <source>CLEF Working Notes</source>
          ,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>A.</given-names>
            <surname>Nentidis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Katsimpras</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Krithara</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Lima-López</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Farré-Maduell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Krallinger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Loukachevitch</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Davydova</surname>
          </string-name>
          , E. Tutubalina, G. Paliouras,
          <source>Overview of BioASQ</source>
          <year>2024</year>
          :
          <article-title>The twelfth BioASQ challenge on Large-Scale Biomedical Semantic Indexing and Question Answering</article-title>
          , in: L.
          <string-name>
            <surname>Goeuriot</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Mulhem</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>Quénot</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Schwab</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Soulier</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>Maria Di Nunzio</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Galuščáková</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>García Seco de Herrera</surname>
          </string-name>
          , G. Faggioli, N. Ferro (Eds.),
          <source>Experimental IR Meets Multilinguality, Multimodality, and Interaction. Proceedings of the Fifteenth International Conference of the CLEF Association (CLEF</source>
          <year>2024</year>
          ),
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>K.</given-names>
            <surname>Roberts</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Demner-Fushman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E. M.</given-names>
            <surname>Voorhees</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W. R.</given-names>
            <surname>Hersh</surname>
          </string-name>
          ,
          <article-title>Overview of the trec 2016 clinical decision support track</article-title>
          ,
          <source>in: Proceedings of the Text REtrieval Conference (TREC)</source>
          <year>2016</year>
          ,
          <article-title>National Institute of Standards and Technology (NIST), NIST, Gaithersburg</article-title>
          ,
          <string-name>
            <surname>MD</surname>
          </string-name>
          ,
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <surname>I. Soborof</surname>
          </string-name>
          , Overview of trec
          <year>2021</year>
          ,
          <source>in: Proceedings of the Text REtrieval Conference (TREC)</source>
          <year>2021</year>
          ,
          <article-title>National Institute of Standards and Technology (NIST), NIST, Gaithersburg</article-title>
          ,
          <string-name>
            <surname>MD</surname>
          </string-name>
          ,
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>K.</given-names>
            <surname>Roberts</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Demner-Fushman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E. M.</given-names>
            <surname>Voorhees</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Bedrick</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W. R.</given-names>
            <surname>Hersh</surname>
          </string-name>
          ,
          <article-title>Overview of the trec 2022 clinical trials track</article-title>
          ,
          <source>in: Proceedings of the Text REtrieval Conference (TREC)</source>
          <year>2022</year>
          ,
          <article-title>National Institute of Standards and Technology (NIST), NIST, Gaithersburg</article-title>
          ,
          <string-name>
            <surname>MD</surname>
          </string-name>
          ,
          <year>2022</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <surname>I. Soborof</surname>
          </string-name>
          , Overview of trec
          <year>2023</year>
          ,
          <source>in: Proceedings of the Text REtrieval Conference (TREC)</source>
          <year>2023</year>
          ,
          <article-title>National Institute of Standards and Technology (NIST), NIST, Gaithersburg</article-title>
          ,
          <string-name>
            <surname>MD</surname>
          </string-name>
          ,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>W.</given-names>
            <surname>Kusa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Styll</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Seeliger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O. E.</given-names>
            <surname>Mendoza</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Hanbury</surname>
          </string-name>
          ,
          <article-title>Dossier at trec 2023 clinical trials track,</article-title>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>