<!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>
      <journal-title-group>
        <journal-title>P. Marco);</journal-title>
      </journal-title-group>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>ELiRF at ClinAIS Task: Automatic Identification of Sections in Clinical Documents</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Pere Marco</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Maria Jose Castro-Bleda</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Encarna Segarra</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Lluis Felip Hurtado</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>VRAIN: Valencian Research Institute for Artificial Intelligence, Universitat Politècnica de València</institution>
          ,
          <addr-line>Camí de Vera s/n, València, 46020</addr-line>
          ,
          <country country="ES">Spain</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>ValgrAI: Valencian Graduate School and Research Network of Artificial Intelligence, Universitat Politècnica de València</institution>
          ,
          <addr-line>Camí de Vera s/n, València, 46020</addr-line>
          ,
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2023</year>
      </pub-date>
      <volume>000</volume>
      <fpage>0</fpage>
      <lpage>0003</lpage>
      <abstract>
        <p>This paper presents our participation in the ClinAIS task of the IberLEF 2023. We approach the automatic identification of sections in unstructured Spanish clinical documents task as a word sequence classification problem, where the assigned label of each word determines the class of the segment to which it belongs. We use a large-scale biomedical Spanish language model that has been trained from scratch. During the fine-tuning phase, our system assigns to each word the label corresponding to the section to which it belongs. We apply a data augmentation technique based on back-translation in order to introduce variations in phrasing and word choice. We make a hyperparameter search following two diferent strategies. We present a total of 5 systems, which are the result of diferent combinations of hyperparameter search strategies and the utilization of data augmentation. The achieved results of our models are highly competitive, ranking us in the first position for this task.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Natural Language Processing</kwd>
        <kwd>Sequence Labelling</kwd>
        <kwd>Transformers-based Models</kwd>
        <kwd>Spanish Clinical Documents</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>Identifying medical sections in the patient narratives documented in unstructured clinical
documents can help with other processing tasks. For example, it could be applied to the
recognition of biomedical named entities, which can be completely diferent depending on
the section they are in. It could also help physicians find information easily, or support an
information retrieval system to return specific information.</p>
      <p>
        In the Pomares-Quimbaya et al. work [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] a systematic review of the approaches until 2018 to
identify sections within clinical narratives from Electronic Health Records (EHR) was presented.
The objective of this work was to report the results of a systematic review concerning approaches
aimed at identifying sections in the narrative content of EHR, using both automatic and
semiautomatic methods. Their analysis showed that the most popular Machine Learning methods
were Conditional Random Fields (CRF) and Support Vector Machine (SVM). All these works
rely on manually created training and test sets, at least partially. Zhou and Li reported in their
work [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] a CRF model that combined both lexical and structural features to facilitate section
identification for Information Extraction from Chinese Medical Literature. They reported
experiments on a human-curated asthma dataset showing that their approach achieved better
performance than SVM models.
      </p>
      <p>
        Rosenthal et al. [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] proposed using sections from the medical literature (e.g., textbooks,
journals, web content) that feature content similar to that found in EHR sections. Their approach
used data from a diferent kind of source where labels were provided without the need of a
time-consuming annotation efort. They used this data to train two models: a recurrent neural
network model and a BERT-based model. They applied the learned models along with source
data via transfer learning to predict sections.
      </p>
      <p>
        More recently, Carrino et al. [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] presented the first large-scale biomedical Spanish language
models trained from scratch, using a large biomedical corpus for a total of 1.1B tokens and
an EHR corpus of 95M tokens. They fine-tuned the models on three clinical Named Entity
Recognition (NER) tasks and compared them with both general-domain and other available
Spanish clinical models. The results showed the superiority of their models across the NER
tasks, making them competitive candidates for clinical Natural Language Processing (NLP)
applications.
      </p>
      <p>
        In our work, we approach the automatic identification of sections in unstructured Spanish
