<!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>Named Entity Recognition in Scientific Texts Using Long Short-Term Memory Networks⋆</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Ana Laura Lezama-Sánchez</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Mireya Tovar Vidal</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Benemerita Universidad Autonoma de Puebla</institution>
          ,
          <addr-line>Av., 14 Sur Blvd., Puebla, ZIP Code: 72592</addr-line>
          ,
          <country country="MX">Mexico</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>In this work, we present an approach for Named Entity Recognition in scientific texts using Long Short-Term Memory Neural Networks. We began with a text preprocessing step to clean and normalize the data, followed by the construction and training of a neural network model. The proposed model is evaluated on test data from GenoVarDis task of IberLEF 2024, and the results are assessed using a competency evaluation script.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Deep learning</kwd>
        <kwd>knowledge graphs</kwd>
        <kwd>natural language processing</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        The task of Named Entity Recognition (NER) in the medical field is crucial for advancing the
understanding and management of clinical information. As the amount of available medical data grows
exponentially, it becomes increasingly challenging for healthcare professionals to eficiently extract
relevant information. This is where Natural Language Processing (NLP) techniques, specifically NER,
come into play [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].
      </p>
      <p>
        NER in the medical domain involves identifying and classifying specific entities such as disease
names, medical procedures, medications, and patient names in unstructured medical texts. This process
is fundamental for a variety of applications, including clinical information extraction for research,
improving accuracy in diagnosis and treatment, and automating administrative tasks in the healthcare
domain [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ].
      </p>
      <p>
        Traditional NER techniques in NLP relied on heuristic rules and predefined dictionaries, limiting their
ability to capture the complexity and variability of medical language. However, with the advent of deep
learning, especially architectures like Recurrent Neural Networks (RNNs), Long Short-Term Memory
(LSTM), and Convolutional Neural Networks (CNNs), significant improvements in NER performance in
medical texts have been achieved [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ].
      </p>
      <p>One of the main advantages of the deep learning approach is its ability to automatically learn
representations of complex features from raw data. This means that deep learning-based NER models
can capture patterns in medical language that may go unnoticed by traditional methods. Additionally,
these models can easily adapt to diferent medical domains and specific clinical languages by fine-tuning
model parameters [4].</p>
      <p>To further improve NER performance in the medical domain, high-quality annotated datasets
reflecting the variability and complexity of clinical language are crucial. Furthermore, the development of
specific evaluation tools for medical NER, considering the unique characteristics of clinical texts, is
essential for accurately measuring model performance and facilitating comparison between diferent
approaches [5].</p>
      <p>In this article, we propose applying an LSTM network for Named Entity Recognition, using datasets
provided by the GenoVarDis task: NER in genomic variants and related diseases from iberLEF 2024 [6, 7].
The reported results are a precision of 0.60%, an F1 score of 0.30%, and a recall of 0.20%, suggesting
that the model has moderate performance in the task of recognizing named entities in this domain.
Specifically, the low F1 score, and recall indicate that the model may be having dificulties capturing all
relevant entities in the test data.</p>
      <p>The paper structure is as follows: methodology is described in Section 2, results are presented in
Section 3 and the conclusions and future work are outlined in Section 4.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Methodology</title>
      <p>The implemented methodology begins with preprocessing the datasets. This includes tasks such
as removing accents, standardizing text to lowercase, eliminating punctuation, special characters,
numbers, and stopwords. Subsequently, we identified eight specific categories in the labeled text:
Gene, NucleotideChange-BaseChange, DNAMutation, Disease, OtherMutation, Transcript, SNP and
DNAAllele. Based on these categories, the model architecture was defined as a sequential neural
network.</p>
      <p>This network incorporates embedding layers to densely represent the text, followed by bidirectional
LSTM layers to capture contextual information in both directions of the text. Additional dense layers
with ReLU activation are included to learn nonlinear representations, along with a softmax activation
output layer for multiclass classification of named entities.</p>
      <p>The model’s architecture includes two LSTM layers, each configured with distinct parameters. The
ifrst LSTM layer is bidirectional with 64 units and return_sequences=True, enabling the capture of
contextual information in both directions of the temporal sequence. The second LSTM layer, also
bidirectional but with 32 units, complements this structure for further refinement of learning. Both
LSTM layers are encapsulated within the Bidirectional wrapper, facilitating efective bidirectional
connections in sequence modeling. This configuration was selected to explore and compare the impact
of diferent memory capacities and sequential learning on model performance.</p>
      <p>After defining the architecture, the model is compiled using the sparse_categorical_crossentropy
loss function, suitable for multiclass classification, and the Adam optimizer to optimize neural network
weights. Following compilation, the model is trained on the training data. During training, the model
adjusts its internal parameters to minimize the loss function and enhance accuracy in predicting input
data.</p>
      <p>In conclusion, this approach enables analysis and classification of specific entities in the labeled corpus,
contributing to the discovery of pertinent information in text pertaining to genetics and molecular
biology.</p>
    </sec>
    <sec id="sec-3">
      <title>3. Results</title>
      <p>The dataset comprises the translation and manual curation of the documents from the tmVar32
