<!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>Multilingual Sexism Identification via Fusion of Large Language Models</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Sahrish Khan</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Gabriele Pergola</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Arshad Jhumka</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Computer Science, University of Warwick</institution>
          ,
          <addr-line>Coventry CV4 7AL</addr-line>
          ,
          <country country="UK">UK</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>School of Computing, University of Leeds</institution>
          ,
          <addr-line>Leeds LS2 9JT</addr-line>
          ,
          <country country="UK">UK</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>The pervasive presence of sexist content on social media platforms not only perpetuates harmful stereotypes but also fosters environments that can be exclusionary and hostile, especially towards women. Such content, which often targets people of a specific gender, i.e., sexist content, requests platforms to enhance their monitoring and policing eforts. Yet, policing such content is challenging for many reasons, including the volume of messages to check and the context of the content. Consequently, several studies have been conducted to automatically detect sexist language on social media, focusing on its identification and classification. However, variations in detection accuracy can depend on the diferences in architecture, training strategies, and data of existing models, [1, 2, 3], leading to potential variances in detection accuracy. This variability, further influenced by the types of messages and input prompts, motivates our exploration into the fusion of multiple Large Language Models (LLMs). As part of EXIST Task 1, which focuses on sexism identification in multilingual contexts, we introduce two novel approaches: the Dual-Transformer Fusion Network (DTFN) and the Multimodel Fusion Ensemble (MFE). These methods utilize fusion and ensemble learning techniques to enhance detection accuracy across multilingual datasets. Our extensive experimental evaluation during the EXIST 2024 competition demonstrates that these methodologies significantly outperform existing models, with MFE and DTFN ranking 1st and 2nd, respectively, in the English segment, and 4th and 13th in the combined English and Spanish segments of the oficial leaderboard.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Social Media</kwd>
        <kwd>Sexism Detection</kwd>
        <kwd>Ensemble</kwd>
        <kwd>Transformer</kwd>
        <kwd>Multilingual</kwd>
        <kwd>Large Language models</kwd>
        <kwd>EXIST Task 1</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>The proliferation of social media platforms has fundamentally transformed how individuals
communicate. However, these platforms have also become arenas for problematic interactions, including the
dissemination of sexist content. This content not only perpetuates harmful stereotypes but also fosters
an online environment that can be hostile and exclusionary, particularly towards women. The urgency
to address this issue is underscored by the growing body of research indicating the growing exposure
to sexist language and its profound impacts. Despite the clear need to mitigate this problem, the task
of detecting sexist content online presents substantial challenges. Sexist language is not uniformly
explicit; it often involves subtle cues and context-dependent expressions.</p>
      <p>
        Addressing these challenges requires leveraging flexible computational methods and approaches
that can understand and interpret the complexities of language used in these settings. Large Language
Models (LLMs), which are pre-trained on vast corpora and fine-tuned for specific tasks, are promising
solutions. However, while individual LLMs ofer robust linguistic insights, they also have inherent
limitations when applied to specific tasks or domains such as detecting sexist or harmful content. Each
existing model may interpret nuances diferently based on its architecture, training strategy and data
[
        <xref ref-type="bibr" rid="ref1 ref2 ref3 ref4">1, 2, 3, 4</xref>
        ], leading to potential variances in detection accuracy.
      </p>
      <p>
        This variability depends on the types of messages as well as on the input prompts, and it motivates
our exploration for fusing multiple LLMs. Our research, conducted as part of the EXIST 2024 (sEXism
Identification in Social Networks)[
        <xref ref-type="bibr" rid="ref5 ref6">5, 6</xref>
        ] shared task 1, which focuses on enhancing automated sexism
detection. In this paper, we present two novel methodologies leveraging neural language models for
sexism identification: the Dual-Transformer Fusion Network (DTFN) and the Multimodel Fusion Ensemble
(MFE). These approaches utilize fusion and ensemble learning techniques to enhance detection accuracy
across multilingual datasets, specifically evaluated using the EXIST 2024 dataset for both English and
Spanish contexts.
      </p>
      <p>
        In particular, the DTFN is a simple yet efective approach that integrates the outputs from two distinct
