<!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>PMOTE-UC-CUJAE at Rest-Mex 2025: Evaluation of Probabilistic Data Augmentation Models for Mining Mexican Tourist Reviews</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Ireimis Leguen-de-Varona</string-name>
          <email>ireimis.leguen@reduc.edu.cu</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Julio Madera</string-name>
          <email>julio.madera@reduc.edu.cu</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Alfredo Simon-Cuevas</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Leonardo Lastre Figueroa</string-name>
          <email>leonardo.lastre@reduc.edu.cu</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yoan Martínez-López</string-name>
          <email>yoan.martinez@plenitas.com</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Plénitas</institution>
          ,
          <addr-line>C/ Le Corbusier, 14005 Córdoba</addr-line>
          ,
          <country country="ES">Spain</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>University of Camagüey Ignacio Agramonte Loynaz</institution>
          ,
          <addr-line>Camagüey</addr-line>
          ,
          <country country="CU">Cuba</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>University of Cordoba</institution>
          ,
          <addr-line>Cordoba</addr-line>
          ,
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2025</year>
      </pub-date>
      <abstract>
        <p>This paper presents the contribution of the PMOTE-UC-CUJAE team to the 2025 edition of the Rest-Mex shared task, focused on sentiment polarity classification in Spanish-language tourist reviews related to Mexico's Magical Towns. We propose a strategy based on probabilistic data augmentation techniques, employing covariance matrix estimation via the Ledoit-Wolf method, alongside Lasso regression and Elastic Net, applied to CLS embeddings generated using the RoBERTa-base-bne model.The resulting balanced datasets were used to train lightweight multilayer perceptron (MLP) classifiers, avoiding the need for computationally intensive transformer finetuning. Despite technical limitations that restricted our participation to a single subtask, the results demonstrate significant improvements over the baseline in key metrics such as Macro F1 for polarity. Notably, our models achieved balanced performance across all sentiment classes, including those with fewer examples, confirming the efectiveness of probabilistic oversampling in imbalanced contexts.These findings highlight the potential of probabilistic data augmentation methods for multilingual sentiment analysis tasks and reinforce the feasibility of eficient, transformer-free solutions in resource-constrained environments.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Sentiment Analysis</kwd>
        <kwd>Class Imbalance</kwd>
        <kwd>Probabilistic Data Augmentation</kwd>
        <kwd>RoBERTa</kwd>
        <kwd>Ledoit-Wolf</kwd>
        <kwd>Elastic Net</kwd>
        <kwd>Lasso Regression</kwd>
        <kwd>Mexican Magical Towns</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>One of the most significant challenges in supervised classification problems is class imbalance, which
occurs when one or more classes are represented by considerably fewer examples compared to others.
This situation is common in real-world applications such as fraud detection, medical diagnosis, fault
monitoring, risk analysis, and sentiment analysis—where minority classes are often the most critical.
When models are trained on imbalanced data, they tend to optimize overall accuracy at the expense of
properly detecting minority classes, thus compromising the practical usefulness of the system.</p>
      <p>
        The field of sentiment analysis is not exempt from this phenomenon. Despite recent advances in
transformer-based techniques, there remains a need for methods capable of generating semantically
coherent synthetic data in high-dimensional spaces to efectively address imbalance. Classical
oversampling methods, such as SMOTE [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] and its variants (SMOTE-Tomek Links [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], Borderline-SMOTE,
[
        <xref ref-type="bibr" rid="ref3">3</xref>
        ],SPIDER [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], SMOTE–RSB* [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] ADASYN [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], among others), exhibit limitations when applied to
dense representations like language embeddings, as they were originally designed for low-dimensional
feature spaces.
      </p>
      <p>
        Most of these approaches rely on interpolation between -nearest neighbors to generate new samples.
While this is generally efective in low-dimensional domains, their performance tends to degrade when
dealing with high-dimensional embeddings. To overcome this limitation, a new oversampling strategy
was proposed in 2024 based on shrinkage estimation of the covariance matrix using the Ledoit–Wolf
method—known as SMOTE-COV HD [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. This technique demonstrated promising results in sentiment
classification under high-dimensional imbalance.
      </p>
      <p>
        Probabilistic approaches have thus emerged as competitive alternatives, modeling the statistical
distribution of minority classes based on their embeddings. This work is situated within Subtask 1 of
the Rest-Mex 2025 competition [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ], [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], unlike to others editions [
        <xref ref-type="bibr" rid="ref10 ref11 ref12">10, 11, 12</xref>
        ], aims to automatically
classify the sentiment polarity of Spanish-language tourist reviews, specifically those related to Mexico’s
Magical Towns.
      </p>
      <p>In this context, we propose a strategy based on probabilistic data augmentation using covariance
matrix estimation via the Ledoit–Wolf method, as well as Lasso regression and Elastic Net. Our approach
extracts CLS vector representations from the RoBERTa-base-bne model and generates new synthetic
instances for the minority classes from multivariate distributions. These balanced representations are
then classified using a lightweight multilayer perceptron (MLP), which avoids the need to fine-tune
large transformer models, thereby reducing computational costs and ofering a viable solution for
resource-constrained environments.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Methodology</title>
      <p>1 to 5).