annotations (PubMed3 abstracts) with their associated diseases and symptoms, which are presented in Table
1.</p>
      <p>When training our LSTM model on the entire training dataset and subsequently testing it on the
test dataset provided by Agüero-Torales et al., 2024 [6], we achieved a precision score of 0.60, placing
us sixth among all participants. However, our F1 score was 0.30 and recall was 0.20, placing us last
compared to all participants. During the tests conducted, initially with 10 epochs, we concluded that
adding 40 epochs and some additional layers to the model resulted in lower precision compared to the
results obtained in the development phase, where we achieved a precision of 0.64, an F1 score of 0.33,
and a recall of 0.22.</p>
      <p>In Table 2, the results obtained by each participant in the task of iberLEF 2024 are shown. Our results
are marked in bold with the nickname Antares-Amazel.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Conclusions and Future Work</title>
      <p>In this article, the proposal was to use an LSTM network for Named Entity Recognition (NER) in texts
related to genomic variants and diseases, utilizing data from the GenoVarDis challenge of iberLEF 2024
[6]. The reported results show a precision of 0.60%, an F1 score of 0.30%, and a recall of 0.20%, indicating
a moderate performance of the model in this specific task.</p>
      <p>However, the low F1 score, and recall suggest that the model faces dificulties in capturing all relevant
entities in the test data, reflecting the inherent complexity and linguistic diversity in this specialized
ifeld.</p>
      <p>As future work, it is suggested to improve the model architecture using advanced approaches that
consider contextual and semantic relationships in biological texts, enrich the dataset with more labeled
and diverse examples, apply data augmentation techniques to enhance model training, and explore
hybrid or ensemble models to improve the precision and generalization capability of the NER system in
the domain of genomic variants and related diseases.</p>
    </sec>
    <sec id="sec-5">
      <title>5. Acknowledgments</title>
      <p>This work was carried out at the Ontological Engineering Laboratory at the Benemerita Universidad
Autonoma de Puebla, under the guidance of Ph.D. Mireya Tovar Vidal, who provided all necessary
resources.
[4] V. Moonsamy, X. Zhang, J. Baguley, Convolutional neural networks for named entity recognition
in clinical text., Proceedings of the 2018 IEEE International Conference on Bioinformatics and
Biomedicine (BIBM), 548-551. https://ieeexplore.ieee.org/document/8621392 (2018).
[5] G. Lample, M. Ballesteros, S. Subramanian, K. Kawakami, C. Dyer, Neural architectures for named
entity recognition, arXiv preprint arXiv:1603.01360 (2016).
[6] M. M. Agüero-Torales, C. Rodríguez Abellán, M. Carcajona Mata, J. I. Díaz Hernández, M. Solís López,
A. Miranda-Escalada, S. López-Alvárez, J. Mira Prats, C. Castaño Moraga, D. Vilares, L. Chiruzzo,
Overview of genovardis at iberlef 2024: Ner of genomic variants and related diseases in spanish,
Procesamiento del Lenguaje Natural 73 (2024).
[7] L. Chiruzzo, S. M. Jiménez-Zafra, F. Rangel, Overview of IberLEF 2024: Natural Language Processing
Challenges for Spanish and other Iberian Languages, in: Proceedings of the Iberian Languages
Evaluation Forum (IberLEF 2024), co-located with the 40th Conference of the Spanish Society for
Natural Language Processing (SEPLN 2024), CEUR-WS.org, 2024.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>X.</given-names>
            <surname>Zeng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Luo</surname>
          </string-name>
          ,
          <article-title>Machine learning and natural language processing for genomic variants information extraction</article-title>
          , https://www.mdpi.com/2073-4425/11/3/323 11 (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>S.</given-names>
            <surname>Locke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Bashall</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Al-Adely</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Moore</surname>
          </string-name>
          ,
          <string-name>
            <surname>A</surname>
          </string-name>
          . Wilson,
          <string-name>
            <given-names>G. B.</given-names>
            <surname>Kitchen</surname>
          </string-name>
          ,
          <source>Natural language processing in medicine: a review</source>
          ,
          <source>Trends in Anaesthesia and Critical Care</source>
          <volume>38</volume>
          (
          <year>2021</year>
          )
          <fpage>4</fpage>
          -
          <lpage>9</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>S.</given-names>
            <surname>Naseer</surname>
          </string-name>
          ,
          <string-name>
            <surname>M. M. Ghafoor</surname>
            ,
            <given-names>S. bin Khalid</given-names>
          </string-name>
          <string-name>
            <surname>Alvi</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Kiran</surname>
            ,
            <given-names>S. U.</given-names>
          </string-name>
          <string-name>
            <surname>Rahmand</surname>
          </string-name>
          , G. Murtazae, G. Murtaza,
          <article-title>Named entity recognition (ner) in nlp techniques, tools accuracy and performance</article-title>
          .,
          <source>Pakistan Journal of Multidisciplinary Research</source>
          <volume>2</volume>
          (
          <year>2021</year>
          )
          <fpage>293</fpage>
          -
          <lpage>308</lpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>