transformers, i.e., RoBERTa[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] and DeBERTa [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], and fuses them via a fully connected layer. We posit
that by concatenating their outputs, the DTFN captures a more comprehensive understanding of the
textual data. We further expand this concept by introducing the MFE approach, which applies a majority
voting mechanism among multiple models to exploit their collective capabilities for better generalization
across diverse linguistic contexts. Ensemble methods, such as MFE, have shown to enhance model
performance by mitigating individual model weaknesses and reducing the variance of predictions [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ].
By incorporating a diverse set of models like RoBERTa-Large, DeBERTa-V3-Large, Mistral-7b [
        <xref ref-type="bibr" rid="ref1 ref2 ref3">1, 2, 3</xref>
        ],
and DTFN, the MFE approach provides a more robust and accurate detection methodology.
      </p>
      <p>The efectiveness of these methods was evaluated in the EXIST 2024 competition - Task 1, where
the MFE and DTFN approaches notably outperformed other methodologies, ranking 1st and 2nd in
the English segment of the oficial leaderboard, and 4th and 13th in the combined English and Spanish
languages, respectively.</p>
      <p>The remainder of this paper is structured as follows: Section 2 provides an overview of related work
in sexism detection and ensemble learning strategies. Section 3 briefly describes the datasets. Section 4
details our methodologies, including the DTFN and MFE techniques. Section 5 details Experimental
Assessment and Section 6 presents the results and analysis, followed by our conclusions in Section 7.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related Work</title>
      <p>Significant research has been conducted by researchers on the detection of hate speech, cyberbullying
and ofensive language. However, despite the growing interest on the topic, the literature on sexism
detection is still limited.</p>
      <p>
        In recent studies large language models (LLMs) and Transformer-based architecutres have been used
for multi-modal detection of hate speech, sexism and ofensive language from the text, images, memes,
audio, and videos[
        <xref ref-type="bibr" rid="ref10 ref11 ref12 ref13 ref14 ref8 ref9">8, 9, 10, 11, 12, 13, 14, 15</xref>
        ]. The advent of transformer models, particularly BERT
(Bidirectional Encoder Representations from Transformers) introduced by [16], enables a more sophisticated
understanding of contextual relationships within text. Building upon BERT, [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] introduced RoBERTa
(A Robustly Optimized BERT Approach), which fine-tuned the training process, and DeBERTa [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]
(Decoding-enhanced BERT with Disentangled Attention), which incorporates a disentangled attention
mechanism and enhanced decoding capabilities. Based on this pre-trained models, [17] fine-tuned
deep learning models, such as CNN-BiLSTM and GPT-2, on the "MultiHate" dataset, achieving notable
accuracy rates in sexism classification.
      </p>
      <p>Moreover, the problem of sexism detection involves identifying harmful and biased language, often
embedded within complex social contexts. Early approaches relied heavily on traditional machine
learning techniques, such as SVMs and logistic regression, combined with manually crafted features
Gaydhani et al. [18], Anistya and Setiawan [19]. However, these methods struggled with the subtleties
of natural language and the contextual nature of sexism. Recent studies have leveraged the transformer
models to address these challenges. In particular, [20] applied BERT to detect misogyny in social media.
Similarly, Singh et al. [21] focused on the automatic detection of misogyny in multimodal online content
by developing a large, annotated corpus of memes involving Hindi-English code-mixed language.</p>
      <p>
        Ensemble approaches, which involves combining multiple models, have proven efective in various
NLP tasks, and the rationale is that diferent models can capture diferent aspects of the data based
on their architecture, training objectives and data; thus, their combination can mitigate individual
weaknesses. [22] provided a comprehensive overview of ensemble methods, emphasizing their potential
to enhance robustness and accuracy. In the context of text classification, Stacked Generalization [ 23]
and Bagging [24] are widely used ensemble techniques. More recent studies have focused on applying
these methods to deep learning models. For example, [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] employed an ensemble of BERT-based models
for sentiment analysis.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Datasets</title>
      <p>In this study, we utilized the EXIST 2024 Tweets Dataset, specifically tailored for Task 1, which involves
sexism identification in tweets. This dataset is comprehensive, containing over 10,000 labeled tweets
balanced between English and Spanish. The tweets are annotated for binary classification, where the
task is to determine whether a tweet contains sexist expressions or behaviors, categorized as "YES" or
"NO."</p>
      <p>The dataset is split into three parts: training, development, and test sets. For our experiments, we used
the training and development sets with hard labels (gold standard) for model training and validation.
The detailed distribution of the dataset is described in Table 1.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Methodology</title>
      <p>We proceed by introducing the two methodologies designed to address the classification of online
