<!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>DiTana-PV at sEXism Identification in Social neTworks (EXIST) Tasks 4 and 6: The Efect of Translation in Sexism Identification</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Aitana Menárguez-Box</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Diego Torres-Bertomeu</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Pattern Recognition and Human Language Technology (PRHLT) Research Center</institution>
          ,
          <country country="ES">Spain</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Valencian Research Institute for Artificial Intelligence (VRAIN)</institution>
          ,
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper details the participation of DiTana-PV team in the sEXism Identification in Social neTworks (EXIST) task at CLEF 2024. Specifically, we focused on Tasks 4 and 6, which involved identifying and categorizing sexism in memes. Our primary objective was to evaluate the efect of machine translation on model performance, as well as to explore data augmentation techniques and task combination strategies. By translating Spanish data to English and leveraging a pretrained BERTweet model fine-tuned for sexism detection, we aimed to improve classification accuracy. This work highlights the potential of translation and data handling techniques to enhance multilingual NLP tasks, contributing to more inclusive and efective AI applications in social media analysis.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Sexim Identification</kwd>
        <kwd>Data Augmentation through Machine Translation</kwd>
        <kwd>Automatic Analysis of Memes</kwd>
        <kwd>Pretrained Models Usage</kwd>
        <kwd>BERTweet</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <sec id="sec-1-1">
        <title>1.1. Task Description</title>
        <p>
          The proposed lab of CLEF 2024 was sEXism Identification in Social neTworks (EXIST) [
          <xref ref-type="bibr" rid="ref1 ref2 ref3">1, 2, 3</xref>
          ]. Between
all the diferent tasks proposed in EXIST, this paper details our team’s (DiTana-PV) participation in
Tasks 4 and 6: sexism identification and categorization in memes, respectively. Given an image (a meme),
these aim to try and classify it as sexist or not sexist as well as which kinds of sexism, if any, are present
from the following: (i) IDEOLOGICAL AND INEQUALITY, (ii) STEREOTYPING AND DOMINANCE,
(iii) OBJECTIFICATION, (iv) SEXUAL VIOLENCE and (v) MISOGYNY AND NON-SEXUAL VIOLENCE.
        </p>
      </sec>
      <sec id="sec-1-2">
        <title>1.2. Data Distribution</title>
        <p>The information provided includes the memes images and their transcriptions into texts, along with
some information about the annotators. We divided the dataset into three diferent partitions: train,
validation and test. Tab. 1 shows the sample distribution of each language.</p>
        <p>In Tab. 2 we can see how each class for Task 4 is distributed along both languages for the train and
validation partitions. As we trained the models with the hard labels there were some samples that half
of the annotators labeled as sexist and the other half as not sexist (tie). After some experimentation,
the best solution found to this situation was to discard the ambiguous samples, considering them noisy
samples.</p>
      </sec>
      <sec id="sec-1-3">
        <title>1.3. Performance Measures</title>
        <p>
          To measure the performance of our proposed systems, the Intermediate Concept Measure (ICM) [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ]
has been chosen as the oficial metric, although F1-score is also provided. ICM is a similarity function
that generalizes Pointwise Mutual Information (PMI), and can be used to evaluate system outputs in
classification problems by computing their similarity to the ground truth categories. These metrics
were computed for the Hard-Hard evaluation as we trained our models with hard labels.
        </p>
      </sec>
    </sec>
    <sec id="sec-2">
      <title>2. Main Objectives of Experiments</title>
      <p>Here we described our main objectives and experimental findings for our participation in this
competition. All this objectives focused on text processing, omitting the part of image processing for the
memes.</p>
      <sec id="sec-2-1">
        <title>2.1. The Efect of Machine Translation</title>
        <p>The main objective of participating in this competition was to develop models that could detect sexism
in memes and categorize it. More specifically, we were interested in how Machine Translation could
afect the model’s performance.</p>
        <p>As Machine Translation has advanced enormously and there are far more resources in English than