clinical documents task as a word sequence classification problem, where the assigned label of
each word determines the class of the segment to which it belongs. To implement our system,
we take as a starting point the pretrained model ‘PlanTL-GOB-ES/bsc-bio-ehr-es’, created by
Carrino et al. [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. For fine-tuning, our system assigns to each word the label corresponding
to the section to which it belongs. We made a hyperparameter search following two diferent
strategies. We apply a data augmentation technique based on back-translation (translating the
text into another language and then translating it back to the original language) in order to
introduce variations in phrasing and word choice, helping the model learn diferent ways of
expressing the same meaning. We present five systems that result from diferent combinations
of hyperparameter search strategies and the use of data augmentation.
      </p>
      <p>The rest of the paper is organized as follows: in Sections 2 and 3, we present the task, the
dataset and the used evaluation metric; in Section 4, the concept of data augmentation; in
Section 5, we discuss the proposed system. Then, Section 6 presents the results and error
analysis. Finally, we conclude the work in Section 7 and describe what further has to be done.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Task Description</title>
      <p>
        Labeling sequences is a common task in the domain of NLP and refers to the process of assigning
specific labels or tags to individual elements or tokens within a sequence of text. This task is
also known as sequence labeling or sequence tagging. The objective of the ClinAIS task [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ],
presented at IberLEF 2023 [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], is to address the challenge of automatically identifying sections
in unstructured Spanish clinical documents. This task is a combination of both segmentation
and classification, where the goal is to segment the notes into diferent continuous sections and
correctly classify them based on a predefined set of categories. The task focuses on identifying
seven predefined medical sections: Present Illness (PI), Derived from/to (D), Past Medical History
(MH), Family history (FH), Exploration (EX), Treatment (T), and Evolution (EV).
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. The Dataset and Evaluation Metric</title>
      <p>
        The organizers provided a subset of the CodiEsp [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] corpus for the ClinAIS task. The CodiEsp is
a collection of 1,000 unstructured Spanish clinical case reports from diferent medical specialties.
An additional collection of 2,751 unannotated documents was also provided as a background set.
The present corpus is a randomly-selected subset of the background CodiEsp corpus, consisting
of 1,038 distinct reports. Table 1 and Figure 1 present some of its relevant statistics. As seen in
the histograms of Figure 1, it is a very unbalanced dataset. A more detailed description of the
dataset is presented in [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ].
      </p>
      <p>
        The task of identifying sections in unstructured clinical notes presents some characteristics
that must be taken into account to establish its evaluation. For instance, since the end of one
section is always connected to the beginning of another, commonly used evaluation methods
would consider two sections as incorrect even if there is a single word error in one of the
boundaries. Moreover, the sections are not delimited by paragraphs, lines, or phrases, meaning
that a sentence may have more than one section, thus increasing the dificulty of the
segmentation task. The organizers conducted a thorough analysis of existing metrics and designed
the ‘B2 evaluation metric’, which is an adaptation of the ‘boundary distance B’ developed by C.
Fournier [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], as a means of better evaluating the actual performance in the task.
      </p>
      <p>B2 metric employs a variation of the editing distance with three operations (addition/deletion,
substitution, and transposition) and is able to discern segment types. The main advantage is the
introduction of the transpose operation, in which the boundary between two sections can be
moved by a limited and configurable number of borders instead of performing an insert and a
delete operation.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Data Augmentation</title>
      <p>
        Data augmentation is a technique commonly employed in machine learning to artificially
increase the size of a training dataset by applying various transformations or modifications to
the existing data. The goal of data augmentation is to enhance the model’s ability to generalize
and improve its performance. NLP-specific techniques focus on modifying the text while
preserving its meaning, coherence, and grammaticality. Common data augmentation techniques
applied in NLP include synonym replacement, random word insertion, deletion or swapping,
and also back-translation [
        <xref ref-type="bibr" rid="ref10 ref11">10, 11</xref>
        ]. We used this last technique, that is, translating the text into
another language and then translating it back to the original language in order to introduce
variations in the phrasing and word choice, helping the model learn diferent ways of expressing
the same meaning.
      </p>
      <p>
        We used two diferent automatic translators: Translation1 is performed by using DeepL (https:
//www.deepl.com/translator). Each section of the training dataset undergoes three translation
steps: Spanish to American English, then English to German, and back to Spanish again.
Translation2 is performed by using a set of bilingual OPUS-MT translators [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] trained from
the Tatoeba Translation Challenge dataset [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ]. In this case, each section undergoes two rounds
of back-translation: Spanish to English, and back to Spanish; then Spanish to Catalan, and back
to Spanish again.
      </p>
      <p>We calculated the Levenshtein distance between the set of original sections in the training
data and their corresponding translations as a measure of the dissimilarity between the two sets.
The analysis, presented in Table 2, shows that Translation2 exhibits a higher level of diferences
and variability compared to the texts of Translation1.</p>
    </sec>
    <sec id="sec-5">
      <title>5. System Description</title>
      <sec id="sec-5-1">
        <title>5.1. Overview of the System</title>
        <p>For generating our solution, we approach this text segmentation task as a word sequence
classification problem, where the assigned label of each word determines the class of the
segment to which it belongs.</p>
        <p>
          To implement our system we decided to start from the pretrained model created by Carrino
et al. [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ], ‘PlanTL-GOB-ES/bsc-bio-ehr-es’. For pretraining this model, the authors used two
corpora of very diferent sizes and natures: an EHR corpus and a biomedical one. The ‘EHR
corpus’ contains 95M tokens from more than 514K clinical documents (including discharge
reports, clinical course notes and X-ray reports). The ‘biomedical corpus’ includes Spanish data
from a variety of sources for a total of 1.1B tokens across 2,5M documents. The models presented
in their work were pretrained from scratch employing a RoBERTa base architecture [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ] with
12 self-attention layers.
        </p>
        <p>For fine-tuning, our system assigns to each word the label corresponding to the section to
which it belongs. For example, given the following word sequence:
"Un paciente varón de 25 años miope magno es remitido con el diagnóstico de
membrana neovascular subretiniana (MNVSR) en el ojo izquierdo (OI)."
The corresponding groundtruth output would be:</p>
        <p>"PI PI PI PI PI PI PI PI D D D D D D D D D D D D D D D"
Section class PI, denoting ‘Present Illness’, and class D, representing ‘Derived from/to’. Finally,
before evaluation, this output label sequence is converted to the output segmented format of
the competition.</p>
        <p>Since the model accepts inputs of length 512 tokens, we separated the documents into
consecutive blocks of 512 tokens, without overlap nor excluding words of the document. After
doing some preliminary tests using other approaches, such as considering some overlap between
consecutive blocks, we discarded them since they increased the complexity of the problem
without improving the results. Another important aspect to mention is the use of some heuristics
to improve the results. First, expressions made up of 2 or 3 words with their own meaning
and that constitute a section by themselves may appear in the documents, for this reason, we
considered sections of length greater than or equal to 2 words, thus allowing the formation
of these structures. However, we removed from the results the sections consisting of a single
word that were considered as part of the previous section. Second, as the model tokenizer uses
subwords, in some cases there are words that are assigned diferent labels. In these cases, the
ifrst label was assigned to this word.</p>
      </sec>
      <sec id="sec-5-2">
        <title>5.2. Hyperparameter Optimization</title>
        <p>For the model training, we made a hyperparameter search following two diferent strategies. In
the first one, we made an exhaustive search going through all possible combinations among
pre-established lists of values for diferent parameters and selecting the best performance based
Parameter</p>
        <p>System 1
Hyper param- Original
eter search training set
data
Training data
Epochs
Learning rate
Batch size
Optimizer
Gradient
accum. steps
Weight decay
Lr scheduler</p>
        <p>Original
training set
22
1e-04
8
1
0
Adamax</p>
        <p>Adamax
22
1e-04
8
1
0
System 2
Original
training set</p>
        <p>System 3
Original
training set
Original Original
training set + training set
Translation1</p>
        <p>System 4</p>
        <p>System 5
Original Original
training set + training set +
Translation1 Translation2
Original Original
training set + training set +</p>
        <p>Translation1 Translation2
20
16
4
1.42e-04
AdamW
6.37e-03
Linear
39
16
16
1.17e-04
AdamW
1.06e-03
Linear
42
4
2
8.48e-05
AdamW
3.73e-03
Linear
on the macro F1 metric results on the validation set. The parameters used were: Adam, SGD,
and Adamax as optimizers; learning rates of 1e-4, 1e-5, 1e-6, and 1e-7; and batch sizes of 4, 8,
and 16. For the SGD optmizer we assigned 0.9 as momentum value. The rest of parameters
were left at default value of each optimizer (see https://pytorch.org/docs/stable/generated/
torch.optim.Adam.html, https://pytorch.org/docs/stable/generated/torch.optim.SGD.html, https:
//pytorch.org/docs/stable/generated/torch.optim.Adamax.html).</p>
        <p>
          In the second strategy, we decided to use Optuna [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ], for the hyperparameter search based
on the micro F1 results on the validation set. The parameters indicated to Optuna were: the
number of epochs, from 10 to 60; the learning rate, from 1e-3 to 1e-7; batch size, among 4, 8, 16,
and 32; gradient accumulation steps, among 2, 4, 8, 16, and 32; weight decay, from 1e-4 to 1.5e-2;
and earning rate schedule type, between constant and linear. The remaining parameters were
kept at the Hugging Face Trainer default values (see https://huggingface.co/docs/transformers/
main_classes/trainer#transformers.TrainingArguments).
        </p>
        <p>The unspecified parameters in both strategies were left at pretrained model default values
for training (https://huggingface.co/PlanTL-GOB-ES/bsc-bio-ehr-es/blob/main/config.json).
Finally, we present five systems that result from diferent combinations of hyperparameter
search strategies and the use of data augmentation. The five systems are described in Table 3,
where Systems 1 and 2 were obtained using the exhaustive search optimization, and Systems 3,
4, and 5 were obtained by Optuna hyperparameter search.</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>6. Experimental Results and Discussion</title>
      <p>Our results are presented in Table 4. The best outcome is achieved by System 5, with a test
score of 0.8022. The second system obtains a nearly identical score of 0.8008. The remaining
three systems perform in a very similar manner. These results can be visualized in Figure 2,
where the systems are ranked according to the scores obtained in the validation set. In all cases,
the test results are slightly lower than the validation results, as the systems were optimized
using the validation data. Furthermore, the positive influence of data augmentation can be
observed, particularly when using the data obtained from the second translator. As identified in
the analysis of Section 4, Translator 1 did not introduce the necessary diference between the
original text and the translation.</p>
      <p>Lastly, when conducting a study of the F1-score per class, the results shown in Table 5 are
obtained. Systems 5 and 2 demonstrate substantial enhancements in the performance of the
two least represented classes, ultimately establishing them as the top-performing systems.</p>
    </sec>
    <sec id="sec-7">
      <title>7. Conclusions and Future Work</title>
      <p>This study presents our methodologies for automatically identifying sections within
unstructured Spanish clinical documents. The task is approached as a word sequence classification
problem, where each word is assigned a label to determine its corresponding segment class. To
accomplish this, we utilized a pre-trained model consisting of a large-scale biomedical Spanish
language model that was trained from scratch.</p>
      <p>During the fine-tuning process, we conducted a hyperparameter search employing two
distinct strategies. Additionally, a data augmentation technique based on back-translation
was applied. We introduced five systems that were the outcome of various combinations of
hyperparameter search strategies and the utilization of data augmentation. The performance of
our systems yielded highly competitive results, placing us in the top position for this task.</p>
      <p>The favorable outcomes obtained in this study showcase the feasibility and potential
applicability of the proposed method within real-world scenarios. As a direction for future research, it
would be worthwhile to explore the optimization of the hyperparameter search by incorporating
the B2 metric.</p>
    </sec>
    <sec id="sec-8">
      <title>8. Ethics Statement</title>
    </sec>
    <sec id="sec-9">
      <title>Acknowledgments</title>
      <p>We have not used additional data to those provided by the competition. The pretrained models
used are obtained from HuggingFace models hub, under the Apache License 2.0.
This work is partially supported by MCIN/AEI/10.13039/501100011033, by the "European Union
and “NextGenerationEU/MRR”, and by “ERDF A way of making Europe” under grants
PDC2021120846-C44 and PID2021-126061OB-C41. It is also partially supported by the Generalitat
Valenciana under project CIPROM/2021/023 and PROMETEO/2020/024, and by the Universitat
Politècnica de València under the grant PAID-01-22 for pre-doctoral contracts for the training
of doctors.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>A.</given-names>
            <surname>Pomares-Quimbaya</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Kreuzthaler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Schulz</surname>
          </string-name>
          ,
          <article-title>Current approaches to identify sections within clinical narratives from electronic health records: a systematic review</article-title>
          ,
          <source>BMC Medical Research Methodology</source>
          <volume>19</volume>
          (
          <year>2019</year>
          )
          <article-title>155</article-title>
          . URL: https://doi.org/10.1186/s12874-019-0792-y. doi:
          <volume>10</volume>
          .1186/s12874-019-0792-y.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>S.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <article-title>Section Identification to Improve Information Extraction from Chinese Medical Literature</article-title>
          , in: H.
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>Q.</given-names>
          </string-name>
          <string-name>
            <surname>Fang</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Zeng</surname>
          </string-name>
          , J. Wu (Eds.), Smart Health, Springer International Publishing, Cham,
          <year>2018</year>
          , pp.
          <fpage>342</fpage>
          -
          <lpage>350</lpage>
          . URL: https://doi.org/10.1007/ 978-3-
          <fpage>030</fpage>
          -03649-2_
          <fpage>34</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>S.</given-names>
            <surname>Rosenthal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Barker</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Liang</surname>
          </string-name>
          ,
          <article-title>Leveraging Medical Literature for Section Prediction in Electronic Health Records</article-title>
          ,
          <source>in: Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Hong Kong, China,
          <year>2019</year>
          , pp.
          <fpage>4864</fpage>
          -
          <lpage>4873</lpage>
          . URL: https://aclanthology.org/D19-1492. doi:
          <volume>10</volume>
          .18653/ v1/
          <fpage>D19</fpage>
          -1492.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>C. P.</given-names>
            <surname>Carrino</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Llop</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Pàmies</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gutiérrez-Fandiño</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Armengol-Estapé</surname>
          </string-name>
          ,
          <string-name>
            <surname>J. SilveiraOcampo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Valencia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gonzalez-Agirre</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Villegas</surname>
          </string-name>
          ,
          <article-title>Pretrained biomedical language models for clinical NLP in Spanish</article-title>
          ,
          <source>in: Proceedings of the 21st Workshop on Biomedical Language Processing</source>
          , Association for Computational Linguistics, Dublin, Ireland,
          <year>2022</year>
          , pp.
          <fpage>193</fpage>
          -
          <lpage>199</lpage>
          . URL: https://aclanthology.org/
          <year>2022</year>
          .bionlp-
          <volume>1</volume>
          .19. doi:
          <volume>10</volume>
          .18653/v1/
          <year>2022</year>
          . bionlp-
          <volume>1</volume>
          .
          <fpage>19</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <surname>I. de la Iglesia</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Vivó</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Chocrón</surname>
            , G. de Maeztu,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Gojenola</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Atutxa</surname>
          </string-name>
          , Overview of ClinAIS at IberLEF 2023:
          <article-title>Automatic Identification of Sections in Clinical Documents in Spanish</article-title>
          ,
          <source>Procesamiento del Lenguaje Natural</source>
          <volume>71</volume>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>S. M.</given-names>
            <surname>Jiménez-Zafra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Rangel</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.</surname>
          </string-name>
          <article-title>Montes-y Gómez, Overview of IberLEF 2023: Natural Language Processing Challenges for Spanish and other Iberian Languages, in: Proceedings of the Iberian Languages Evaluation Forum (IberLEF 2023), co-located with the 39th Conference of the Spanish Society for Natural Language Processing (SEPLN 2023), CEURWS</article-title>
          .org,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>A.</given-names>
            <surname>Miranda-Escalada</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gonzalez-Agirre</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Armengol-Estapé</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.</surname>
          </string-name>
          <article-title>Krallinger, Overview of Automatic Clinical Coding: Annotations, Guidelines, and Solutions for non-English Clinical Cases at CodiEsp Track of CLEF eHealth 2020</article-title>
          , in: L.
          <string-name>
            <surname>Cappellato</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Eickhof</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Ferro</surname>
            ,
            <given-names>A</given-names>
          </string-name>
          . Névéol (Eds.), Working Notes of CLEF 2020 -
          <article-title>Conference and Labs of the Evaluation Forum</article-title>
          , Thessaloniki, Greece,
          <source>September 22-25</source>
          ,
          <year>2020</year>
          , volume
          <volume>2696</volume>
          <source>of CEUR Workshop Proceedings, CEUR-WS.org</source>
          ,
          <year>2020</year>
          . URL: https://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>2696</volume>
          /paper_263.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <surname>I. de la Iglesia</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Vivó</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Chocrón</surname>
            , G. de Maeztu,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Gojenola</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Atutxa</surname>
          </string-name>
          ,
          <article-title>An Open Source Corpus and Automatic Tool for Section Identification in Spanish Health Records</article-title>
          ,
          <source>Journal of Biomedical Informatics</source>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>C.</given-names>
            <surname>Fournier</surname>
          </string-name>
          ,
          <article-title>Evaluating Text Segmentation using Boundary Edit Distance, in: ACL 2013 - 51st Annual Meeting of the Association for Computational Linguistics</article-title>
          ,
          <source>Proceedings of the Conference</source>
          , volume
          <volume>1</volume>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>J.</given-names>
            <surname>Wei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Zou</surname>
          </string-name>
          , EDA:
          <article-title>Easy Data Augmentation Techniques for Boosting Performance on Text Classification Tasks</article-title>
          ,
          <source>in: Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Hong Kong, China,
          <year>2019</year>
          , pp.
          <fpage>6382</fpage>
          -
          <lpage>6388</lpage>
          . URL: https://aclanthology.org/D19-1670. doi:
          <volume>10</volume>
          .18653/ v1/
          <fpage>D19</fpage>
          -1670.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>S. S.</given-names>
            <surname>Al-Azzawi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Kovács</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Nilsson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Adewumi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Liwicki</surname>
          </string-name>
          , NLP-LTU at SemEval-2023
          <source>Task</source>
          <volume>10</volume>
          :
          <article-title>The Impact of Data Augmentation and Semi-Supervised Learning Techniques on Text Classification Performance on an Imbalanced Dataset (</article-title>
          <year>2023</year>
          ). arXiv:
          <volume>2304</volume>
          .
          <fpage>12847</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>J.</given-names>
            <surname>Tiedemann</surname>
          </string-name>
          , S. Thottingal,
          <article-title>OPUS-MT - Building open translation services for the World</article-title>
          ,
          <source>in: Proceedings of the 22nd Annual Conferenec of the European Association for Machine Translation (EAMT)</source>
          , Lisbon, Portugal,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>J.</given-names>
            <surname>Tiedemann</surname>
          </string-name>
          ,
          <article-title>The tatoeba translation challenge - realistic data sets for low resource and multilingual MT</article-title>
          ,
          <source>in: Proc. of the 5th Conference on Machine Translation, ACL</source>
          ,
          <year>2020</year>
          , pp.
          <fpage>1174</fpage>
          -
          <lpage>1182</lpage>
          . URL: https://aclanthology.org/
          <year>2020</year>
          .wmt-
          <volume>1</volume>
          .
          <fpage>139</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ott</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Du</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Joshi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Levy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zettlemoyer</surname>
          </string-name>
          , V. Stoyanov,
          <article-title>RoBERTa: A Robustly Optimized BERT Pretraining Approach</article-title>
          , CoRR abs/
          <year>1907</year>
          .11692 (
          <year>2019</year>
          ). arXiv:
          <year>1907</year>
          .11692.
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>T.</given-names>
            <surname>Akiba</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Sano</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Yanase</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Ohta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Koyama</surname>
          </string-name>
          ,
          <article-title>Optuna: A Next-generation Hyperparameter Optimization Framework</article-title>
          ,
          <source>in: Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining</source>
          ,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>