sexism. First, we first present a simple yet efective method, named Dual-Transformer Fusion Network
(DTFN) (see Section 4.1), based on the fusion of vector representations generated by two diferent neural
language models; we subsequently present a more complex and efective approach, Multimodel Fusion
Ensemble (MFE) (Section 4.2), based on ensemble learning of several LLMs and of the aforementioned
DTFN.</p>
      <sec id="sec-4-1">
        <title>4.1. Dual-Transformer Fusion Network (DTFN)</title>
        <p>
          In our participation in the EXIST Task 1, we introduced a methodology named Dual-Transformer Fusion
Network (DTFN), which integrates two Transformer models known for their efectiveness in online
post analysis, namely RoBERTa-Large and DeBERTa-V3-Large [
          <xref ref-type="bibr" rid="ref1 ref2">1, 2</xref>
          ]. The DTFN methodology leverages
the distinctive characteristics of each constituent model to enhance text classification: RoBERTa-Large,
optimized for deep contextual understanding across longer text sequences [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ], and DeBERTa-V3-Large,
designed to model the inter-token relationships through its disentangled attention mechanism [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ].
        </p>
        <p>Based on these observations, we design DTFN as a hybrid architecture that first processes input text
—typically extracted from social media or other online platforms— through both models in parallel. Each
model then independently analyzes the text and outputs dense representation from their respective
last hidden layers, potentially encoding complementary aspects of the text’s semantic and contextual
nuances.</p>
        <p>Formally, let x denote the input text vector. Each Transformer model  (RoBERTa and DeBERTa)
processes x independently and outputs a representation h from its final hidden layer:
Input Data
DeBERTa-V3-Large</p>
        <p>Fully-Connected Layer</p>
        <p>Final
Output</p>
        <p>These output vectors, h and h, capture complementary linguistic features as determined by their
distinct training paradigms and architectural innovations. Following the feature extraction, the outputs
are concatenated to form a unified feature representation h:
(2)
(3)
(4)
h = [h; h]
^ =  ((h))</p>
        <p>This vector h is then passed through a fully connected linear layer  to produce the final class
prediction ^. The linear layer acts as a classifier, integrating the diverse features into a unified prediction:
where  denotes the sigmoid activation function, mapping the linear combination of features to a
probability score indicating the final class predicted. The entire architecture is trained end-to-end with
the objective of minimizing the binary cross-entropy loss ℒ:</p>
        <p>ℒ(^, ) = −  log(^) − (1 − ) log(1 − ^)</p>
        <p>The linear layer, as the whole architecture, is trained end-to-end on the specific task of sexism
detection. Figure 1 illustrates the overall pipeline of the DTFN, highlighting the flow from the input
text to the final classification.</p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Multimodel Fusion Ensemble (MFE)</title>
        <p>
          Based on the promising results of our preliminary study combining two Transformer architectures, we
devise a principled approach based on ensemble to dynamically combine multiple models with diferent
architectures and training strategies. This approach, which we named Multimodel Fusion Ensemble
(MFE), combines multiple models with distinct architectures and training strategies. Specifically, MFE
integrates outputs from four diferent Transformer-based models — RoBERTa-Large[
          <xref ref-type="bibr" rid="ref1">1</xref>
          ],
DeBERTa-V3Large[
          <xref ref-type="bibr" rid="ref2">2</xref>
          ], Mistral-7b[
          <xref ref-type="bibr" rid="ref3">3</xref>
          ], and the previously introduced Dual-Transformer Network (DTFN) — using a
majority voting mechanism.
        </p>
        <p>
          Each model in the ensemble was selected for its unique capabilities in processing and understanding
complex text structures, such as the dynamic masking strategy [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ], the disentangled attention mechanism
[
          <xref ref-type="bibr" rid="ref2">2</xref>
          ], the Grouped-Query and Sliding Window Attention [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ]. Specifically, MFE integrates outputs from
four diferent Transformer-based models - RoBERTa-Large, DeBERTa-V3-Large, Mistral-7b, and the
previously introduced Dual-Transformer Network (DTFN) — using a majority voting mechanism. The
individual models were first fine-tuned on the available dataset for sexism detection to optimize their
performance for the classification task. Subsequently, the ensemble was configured to employ a majority
voting system to aggregate the predictions from each model.
        </p>
        <p>More formally, in our ensemble method the classification decision for each instance is derived through