in any other language, some minority languages that may not have enough resources to train this kind
of models could benefit from this: the idea of previously translating the content to English and using
any model that was trained with all the available data in English.</p>
        <p>This is an open line of research that we think has lots of future because it could mean a democratization
of the benefits of Machine Learning for all languages, regardless of their available resources.</p>
      </sec>
      <sec id="sec-2-2">
        <title>2.2. The Power of Data</title>
        <p>We also aimed to evaluate how the use of Data Augmentation afects the performance of the models.
Since it is a very widespread technique in the world of Machine Learning, especially in Computer
Vision, but it has been proven that NLP tasks can also take advantage from it.</p>
        <p>As the dataset was unbalanced, as we could see on Tab. 2, another of our objectives was to work with
this type of datasets in which not all classes have the same presence and therefore a series of measures
must be taken to prevent the model from being biased.</p>
      </sec>
      <sec id="sec-2-3">
        <title>2.3. Tasks Combination</title>
        <p>The last of our objectives, specially useful for Task 6, was to see what efect caused the combination of
inferences for both tasks. We wanted to try to help a model used for Task 6 with the predictions of a
model used for Task 4. This will be further explained in the following sections.</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Approaches Used</title>
      <p>In this section we will explain in detail the diferent approaches that best worked for us.</p>
      <sec id="sec-3-1">
        <title>3.1. Using Machine Translation</title>
        <p>After some preliminary experiments we discovered that the results in the English dataset were always
some points higher than in the Spanish dataset, so we decided to automatically translate the Spanish
samples into English samples, assuming the loss of quality that such automatic translation could entail.
This approach was interesting because there are lots of resources in English that could improve our
results.</p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. The Base Model</title>
        <p>
          For both tasks and languages (as we translated the Spanish samples to English), we used as pretrained
model the BERTweet-large-sexism-detector [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ] that was presented to the SemEval-2023 Task 10. It is a
ifne-tuned model of BERTweet-large [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ] on the Explainable Detection of Online Sexism (EDOS) dataset
[
          <xref ref-type="bibr" rid="ref7">7</xref>
          ]. This is intended to be used as a classification model for identifying tweets as sexist or not
sexist. In spite of that, the model me all our needs for the competition because the text in a meme is
quite short, as it is in tweets, so using a model that is trained with shorter texts should be beneficial. It
also gives us a great advantage, not starting from a model that has simply been pretrained on general
tasks, but has also been fine-tuned for tasks in the same domain of the ones in this competition.
        </p>
      </sec>
      <sec id="sec-3-3">
        <title>3.3. Managing the Data</title>
        <p>As seen in Tab. 2 there were two main problems with hard labels: there were some ambiguous ones
and the amount of sexist and not sexist samples was unbalanced. We decided to discard the
ambiguous samples, because taking them into account in the training process just added noise and led
to worse performance. To try and solve the class-imbalance, for Task 4, we applied a weighted-loss
function in order to give more weight to the not sexist class.</p>
        <p>
          In some of the models, we also performed Data Augmentation to increase the amount of training
data. This technique has proven quite good results in the vast majority of Machine Learning tasks and
NLP is not an exception [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ]. In particular, we used BERT contextual embeddings for paraphrasing the
words in the original text. From each sample we generated three new augmented ones and a 30% of the
words were substituted using the nlpaug library [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ].
        </p>
      </sec>
      <sec id="sec-3-4">
        <title>3.4. Combining Inferences</title>
        <p>For Task 6, we trained the models for recognising six diferent labels for each meme: the ones for the
type of sexism detected plus an extra one for not sexism detected at all. As one of our purposes was to
try to combine the information from both tasks, we also focused on training a model for predicting just
the main five labels for the type of sexism inside the meme.</p>
        <p>We would use our inferences from Task 4 to detect if the meme was sexist or not, previously, and
then in case the meme was classified as sexist, the second model would predict what type(s) of sexism
were inside the given meme. This approach, as will be seen further in this paper, has been proven to
work finely.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Models</title>
      <p>In this section there is a description of each one of the six models that were presented to the competition.