purposes.</p>
      <p>are:
The proposed approach follows a systematic sequence of steps to perform sentiment polarity
classification on tourist reviews using probabilistic data augmentation and lightweight models. The process is
detailed as follows:
1. Dataset Preparation: The dataset is examined to identify the relevant columns for each task,
particularly the text column and the label column indicating the sentiment polarity (ranging from</p>
      <sec id="sec-2-1">
        <title>2. Text</title>
      </sec>
      <sec id="sec-2-2">
        <title>Vectorization:</title>
        <p>Each
review
is tokenized
using
the
pre-trained
model
roberta-base-uncased.</p>
        <p>
          The [CLS] token embedding (a 768-dimensional vector) is
extracted for each review. The label column is mapped to numerical indices for classification
3. Data Augmentation: If class imbalance is detected, one of three probabilistic oversampling
techniques is applied to generate synthetic examples for the minority classes. The three variants
• Ledoit–Wolf (LW) shrinkage: The covariance matrix is estimated with shrinkage to
reduce estimation error [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ]:
        </p>
        <p>
          Σ LW = (1 −  ) + 
where  is the sample covariance matrix,  is a structured target matrix (such as a scaled
identity matrix), and  is a shrinkage parameter.
• Lasso Regression: The synthetic instances are generated based on regression coeficients
obtained by minimizing [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ]:
ˆ = arg min

⎧⎨∑︁ ⎛
+  ∑︁ |  |
regularization parameter that controls the penalty
(1)
(2)
• Elastic Net: Combines Lasso and Ridge penalties to handle correlated features [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ]:
        </p>
      </sec>
      <sec id="sec-2-3">
        <title>4. Classifier Training:</title>
        <p>A lightweight Multilayer Perceptron (MLP) is trained on the balanced
dataset. The data is split into 80% for training and 20% for testing. During training, the loss and
accuracy are monitored, and Macro F1-scores are calculated on the test set.
5. Model Persistence: After training, the MLP weight dictionary and a JSON file mapping the class
labels to indices are saved for later use.</p>
        <p>and embedding pipeline and predicting sentiment classes.
6. Deployment: These files are then used to classify new review data, replicating the tokenization
This pipeline allows eficient classification without transformer fine-tuning while leveraging
semantically coherent synthetic samples to improve the performance of the model under severe class
imbalance.</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Results</title>
      <p>A detailed comparison between our three submitted systems (labeled as HM) and the reference baseline
system (labeled as BL) for Subtask 1 of Rest-Mex 2025 is shown in Table 1. This subtask focuses on
sentiment polarity classification of tourist reviews. The table reports the overall performance in terms
of Macro F1 and Accuracy, along with F1 scores for each sentiment class (from 1 to 5), providing a
clearer picture of how each method handles class imbalance.</p>
      <p>Run
PMOTE-UC-CUJAE_1
PMOTE-UC-CUJAE_2
PMOTE-UC-CUJAE_3
Baseline</p>
      <p>Place
HM
HM
HM
BL</p>
      <p>Method
Ledoit-Wolf</p>
      <p>Lasso
ElasticNet
Baseline</p>
      <p>Macro F1 Accuracy F1_C1 F1_C2 F1_C3 F1_C4 F1_C5
0.4087
0.3783
0.3708
0.1584
61.41%
61.57%
most balanced performance.
• Elastic Net performed well in classes 2 (0.3464) and 3 (0.3275), though with slightly lower F1 for
class 1.
• Lasso regression also maintained consistent F1s above 0.28 for minority classes, highlighting its
reliability in similar tasks.</p>
      <p>These results confirm that the three probabilistic data augmentation methods allowed the MLP
classifiers to learn more representative patterns across all sentiment categories, particularly for
underrepresented ones. Unlike the reference system, our models achieved consistent results without relying
solely on the dominant class.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Conclusions and Future Work</title>
      <p>This work presents a probabilistic data augmentation framework designed to address polarity
classification in highly imbalanced contexts, such as the Rest-Mex 2025 task. By using regularized covariance
estimators (Ledoit–Wolf), Lasso regression, and Elastic Net, we generated synthetic examples for
minority classes based on the statistical structure of RoBERTa CLS embeddings, improving distribution
without introducing semantic noise.</p>
      <p>The experimental results validate the efectiveness of this strategy: the Ledoit–Wolf-based variant
achieved the highest Macro F1 score (0.4087), significantly outperforming the reference system (0.1584)
and showing balanced performance across all polarity classes. Although the Lasso and Elastic Net
models also yielded competitive results, the superior performance of Ledoit–Wolf highlights the benefits
of directly modeling global covariance structure in high-dimensional spaces.</p>
      <p>Beyond classification accuracy, this approach greatly reduces computational costs. Unlike transformer
ifne-tuning, which requires extensive computational resources, our system uses a lightweight
MLPbased classifier, making it a practical solution for real-world sentiment analysis scenarios in tourism
and related domains.</p>
      <p>Future work will focus on:
• Extending the approach to other multilingual or multimodal datasets where class imbalance is
also critical.
• Exploring block-structured or hierarchical covariance estimation to improve the scalability of the</p>
      <p>Ledoit–Wolf method.
• Incorporating semantic validation or diversity constraints during synthetic generation to enhance
coverage and reduce redundancy.
• Evaluating the approach in few-shot or zero-shot learning contexts, where synthetic generation
may be crucial in the absence of labeled data.</p>
      <p>This study reinforces the role of probabilistic data augmentation as a robust, scalable, and interpretable
strategy to tackle imbalanced sentiment classification in complex domains.</p>
    </sec>
    <sec id="sec-5">
      <title>Acknowledgments</title>
      <p>We would like to express our sincere gratitude to the organizers of Rest-Mex 2025 for designing and
coordinating this valuable shared task. Competitions of this nature not only promote research in
lowresource languages and real-world applications, but also foster academic collaboration, methodological
exchange, and the development of practical solutions in the field of Natural Language Processing. We
especially appreciate the opportunity to participate and contribute to the scientific community through
this platform.</p>
      <p>We also thank the National Program of Science and Technology PN223LH004: Automation, Robotics
and Artificial Intelligence, of the Ministry of Science, Technology and Environment of Cuba, for
supporting this work under project PN223LH004-038: Theoretical contributions to AI in the management
of complex data problems.</p>
    </sec>
    <sec id="sec-6">
      <title>Declaration on Generative AI</title>
      <p>We declare that the present manuscript has been written entirely by the authors and that no generative
artificial intelligence tools were used in its preparation, drafting, or editing.</p>
    </sec>
    <sec id="sec-7">
      <title>Online Resources</title>
      <p>The results and oficial rankings of the shared task can be accessed through the following link:
• Rest-Mex 2025 Results</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>N.</given-names>
            <surname>Chawla</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Bowyer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Hall</surname>
          </string-name>
          , W. Kegelmeyer, Smote:
          <article-title>Synthetic minority over-sampling technique</article-title>
          ,
          <source>Journal of Artificial Intelligence Research</source>
          <volume>16</volume>
          (
          <year>2002</year>
          )
          <fpage>321</fpage>
          -
          <lpage>357</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>G.</given-names>
            <surname>Batista</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Prati</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Monard</surname>
          </string-name>
          ,
          <article-title>A study of the behavior of several methods for balancing machine learning training data</article-title>
          ,
          <source>ACM SIGKDD Explorations Newsletter</source>
          <volume>6</volume>
          (
          <year>2004</year>
          )
          <fpage>20</fpage>
          -
          <lpage>29</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>H.</given-names>
            <surname>Han</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Mao</surname>
          </string-name>
          ,
          <article-title>Borderline-smote: A new over-sampling method in imbalanced datasets learning</article-title>
          ,
          <source>in: Proceedings of the International Conference on Intelligent Computing (ICIC05)</source>
          ,
          <year>2005</year>
          , pp.
          <fpage>878</fpage>
          -
          <lpage>887</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>J.</given-names>
            <surname>Stefanowski</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Wilk</surname>
          </string-name>
          ,
          <article-title>Selective pre-processing of imbalanced data for improving classification performance</article-title>
          ,
          <source>in: DaWaK</source>
          <year>2008</year>
          , Turin,
          <year>2008</year>
          , pp.
          <fpage>283</fpage>
          -
          <lpage>292</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>E.</given-names>
            <surname>Ramentol</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Herrera</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Bello</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Caballero</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Sánchez</surname>
          </string-name>
          , Edición de conjuntos de
          <article-title>entrenamiento no balanceados usando operadores genéticos y conjuntos aproximados</article-title>
          , in: Universidad de Camagüey,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>H.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Bai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Garcia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <article-title>Adasyn: Adaptive synthetic sampling approach for imbalanced learning</article-title>
          ,
          <source>in: IEEE International Joint Conference on Neural Networks (IJCNN)</source>
          ,
          <year>2008</year>
          , pp.
          <fpage>1322</fpage>
          -
          <lpage>1328</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>I.</given-names>
            <surname>Leguen-de Varona</surname>
          </string-name>
          , J. Madera,
          <string-name>
            <given-names>H.</given-names>
            <surname>Gonzalez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Tubex</surname>
          </string-name>
          , T. Verdonck,
          <article-title>Oversampling method based on covariance matrix estimation in high-dimensional imbalanced classification</article-title>
          ,
          <source>in: Progress in Artificial Intelligence and Pattern Recognition</source>
          , Springer,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>M.</given-names>
            <surname>Á</surname>
          </string-name>
          .
          <article-title>Álvarez-Carmona, Á</article-title>
          . Díaz-Pacheco,
          <string-name>
            <given-names>R.</given-names>
            <surname>Aranda</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. Y.</given-names>
            <surname>Rodríguez-González</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Bustio-Martínez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Herrera-Semenets</surname>
          </string-name>
          ,
          <article-title>Overview of rest-mex at iberlef 2025: Researching sentiment evaluation in text for mexican magical towns</article-title>
          , volume
          <volume>75</volume>
          ,
          <year>2025</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>J.</given-names>
            <surname>Á</surname>
          </string-name>
          .
          <string-name>
            <surname>González-Barba</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Chiruzzo</surname>
            ,
            <given-names>S. M.</given-names>
          </string-name>
          <string-name>
            <surname>Jiménez-Zafra</surname>
          </string-name>
          ,
          <article-title>Overview of IberLEF 2025: Natural Language Processing Challenges for Spanish and other Iberian Languages, in: Proceedings of the Iberian Languages Evaluation Forum (IberLEF 2025), co-located with the 41st Conference of the Spanish Society for Natural Language Processing (SEPLN 2025), CEUR-WS</article-title>
          .org,
          <year>2025</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>M.</given-names>
            <surname>Á</surname>
          </string-name>
          .
          <string-name>
            <surname>Álvarez-Carmona</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Aranda</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Arce-Cárdenas</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Fajardo-Delgado</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Guerrero-Rodríguez</surname>
            ,
            <given-names>A. P.</given-names>
          </string-name>
          <string-name>
            <surname>López-Monroy</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Martínez-Miranda</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          <string-name>
            <surname>Pérez-Espinosa</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Rodríguez-González</surname>
          </string-name>
          ,
          <article-title>Overview of rest-mex at iberlef 2021: Recommendation system for text mexican tourism</article-title>
          ,
          <source>Procesamiento del Lenguaje Natural</source>
          <volume>67</volume>
          (
          <year>2021</year>
          ). doi:https://doi.org/10.26342/2021-67-14.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>M.</given-names>
            <surname>Á</surname>
          </string-name>
          .
          <article-title>Álvarez-Carmona, Á</article-title>
          . Díaz-Pacheco,
          <string-name>
            <given-names>R.</given-names>
            <surname>Aranda</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. Y.</given-names>
            <surname>Rodríguez-González</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Fajardo-Delgado</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Guerrero-Rodríguez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Bustio-Martínez</surname>
          </string-name>
          ,
          <article-title>Overview of rest-mex at iberlef 2022: Recommendation system, sentiment analysis and covid semaphore prediction for mexican tourist texts</article-title>
          ,
          <source>Procesamiento del Lenguaje Natural</source>
          <volume>69</volume>
          (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>M.</given-names>
            <surname>Á</surname>
          </string-name>
          .
          <article-title>Álvarez-Carmona, Á</article-title>
          . Díaz-Pacheco,
          <string-name>
            <given-names>R.</given-names>
            <surname>Aranda</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. Y.</given-names>
            <surname>Rodríguez-González</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Bustio-Martínez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Muñis-Sánchez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. P.</given-names>
            <surname>Pastor-López</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Sánchez-Vega</surname>
          </string-name>
          ,
          <article-title>Overview of rest-mex at iberlef 2023: Research on sentiment analysis task for mexican tourist texts</article-title>
          ,
          <source>Procesamiento del Lenguaje Natural</source>
          <volume>71</volume>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>O.</given-names>
            <surname>Ledoit</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Wolf</surname>
          </string-name>
          ,
          <article-title>The power (non) linear shrinking: A review and guide to covariance matrix estimation</article-title>
          ,
          <source>Journal of Multivariate Analysis</source>
          (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Lu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Yin</surname>
          </string-name>
          ,
          <article-title>Applying logistic lasso regression for the diagnosis of atypical crohn's disease, Computers in Biology and Medicine (</article-title>
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>T.</given-names>
            <surname>Kovács</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ruckstuhl</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Obrist</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Bühlmann</surname>
          </string-name>
          ,
          <article-title>Graphical elastic net and target matrices: Fast algorithms and software for sparse precision matrix estimation</article-title>
          ,
          <source>Journal of Computational and Graphical Statistics</source>
          (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>