a majority voting mechanism among the outputs of the constituent models. Let  = {1, 2, . . . ,  }
represent the set of possible classes. For a given text instance , each model  in the ensemble
 = {1, 2, . . . ,  } predicts a class . The ensemble prediction ^ is determined by:

^() = arg max ∑︁ 1(() = )
∈ =1
(5)
where 1 is the indicator function that equals 1 if the condition is true and 0 otherwise. This simple
approach counts the votes for each class from all models and selects the class with the highest count.
Majority Voting and Tie Handling
In scenarios where the voting results in a tie, particularly when the ensemble is evenly split across
classes, a predefined rule is applied to resolve the ambiguity. Considering the sensitivity and potential
consequences of misclassifying sexist content, our tie-breaking strategy defaults to the "Yes" (Sexist)
prediction. This decision was based on the task’s sensitivity and the potential social impact of
underdetecting sexist content.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Experimental Assessment</title>
      <p>As part of the EXIST 2024, we conducted a thorough experimental evaluation of the presented
methodologies addressing, in particular, Task 1. In our experimental assessment, we initially evaluated the
performance of individual models to establish a baseline. Then, we analysed the results yielded by the
proposed Dual-Transformer Fusion Network (DTFN) and Multimodel Fusion Ensemble (MFE).</p>
      <p>We proceed by first introducing the baselines, hyperparameters, and evaluation metrics adopted.
We conclude by discussing the results on the EXIST dataset and the oficial leaderboard, along with
quantitative analyses of the ensemble mechanism.</p>
      <sec id="sec-5-1">
        <title>Baselines</title>
        <p>
          In the following, we briefly describe the baselines evaluated:
• RoBERTa-Large [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ]: An optimized version of BERT, whose model’s size allows for a deeper
understanding of language context, making it ideal for analyzing the intricacies in English and
Spanish.
• DeBERTa-V3-Large [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ]: It improves upon the BERT and RoBERTa designs by deciphering the
dependency between words in a sentence, introducing a disentangled attention mechanism.
• Mistral-7b [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ]: A large-scale model optimized for both performance and throughput and tailored
for multilingual understanding. Its large-scale training on diverse datasets makes it particularly
adept at handling the complexities of both English and Spanish.
        </p>
        <p>We adopted their pre-trained versions, available through the HuggingFace library1.</p>
      </sec>
      <sec id="sec-5-2">
        <title>Parameter Settings</title>
        <p>For each model used in our experiments, we identified a set of optimal hyperparameters through
preliminary testing. The selected hyperparameters include the number of training epochs, learning rate
( ), batch size, and weight decay ( ). Table 2 presents the optimal hyperparameters for each model.
In the evaluation of Task 1 for EXIST 2024, the oficial metrics used are ICM-Hard, ICM-Hard Norm,
and F1. The ICM metric, proposed by [25], is based on information theory and measures the similarity
between system classifications and gold standard labels. The organizers have also provided a normalized
version, ICM-Hard Norm, to account for dataset imbalances, ensuring fair comparisons across diferent
test conditions. For this shared task, higher values of the ICM and ICM-Hard Norm metrics indicate a
stronger alignment between system outputs and the ground truth, with higher values considered better.</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>6. Results</title>
      <sec id="sec-6-1">
        <title>6.1. Experimental Results on the Development set</title>
        <p>The evaluation of the baseline models shows diferences in performance across RoBERTa-Large,
DeBERTa-V3-Large, Mistral-7b, and our proposed Dual-Transformer Fusion Network (DTFN), as
reported in Table 3.</p>
        <p>RoBERTa-Large achieved an F1 score of 0.864 and an ICM score of 0.592, demonstrating its robustness
in handling the task. DeBERTa-V3-Large marginally outperformed RoBERTa-Large. Mistral-7b, on
the other hand, yielded a slightly lower F1 score and the lowest ICM score among the baselines. This
indicates that despite the higher number of parameters, Mistral-7b might not be as well-suited to the
specific task of sexist identification compared to the other models evaluated.– Our proposed model, the
Dual-Transformer Fusion Network (DTFN), slightly surpassed the other baseline models with an F1 score
of 0.868 and showed a significant improvement with an ICM score of 0.606. The higher performance of
DTFN highlights the eficacy of our dual-transformer architecture in improving classification accuracy.
ID</p>
        <p>Models</p>
        <p>F1 Score ICM Score</p>
        <p>Baseline Models