All these were fine-tuned for 10 epochs with an NVIDIA RTX 3090 with 24GB. The relevant
hyperparameters are: 8 samples per device, and a learning rate of 5 · 10− 5 with a linear scheduler.</p>
      <sec id="sec-4-1">
        <title>4.1. Task 4 – Classification Models</title>
        <p>For Task 4 we developed 3 diferent models following the diferent approaches explained. For all the
scenarios described, one separate model was trained for each language.</p>
        <p>The first pair of models ( M14) were trained with all the samples from the train partition in English
and in translated Spanish, for the English model we also added the validation partition in translated
Spanish and vice versa. The second set of models (M24) were trained exactly as M14 but we added a
weighted-loss function to correct the explained class-imbalanced. The last pair of models (M34) were
trained as M24 but increasing the training dataset applying Data Augmentation.</p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Task 6 – Categorization Models</title>
        <p>For this task, we developed 5 diferent models, according to the approaches in the previous sections: a
pair for predicting 6 labels, a pair for predicting 5 labels and a single model for predicting six labels
for both languages together. For the first two pairs, there is a model for each language (English and
translated Spanish).</p>
        <p>For the first pair M16, the Spanish model was trained with translated Spanish and the English one
was trained with the English samples. The second pair, M26, follows the same logic but for making
ifve label predictions. The last one M36 is not a pair but a single model which was trained with both
translated Spanish and English samples.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Analysis of the Results</title>
      <p>In this section we will discuss the results obtained for each of the models presented.</p>
      <sec id="sec-5-1">
        <title>5.1. Task 4 – Classification Models</title>
        <p>For the classification models, we can see that just by translating the Spanish samples to English,
combining all of the samples in the training process and using as checkpoint the BERTweet model
already fine-tuned in a sexism detection task, was enough to achieve a good result. Although, as we
can see in the Annex A, it is lower than what was obtained during validation.</p>
        <p>Adding weights to the loss function to gives more importance to the not sexist samples as they
appear fewer times, allowing us to enhance a little bit the model’s performance, as was already proved
during validation.</p>
        <p>When we applied Data Augmentation techniques we got worse results. This was surprising because
during validation for Spanish it improved the results, and for English it got lower results but it was
far more what we won in Spanish than what we lost in English. We hypothesize the reason why
Data Augmentation this is because we already inserted noise in the Spanish samples through Machine
Translation, thus the addition of more noise through paraphrasing with BERT was too much.</p>
      </sec>
      <sec id="sec-5-2">
        <title>5.2. Task 6 – Categorization Models</title>
        <p>For the categorization models in Task 6, the results indicate a varied performance across diferent
approaches. As shown in Table 4, the models trained to predict six labels for each language separately
(M16) achieved the highest performance in terms of ICM-Hard and ICM-Hard Norm metrics, although
its Macro F1 score was slightly lower than that of the M26 models.</p>
        <p>The M16 models, which predicts six labels, performed the best in terms of ICM-Hard and ICM-Hard
Norm. This suggests that having a separate model for each language and focusing on the six distinct
labels allowed the model to better capture the nuances of sexism categorization.</p>
        <p>Interestingly, the M26 models, which was trained to predict five labels, did not outperform the first
models, indicating that removing the not sexist label from the categorization task, together with
the possible error the previous model (as it was a joint prediction) may have introduced, might have led
to a loss of valuable context needed for accurate categorization.</p>
        <p>The single model trained on both English and translated Spanish samples (M36) performed the
worst. This may be due to the increased complexity and noise introduced by combining data from two
languages, even after translation. The challenges of handling translated text, which may not perfectly
capture the original sentiment or nuances, likely contributed to the poorer performance.</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>6. Conclusions and Future Work</title>
      <p>The results obtained from our participation in the sEXism Identification in Social neTworks (EXIST)
competition demonstrate the potential impact of machine translation and data augmentation on improving
model performance for sexism detection and categorization tasks.</p>
      <p>Our experiments highlighted the benefits of translating minority language datasets into English,
utilizing the wealth of available resources and pretrained models in English to enhance performance.
This approach showed significant improvements in classification accuracy, suggesting a promising
direction for future research aimed at democratizing the benefits of machine learning across languages
with fewer resources.</p>
      <p>The implementation of a weighted-loss function efectively addressed class imbalance, further
improving model performance. However, the addition of data augmentation techniques, while beneficial during
validation, did not consistently enhance results in the final evaluation, indicating the need for careful
consideration of noise introduced by such methods, especially when combined with machine-translated
data.</p>
      <p>In Task 6, combining inferences from Task 4 to aid categorization proved to be a viable strategy,
though the overall performance varied across diferent model configurations. This underscores the
complexity of multi-label classification tasks and the importance of tailored model training approaches.</p>
      <p>Overall, this highlights the value of leveraging translation and sophisticated data handling techniques
to improve model accuracy in NLP tasks involving multiple languages. Future work could focus on
further refining these methods, exploring visual-textual integration for meme analysis, and investigating
more robust data augmentation strategies to mitigate noise.</p>
      <p>These contributions provide a foundation for advancing sexism detection in multilingual contexts,
paving the way for more inclusive and efective AI applications in social network analysis.</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgement</title>
      <p>This work is partially supported by the Valencian Graduate School and Research Network of Artificial
Intelligence (ValgrAI).</p>
    </sec>
    <sec id="sec-8">
      <title>A. Validation Results</title>
      <p>In this appendix section illustrate the results that each of the models obtained for our validation partition
of the dataset for each task, distributed by language.</p>
      <sec id="sec-8-1">
        <title>A.1. Task 4 – Classification Models</title>
        <p>As we can see in Tab. 5 the starting pint was not brilliant, although we could improve our results for
the Spanish split by four points just by translating the samples to English and using the BERTweet
ifne-tuned model for sexism detection. The weighted-loss function has also allowed to increase some
points and the Data Augmentation has also enhanced the model performance.</p>
        <p>In Tab. 6 we can see that, just comparing the baselines using BERT and BETO, the English partition
gets a better performance. As in the Spanish validation split, just with the combination of the English
and translated Spanish datasets and using the BERTweet-large-sexism-detector model as checkpoint, we
already obtained good results. Adding the weighted-loss improved them, as happened with the Spanish
dataset. In this case, diferently from what happened in the Spanish dataset, the Data Augmentation did
not improve model’s performance.
Model M16, which trained to predict six labels separately for each language, achieved a moderate
performance. However, its F-Measure indicates room for improvement, suggesting that the model may
struggle with certain categories or nuances in sexism categorization. The model trained to predict five
labels M16 exhibited lower performance across all metrics compared to M16. This could be attributed
to the removal of the not sexist label from the categorization task, as well as mixing its predictions
with the ones from the previous model, potentially leading to loss of valuable context for accurate
classification. The results can be seen in Tab. 7</p>
        <p>For the Engish partition, as shown in Tab. 8 the first model achieved moderate performance, with
comparable metrics to its counterpart on the Spanish partition. While the ICM-Hard and ICM-Hard
Norm scores indicate reasonable categorization accuracy.</p>
        <p>The single model trained on both English and translated Spanish samples demonstrated the best