To systematically understand the voting results, we analysed the number of times each combination
of models agreed on the sexist (Yes) and non-sexist (No) classes. This is done to determine whether
there is a dominant model (or combination) in the ensemble. The combinations and their respective
agreement counts are detailed in Table 4. The table provides detailed insights into the agreement and
non-conformity of various ensemble model combinations on the development set.</p>
        <p>Among the combinations, the ensemble of RoBERTa-Large, DeBERTa-V3-Large, Mistral-7b, and DTFN
shows the highest majority agreement. Conversely, the combination of RoBERTa-Large,
DeBERTaV3-Large, and Mistral-7b without DTFN showed the lowest majority agreement. This indicates that
the addition of DTFN significantly boosts the ensemble’s agreement, particularly in identifying sexist
content. Out of all instances, we observed a total of 58 ties where the aforementioned tie-breaking rule
was applied.</p>
        <p>Additionally, we reported the isolation frequency, i.e., how often a single model’s prediction difered
from the majority vote within the ensemble, reflecting the model’s conformity with others.
RoBERTaLarge had the highest isolation frequency, which could be due to the fact that it takes context into
account. DeBERTa-V3-Large showed a lower isolation frequency, while Mistral-7b frequently disagreed
with the ensemble on non-sexist classifications. DTFN had the lowest isolation frequency, suggesting
it is the most conforming model within the ensemble, underscoring the DTFN’s role in enhancing
ensemble cohesion.</p>
      </sec>
      <sec id="sec-6-2">
        <title>6.2. Results of the Oficial Leaderboard</title>
        <p>In this section, we present the results of our participation in Task 1 of the EXIST 2024 challenge,
where our team, EquityExplorers, submitted two runs: EquityExplorer-1 using the DTFN technique and
EquityExplorer-2 employing the Multimodel Fusion Ensemble (MFE) approach.</p>
        <p>The MFE and the DTFN demonstrated notable performance by ranking 1 and 2 for the Task 1
in the English segment, respectively. The efectiveness of the MFE, evidenced by its ICM-Hard score
of 0.6178 and ICM-Hard Norm of 0.8153, coupled with an F1 score of 0.7610, demonstrated its robust
capability to discern nuances of sexist content in English tweets efectively. This ensemble approach, by
combining diferent strategies and model outputs, has proven to be particularly efective in improving
accuracy and reliability over individual models, including the Dual-Transformer Fusion Network.</p>
        <p>The patterns observed in the Spanish and Both (combining results from English and Spanish)
evaluations align with these findings. Although the performance gap in the Spanish evaluation is wider, it
highlights the robustness of MFE in a diferent linguistic environment. Notably, DTFN ranks 25ℎ out
of 66 in Spanish, suggesting that while it is efective, it might not fully adapt to diferent languages as
eficiently as MFE. The aggregated results for both languages demonstrate the consistent advantage of
using an ensemble approach, with MFE achieving the 4ℎ rank out of 70, compared to the 13ℎ rank for
DTFN. In conclusion, the oficial leaderboard results validate the proposed approach and highlight the
significant improvements achieved through the Multimodel Fusion Ensemble (MFE). The consistent
outperformance of MFE across various metrics and datasets underscores the potential of ensemble
methods involving neural language models.</p>
      </sec>
    </sec>
    <sec id="sec-7">
      <title>7. Conclusion</title>
      <p>In this work, we introduced the Dual-Transformer Fusion Network (DTFN) and the Multimodel Fusion