performance among the three models on both languages. Despite the diferences in validation data
composition, this model achieved significantly higher ICM-Hard and ICM-Hard Norm scores, indicating
better categorization accuracy and similarity to ground truth labels. However, it’s important to note
that the validation data composition for M36 difered from that of M1 6 and M26, incorporating both
English and translated Spanish samples. As such, the higher performance of M36 cannot be directly
compared to the other models due to this diference in validation data composition.
-0.511
-1.450
1.762
0.220
0.143
0.370</p>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>L.</given-names>
            <surname>Plaza</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Carrillo-de Albornoz</surname>
          </string-name>
          , E. Amigó,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gonzalo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Morante</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Spina</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Chulvi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Maeso</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Ruiz</surname>
          </string-name>
          ,
          <year>Exist 2024</year>
          :
          <article-title>sexism identification in social networks and memes</article-title>
          , in: N.
          <string-name>
            <surname>Goharian</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Tonellotto</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>He</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Lipani</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>McDonald</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Macdonald</surname>
          </string-name>
          , I. Ounis (Eds.),
          <source>Advances in Information Retrieval</source>
          , Springer Nature Switzerland, Cham,
          <year>2024</year>
          , pp.
          <fpage>498</fpage>
          -
          <lpage>504</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>L.</given-names>
            <surname>Plaza</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Carrillo-de-Albornoz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Ruiz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Maeso</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Chulvi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Amigó</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gonzalo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Morante</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Spina</surname>
          </string-name>
          , Overview of EXIST 2024 -
          <article-title>Learning with Disagreement for Sexism Identification and Characterization in Social Networks and Memes, in: Experimental IR Meets Multilinguality, Multimodality, and Interaction</article-title>
          .
          <source>Proceedings of the Fifteenth International Conference of the CLEF Association (CLEF</source>
          <year>2024</year>
          ),
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>L.</given-names>
            <surname>Plaza</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Carrillo-de-Albornoz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Ruiz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Maeso</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Chulvi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Amigó</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gonzalo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Morante</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Spina</surname>
          </string-name>
          , Overview of EXIST 2024 -
          <article-title>Learning with Disagreement for Sexism Identification and Characterization in Social Networks and Memes (Extended Overview)</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>
          , A. G. S. de Herrera (Eds.),
          <source>Working Notes of CLEF 2024 - Conference and Labs of the Evaluation Forum</source>
          ,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>E.</given-names>
            <surname>Amigo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Delgado</surname>
          </string-name>
          ,
          <article-title>Evaluating extreme hierarchical multi-label classification</article-title>
          , in: S. Muresan,
          <string-name>
            <given-names>P.</given-names>
            <surname>Nakov</surname>
          </string-name>
          ,
          <string-name>
            <surname>A</surname>
          </string-name>
          . Villavicencio (Eds.),
          <source>Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume</source>
          <volume>1</volume>
          :
          <string-name>
            <surname>Long</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          , Dublin, Ireland,
          <year>2022</year>
          , pp.
          <fpage>5809</fpage>
          -
          <lpage>5819</lpage>
          . URL: https://aclanthology.org/
          <year>2022</year>
          .
          <article-title>acl-long</article-title>
          .
          <volume>399</volume>
          . doi:
          <volume>10</volume>
          . 18653/v1/
          <year>2022</year>
          .
          <article-title>acl-long</article-title>
          .
          <volume>399</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>A.</given-names>
            <surname>Rydelek</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Dementieva</surname>
          </string-name>
          , G. Groh, AdamR at SemEval-2023 task 10:
          <article-title>Solving the class imbalance problem in sexism detection with ensemble learning</article-title>
          , in: A.
          <string-name>
            <surname>K. Ojha</surname>
            ,
            <given-names>A. S.</given-names>
          </string-name>
          <string-name>
            <surname>Doğruöz</surname>
            , G. Da San Martino, H. Tayyar Madabushi,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Kumar</surname>
          </string-name>
          , E. Sartori (Eds.),
          <source>Proceedings of the 17th International Workshop on Semantic Evaluation (SemEval-2023)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Toronto, Canada,
          <year>2023</year>
          , pp.
          <fpage>1371</fpage>
          -
          <lpage>1381</lpage>
          . URL: https://aclanthology.org/
          <year>2023</year>
          .semeval-
          <volume>1</volume>
          .190. doi:
          <volume>10</volume>
          .18653/v1/
          <year>2023</year>
          .semeval-
          <volume>1</volume>
          .
          <fpage>190</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>D. Q.</given-names>
            <surname>Nguyen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Vu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Tuan</surname>
          </string-name>
          <string-name>
            <surname>Nguyen</surname>
          </string-name>
          ,
          <article-title>BERTweet: A pre-trained language model for English tweets</article-title>
          , in: Q. Liu, D. Schlangen (Eds.),
          <source>Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing: System Demonstrations</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Online,
          <year>2020</year>
          , pp.
          <fpage>9</fpage>
          -
          <lpage>14</lpage>
          . URL: https://aclanthology.org/
          <year>2020</year>
          .emnlp-demos.2. doi:
          <volume>10</volume>
          .18653/v1/
          <year>2020</year>
          .emnlp-demos.
          <volume>2</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>H.</given-names>
            <surname>Kirk</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Yin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Vidgen</surname>
          </string-name>
          , P. Röttger, SemEval-2023 task 10:
          <article-title>Explainable detection of online sexism</article-title>
          , in: A.
          <string-name>
            <surname>K. Ojha</surname>
            ,
            <given-names>A. S.</given-names>
          </string-name>
          <string-name>
            <surname>Doğruöz</surname>
            , G. Da San Martino, H. Tayyar Madabushi,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Kumar</surname>
          </string-name>
          , E. Sartori (Eds.),
          <source>Proceedings of the 17th International Workshop on Semantic Evaluation (SemEval2023)</source>
          ,
          <source>Association for Computational Linguistics</source>
          , Toronto, Canada,
          <year>2023</year>
          , pp.
          <fpage>2193</fpage>
          -
          <lpage>2210</lpage>
          . URL: https://aclanthology.org/
          <year>2023</year>
          .semeval-
          <volume>1</volume>
          .305. doi:
          <volume>10</volume>
          .18653/v1/
          <year>2023</year>
          .semeval-
          <volume>1</volume>
          .
          <fpage>305</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>S. Y.</given-names>
            <surname>Feng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Gangal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Chandar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Vosoughi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Mitamura</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Hovy</surname>
          </string-name>
          ,
          <article-title>A survey of data augmentation approaches for NLP</article-title>
          , in: C.
          <string-name>
            <surname>Zong</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Xia</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Navigli</surname>
          </string-name>
          (Eds.),
          <article-title>Findings of the Association for Computational Linguistics: ACL-IJCNLP 2021</article-title>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Online,
          <year>2021</year>
          , pp.
          <fpage>968</fpage>
          -
          <lpage>988</lpage>
          . URL: https://aclanthology.org/
          <year>2021</year>
          .findings-acl.
          <volume>84</volume>
          . doi:
          <volume>10</volume>
          . 18653/v1/
          <year>2021</year>
          .findings-acl.
          <volume>84</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>E.</given-names>
            <surname>Ma</surname>
          </string-name>
          , Nlp augmentation, https://github.com/makcedward/nlpaug,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>J.</given-names>
            <surname>Cañete</surname>
          </string-name>
          , G. Chaperon,
          <string-name>
            <given-names>R.</given-names>
            <surname>Fuentes</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.-H.</given-names>
            <surname>Ho</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Kang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Pérez</surname>
          </string-name>
          ,
          <article-title>Spanish pre-trained bert model and evaluation data</article-title>
          ,
          <source>in: PML4DC at ICLR</source>
          <year>2020</year>
          ,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</surname>
          </string-name>
          , M.-
          <string-name>
            <given-names>W.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Toutanova</surname>
          </string-name>
          , BERT:
          <article-title>Pre-training of deep bidirectional transformers for language understanding</article-title>
          , in: J.
          <string-name>
            <surname>Burstein</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Doran</surname>
          </string-name>
          , T. Solorio (Eds.),
          <source>Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</source>
          , Volume
          <volume>1</volume>
          (Long and Short Papers),
          <source>Association for Computational Linguistics</source>
          , Minneapolis, Minnesota,
          <year>2019</year>
          , pp.
          <fpage>4171</fpage>
          -
          <lpage>4186</lpage>
          . URL: https://aclanthology.org/N19-1423. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>N19</fpage>
          -1423.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>