Ensemble (MFE) for identifying sexist content across multiple languages within the context of the EXIST
2024 competition. A thorough evaluation on the development and test sets highlighted the superior
performance of the MFE, particularly ranking highly in both the English (1) and combined language
(4ℎ) categories. This performance, paired with a comparative analysis against baseline models, allowed
for a detailed assessment of the relative improvements ofered by the DTFN and MFE approaches. It
demonstrated the benefits of integrating diverse transformer models into an ensemble framework to
leverage the characteristics of each neural language model, thereby achieving higher accuracy and
reliability in detecting complex linguistic patterns associated with sexism.
(Eds.), Findings of the Association for Computational Linguistics: EACL 2023, Association for
Computational Linguistics, Dubrovnik, Croatia, 2023, pp. 1079–1091.
[15] A. Irfan, D. Azeem, S. Narejo, N. Kumar, Multi-modal hate speech recognition through machine
learning, in: 2024 IEEE 1st Karachi Section Humanitarian Technology Conference (KHI-HTC),
2024, pp. 1–6. doi:10.1109/KHI-HTC60760.2024.10482031.
[16] J. Devlin, M.-W. Chang, K. Lee, K. Toutanova, Bert: Pre-training of deep bidirectional transformers
for language understanding, 2019. arXiv:1810.04805.
[17] A. Vetagiri, P. Pakray, A. Das, A deep dive into automated sexism detection using fine-tuned deep
learning and large language models, Available at SSRN 4791798 (2024).
[18] A. Gaydhani, V. Doma, S. Kendre, L. Bhagwat, Detecting hate speech and ofensive language on
twitter using machine learning: An n-gram and {TFIDF} based approach, CoRR abs/1809.08651
(2018). URL: http://arxiv.org/abs/1809.08651. arXiv:1809.08651.
[19] F. Anistya, E. B. Setiawan, Hate speech detection on twitter in indonesia with feature expansion
using glove, Jurnal RESTI (Rekayasa Sistem dan Teknologi Informasi) 5 (2021) 1044 – 1051. URL: http:
//www.jurnal.iaii.or.id/index.php/RESTI/article/view/3521. doi:10.29207/resti.v5i6.3521.
[20] A. Rahali, M. A. Akhloufi, A.-M. Therien-Daniel, E. Brassard-Gourdeau, Automatic misogyny
detection in social media platforms using attention-based bidirectional-lstm*, in: 2021 IEEE
International Conference on Systems, Man, and Cybernetics (SMC), 2021, pp. 2706–2711. doi:10.
1109/SMC52423.2021.9659158.
[21] A. Singh, D. Sharma, V. K. Singh, Mimic: Misogyny identification in multimodal internet content
in hindi-english code-mixed language, ACM Trans. Asian Low-Resour. Lang. Inf. Process. (2024).</p>
      <p>URL: https://doi.org/10.1145/3656169. doi:10.1145/3656169, just Accepted.
[22] T. G. Dietterich, Ensemble methods in machine learning, in: International workshop on multiple
classifier systems, Springer, 2000, pp. 1–15.
[23] D. H. Wolpert, Stacked generalization, Neural Networks 5 (1992) 241–259.
[24] L. Breiman, Bagging predictors, Machine Learning 24 (1996) 123–140. URL: https://api.</p>
      <p>semanticscholar.org/CorpusID:47328136.
[25] E. Amigo, A. Delgado, Evaluating extreme hierarchical multi-label classification, in: S. Muresan,
P. Nakov, A. Villavicencio (Eds.), Proceedings of the 60th Annual Meeting of the Association for
Computational Linguistics (Volume 1: Long Papers), Association for Computational Linguistics,
Dublin, Ireland, 2022, pp. 5809–5819.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <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>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Stoyanov</surname>
          </string-name>
          ,
          <article-title>Roberta: A robustly optimized bert pretraining approach</article-title>
          ,
          <year>2019</year>
          . arXiv:
          <year>1907</year>
          .11692.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>P.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gao</surname>
          </string-name>
          , W. Chen, Deberta:
          <article-title>Decoding-enhanced bert with disentangled attention</article-title>
          ,
          <year>2021</year>
          . arXiv:
          <year>2006</year>
          .03654.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>A. Q.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Sablayrolles</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Mensch</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Bamford</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. S.</given-names>
            <surname>Chaplot</surname>
          </string-name>
          , D. de las Casas,
          <string-name>
            <given-names>F.</given-names>
            <surname>Bressand</surname>
          </string-name>
          , G. Lengyel,
          <string-name>
            <given-names>G.</given-names>
            <surname>Lample</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Saulnier</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. R.</given-names>
            <surname>Lavaud</surname>
          </string-name>
          , M.
          <article-title>-</article-title>
          <string-name>
            <surname>A. Lachaux</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Stock</surname>
            ,
            <given-names>T. L.</given-names>
          </string-name>
          <string-name>
            <surname>Scao</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Lavril</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Lacroix</surname>
            ,
            <given-names>W. E.</given-names>
          </string-name>
          <string-name>
            <surname>Sayed</surname>
          </string-name>
          , Mistral 7b,
          <year>2023</year>
          . arXiv:
          <volume>2310</volume>
          .
          <fpage>06825</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>H.</given-names>
            <surname>Yan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Gui</surname>
          </string-name>
          , G. Pergola,
          <string-name>
            <given-names>Y.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <article-title>Position bias mitigation: A knowledge-aware graph model for emotion cause extraction</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.),
          <source>Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing</source>
          (Volume
          <volume>1</volume>
          :
          <string-name>
            <surname>Long</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          , Online,
          <year>2021</year>
          , pp.
          <fpage>3364</fpage>
          -
          <lpage>3375</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <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="ref6">
        <mixed-citation>
          [6]
          <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="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>A. C.</given-names>
            <surname>Mazari</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Boudoukhani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Djefal</surname>
          </string-name>
          ,
          <article-title>Bert-based ensemble learning for multi-aspect hate speech detection</article-title>
          ,
          <source>Cluster Computing</source>
          <volume>27</volume>
          (
          <year>2024</year>
          )
          <fpage>325</fpage>
          -
          <lpage>339</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>D.</given-names>
            <surname>Kikkisetti</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. U.</given-names>
            <surname>Mustafa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Melillo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Corizzo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Boukouvalas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gill</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Japkowicz</surname>
          </string-name>
          ,
          <article-title>Using llms to discover emerging coded antisemitic hate-speech in extremist social media</article-title>
          ,
          <year>2024</year>
          . arXiv:
          <volume>2401</volume>
          .
          <fpage>10841</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>L.</given-names>
            <surname>Zhu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Pergola</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Gui</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <article-title>Topic-driven and knowledge-aware transformer for dialogue emotion detection</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.),
          <source>Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing</source>
          (Volume
          <volume>1</volume>
          :
          <string-name>
            <surname>Long</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          , Online,
          <year>2021</year>
          , pp.
          <fpage>1571</fpage>
          -
          <lpage>1582</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>G.</given-names>
            <surname>Pergola</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Gui</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <article-title>A disentangled adversarial neural topic model for separating opinions from plots in user reviews</article-title>
          , in: K.
          <string-name>
            <surname>Toutanova</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Rumshisky</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Zettlemoyer</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Hakkani-Tur</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          <string-name>
            <surname>Beltagy</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Bethard</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Cotterell</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Chakraborty</surname>
          </string-name>
          , Y. Zhou (Eds.),
          <source>Proceedings of the</source>
          <year>2021</year>
          <article-title>Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Association for Computational Linguistics</article-title>
          , Online,
          <year>2021</year>
          , pp.
          <fpage>2870</fpage>
          -
          <lpage>2883</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>R.</given-names>
            <surname>Wolfe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Howe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Caliskan</surname>
          </string-name>
          ,
          <article-title>Contrastive language-vision ai models pretrained on web-scraped multimodal data exhibit sexual objectification bias</article-title>
          ,
          <source>in: Proceedings of the 2023 ACM Conference on Fairness, Accountability, and Transparency</source>
          , FAccT '23,
          <string-name>
            <surname>Association</surname>
          </string-name>
          for Computing Machinery, New York, NY, USA,
          <year>2023</year>
          , p.
          <fpage>1174</fpage>
          -
          <lpage>1185</lpage>
          . URL: https://doi.org/10.1145/3593013.3594072. doi:
          <volume>10</volume>
          .1145/3593013.3594072.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>G.</given-names>
            <surname>Pergola</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Gui</surname>
          </string-name>
          ,
          <string-name>
            <surname>Y. He,</surname>
          </string-name>
          <article-title>TDAM: A topic-dependent attention model for sentiment analysis</article-title>
          ,
          <source>Information Processing &amp; Management</source>
          <volume>56</volume>
          (
          <year>2019</year>
          )
          <fpage>102084</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>J.</given-names>
            <surname>Lu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Tan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Pergola</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Gui</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <article-title>Event-centric question answering via contrastive learning and invertible event transformation</article-title>
          , in: Y.
          <string-name>
            <surname>Goldberg</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          <string-name>
            <surname>Kozareva</surname>
          </string-name>
          , Y. Zhang (Eds.),
          <source>Findings of the Association for Computational Linguistics: EMNLP</source>
          <year>2022</year>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Abu Dhabi, United Arab Emirates,
          <year>2022</year>
          , pp.
          <fpage>2377</fpage>
          -
          <lpage>2389</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>J.</given-names>
            <surname>Lu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Wallace</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>He</surname>
          </string-name>
          , G. Pergola,
          <article-title>NapSS: Paragraph-level medical text simplification via narrative prompting and sentence-matching summarization</article-title>
          , in: A.
          <string-name>
            <surname>Vlachos</surname>
          </string-name>
          , I. Augenstein
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>