<!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>AIT_FHSTP at EXIST 2023 Benchmark: Sexism Detection by Transfer Learning, Sentiment and Toxicity Embeddings and Hand-Crafted Features</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Jaqueline Böck</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Mina Schütz</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Daria Liakhovets</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Nathanya Queby Satriani</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Andreas Babic</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Djordje Slijepčević</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Matthias Zeppelzauer</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Alexander Schindler</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Austrian Institute of Technology</institution>
          ,
          <addr-line>Giefinggasse 4, 1210 Vienna</addr-line>
          ,
          <country country="AT">Austria</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>St. Pölten University of Applied Sciences</institution>
          ,
          <addr-line>3100 St. Pölten</addr-line>
          ,
          <country country="AT">Austria</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Sexism has become a widespread problem on social media and in online conversations. Therefore, the sEXism Identification in Social neTworks (EXIST) challenge addresses this issue at CLEF in 2023. In this year's version of this international benchmark, the goal is to automatically identify sexism in texts with the help of Natural Language Processing (NLP). The tasks are to determine whether a text is sexist, what the source intention behind it is and which type of sexist category it belongs to. This paper presents the contribution of our team, AIT_FHSTP, in the EXIST challenge held at CLEF in 2023. We present three approaches to solve the classification tasks of this year's shared task. The baseline for all three approaches is an XLM-RoBERTa model pre-trained with additional datasets and fine-tuned on the EXIST2023 data. For our second and third approach we extracted the fine-tuned embeddings of the model and concatenated them with additional features. On the one hand we added sentiment and toxicity model embeddings and on the other hand we added multiple hand-crafted features and reduced the dimensionality with PCA. Afterwards we used these embeddings as an input for a Random Forest classifier who generated the final predictions. Our approach combining XLM-RoBERTa embeddings with additional crafted features and PCA achieved the 1 rank on the soft-soft evaluation of task 2 (source intention) with Spanish content and the 2 rank for English content. For task 3 (sexism multilabel categorization), we achieved the 3 rank in the hard-hard evaluation.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Sexism detection</kwd>
        <kwd>Sexism identification</kwd>
        <kwd>Social Media Retrieval</kwd>
        <kwd>Transformer Models</kwd>
        <kwd>Natural Language Processing</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        In recent years - through the rise of social networks and media - discriminatory views and
statements have been a common phenomenon, especially against women. This relates to other
domains, such as hate speech [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] and disinformation [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. Therefore, the shared task on sEXism
Identification in Social neTworks (EXIST) at CLEF 2023 [
        <xref ref-type="bibr" rid="ref3 ref4">3, 4</xref>
        ] tackles the issue of automatic
sexism detection in social media texts. Task 1 did not change in the third iteration of the EXIST
challenge and is still a binary classification task where each text is annotated either as sexist
or not-sexist. The second task is dedicated to source intention. This specifies whether a sexist
comment was direct, reported, or judgmental. “Direct” describes whether the comment is simply
sexist or tries to be. The label “reported” states, whether a sexist situation is reported in the
text and is not sexist by itself. Lastly, “judgmental” means that: “[...] intention was to judge,
since the tweet describes sexist situations or behaviours with the aim of condemning them.”
(see: http://nlp.uned.es/exist2023/). The third task refers to a multi-label classification into
diferent types of sexist content: ideological-inequality, objectification , stereotyping-dominance,
misogyny-non-sexual-violence, sexual-violence, non-sexist.
      </p>
      <p>
        This paper presents our contribution to the benchmark, describes our approach, and
summarizes the obtained results for all three tasks, i.e., the binary sexism identification task (task 1), the
source intention task (task 2), and sexism categorization (task 3). To account for the bilingual
dataset we employ the multilingual model XLM-RoBERTa [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] as a baseline representation. The
XLM-RoBERTa model was pre-trained in an unsupervised manner on 10 million tweets and
additional sexism related datasets and fine-tuned on the EXIST2023 data. The methodical
approach includes generating additional embeddings for task 1 and 2 using our custom pre-trained
and fine-tuned XLM-RoBERTa model. Furthermore, we utilized pre-existing, task-specific
models from HuggingFace [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] to derive additional sentiment and toxicity embeddings. Besides a
simple baseline approach in which we fine-tuned this pre-trained XLM-RoBERTa model on
the EXIST2023 data, we also investigated approaches in which we used the XLM-RoBERTa
embeddings and combined them with the sentiment and toxicity embeddings as well as with
various hand-crafted features by utilizing a Random Forest [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] as classifier. Experiments with
and without dimensionality reduction via Principal Component Analysis (PCA) [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] have been
performed.
      </p>
      <p>Our paper is structured as follows: Section 2 describes our methodological approach with
a focus on the employed datasets and models. The presentation of the results is presented in
Section 3), which is followed by the the discussion and final conclusions (Section 4).</p>
    </sec>
    <sec id="sec-2">
      <title>2. Methodology and Evaluation</title>
      <p>
        In this paper, the term “pre-training” refers to the unsupervised re-training of a model. The term
“fine-tuning” refers to the supervised training on the downstream tasks of the challenge. Our
methodological approach is based on the EXIST2023 dataset generating embeddings for three
diferent use cases. We generated embeddings with an own pre-trained and fine-tuned
XLMRoBERTa (XLM-R) model [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] for the downstream tasks of this year’s competition. Additionally,
already pre- and fine-tuned models from HuggingFace [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] have been utilized to generate
additional sentiment embeddings and toxicity embeddings from the original data. The model
architecture behind these are also XLM-RoBERTa models trained on the respective tasks. In
this paper, the sentiment XLM-RoBERTa model is referred as XLM-R-SENT [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] and the toxicity
model as XLM-R-TOXI [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]. Furthermore, we employed hand-crafted features including the
number of extracted hashtags and links per text, the word and emoji count, punctuation-,
exclamation-, and question marks, as well as the ratio of those. The generated embeddings
and features were then used as an input to train a Random Forest [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] classifier. Optionally,
dimensionality reduction of the input embeddings with Principal Component Analysis (PCA)
[
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] was performed.
      </p>
      <p>
        Following the strategy of the past two years of contributing in the challenge [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ], we also
trained a simple XLM-R model with the original data for generating a baseline. More detailed
information on the exact training strategies can be found in the following.
2.1. EXIST2023 Data
In an attempt to first explore the given dataset, we investigated the EXIST2023 data for potential
duplicates, compared it further with the previous years’ data, and searched for possible relations
between the hashtags and the labels of the tweets. Based on the inspection, we then determined
that common data preprocessing techniques would sufice for the tweets to be used as inputs
for the models.
      </p>
      <p>The dataset includes postings from social media platforms such as Twitter and Gab, as well as
annotations for diferent categories of sexism which were then split into training, development,
and test partitions. The training set consists of 6,920 instances in English (3,260) and Spanish
(3,660) while the development set includes 1,038 samples and the test set contains 2,076 samples.
Each data instance is assigned a binary label (for task 1) indicating whether it is sexist (yes) or
non-sexist (no). In addition, a ternary classification assignment is provided for task 2: direct,
reported, judgmental, and a multi-label categorization is the target of task 3, i.e.,
ideologicalinequality, objectification , stereotyping-dominance, misogyny-non-sexual-violence, sexual-violence,
non-sexist.</p>
      <sec id="sec-2-1">
        <title>2.2. External Data</title>
        <p>
          To further pre-train the chosen transformer model (XLM-R) we used additional datasets - as
in our last year’s approach [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ] for the EXIST2022 shared task [13]. Apart from utilizing
the EXIST2022 dataset, we incorporated additional datasets specifically created for analogous
classification tasks (refer to the following list for more details). We utilized additionally unlabeled
tweets during the pre-training process as we did in 2022. By doing so, our aim was to establish
a degree of comparability between our approach for EXIST2023 and the previous iteration.
The unlabeled tweets were extracted via the oficial Twitter API - specifically from the full
COVID-19 stream, which was made openly accessible in 2020 due to the pandemic (https:
//developer.twitter.com/en/docs/twitter-api/tweets/covid-19-stream/overview). We filtered the
Twitter stream with hashtags - that contain sexism related content - present in the data of
the EXIST2022 challenge. This resulted in around 40 million tweets in English and Spanish,
which was randomly sampled to a total amount of 10,475,215 for pre-training. The following
list describes the external datasets we used for pre-training:
• SOT [14] is a dataset that contains Spanish comments from the Twitch network. The
comments were extracted from user profiles of female Twitch streamers, filtered based
on topic and amount of followers. Each comment was first classified into innocuous
or inappropriate, and afterwards into love-stuck and strongly sexist. Approximately 300
comments have been classified as inappropriate, which consist of 50% love-stuck and 50%
strongly-sexist. The other 3,000 comments were classified as innocuous.
• CMSB [15] is an English dataset that contains a total amount of 13,634 texts combining
social media posts (tweets), psychological survey items and synthetic adversarial
modifications of both. The social media posts were aggregated from three published datasets:
the hostile sexism dataset [16], the benevolent sexism dataset [17] and the call me sexism
dataset [18].
• SCB [19] is a Spanish dataset about violent and misogynistic content retrieved from
        </p>
        <p>Twitter. It contains a total of 5,520 instances.
• MeTwo [20] is a Spanish dataset containing Twitter comments regarding sexist innuendo,
behaviors, and expressions labeled with the following terms: SEXIST, NON_SEXIST and
DOUBTFUL. The dataset consists of 3,600 comments in total.
• SSC [21] is an English dataset with a total of 6,238 comments retrieved from Instagram and
annotated with the labels sexist and non-sexist. The authors filtered comments based on
hashtags, such as: "bloodymen", "boys", "everydaysexism", "girls", "guys", "manspalining",
"metoo", "sexism", "sexist" and "slutshaming".
• ISEP [22] is an English dataset containing workplace-related sexist comments. The
authors diferentiate between unambiguous sexist comments and ambiguous or neutral
cases. The dataset contains 1,100 comments in total.
• MTM [23] is an English dataset that contains definitions from Urban dictionary. The - in
total 2,285 - definitions were labeled as misogynistic and non-misogynistic.
• HatEval2019 [24] is an English and Spanish dataset containing 13,000 English and 6,000
Spanish tweets. The main theme of the comments are hate speech against women and
immigrants. The tweets were annotated into three categories: 1) Hate Speech (against
women or immigrants), 2) Target Range (against a generic group or individual), and 3)
Aggressiveness.</p>
      </sec>
      <sec id="sec-2-2">
        <title>2.3. Overview of Approaches</title>
        <p>
          In Figure 1 a graphical overview of our approaches including the diferent training strategies
are displayed. The focus of our setup is on generating embeddings based on the EXIST2023 data
using diferent XLM-RoBERTa models and training a Random Forest on these embeddings. This
includes embeddings generated by an pre-trained and fine-tuned XLM-R model, a sentiment
detection XLM-R-SENT model [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ], a toxicity detection XLM-R-TOXI model [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ], and additional
hand-crafted features.
        </p>
      </sec>
      <sec id="sec-2-3">
        <title>2.4. Unsupervised Pre-Training of XLM-R</title>
        <p>We trained the XLM-R model on the Masked Language Modeling (MLM) task with a probability
of 0.15. This means that 15% of the text gets masked randomly during training. The masked out
tokens have to be predicted during pre-training. The model was trained for five epochs with
a batch size of 16 and a learning rate of 2− 5. The model was trained on the EXIST2022 data
and the additional datasets (CMSB, HateEval, ISEP, MeTwo, MTM, SCB, SOT, and SSC), but also
on a large dataset of tweets we sampled from the Covid-19 stream. To reduce the amount of
training time, we only used 10 million randomly selected samples. This resulted in an overall
training time of about seven days.</p>
      </sec>
      <sec id="sec-2-4">
        <title>2.5. Supervised Fine-Tuning of XLM-R</title>
        <p>For training the baselines for task 1, 2 and 3, we fine-tuned our pre-trained XLM-R on the original
EXIST 2023 dataset for three epochs using a learning rate of 3− 5, linear scheduler with 500
warm-up steps, weight decay of 0.01 and a batch size of eight. We trained a binary classification
model for task 1, multi-class classification model for task 2 and multi-label classification model
for task 3. We obtained hard labels with a predicted probability threshold of 0.5. We used the
CLS-token from the last network layers to extract text embeddings for the combined approaches.</p>
      </sec>
      <sec id="sec-2-5">
        <title>2.6. Sentiment and Toxicity Features</title>
        <p>
          To enrich the baseline representation (see above), we incorporated learned embeddings from
sentiment [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] and toxicity classification models [
          <xref ref-type="bibr" rid="ref10">10, 25</xref>
          ] in our second approach. First, we ran a
few experiments on diferent pre-trained and fine-tuned sentiment and toxicity classification
models from HuggingFace. Then, the embeddings of the best-performing models were computed
for the training, development, as well as the test set. These embeddings were then concatenated
along with the XML-R embeddings for the final submissions of our second approach.
        </p>
      </sec>
      <sec id="sec-2-6">
        <title>2.7. Additional Hand-Crafted Features</title>
        <p>For our third approach we extracted additional hand-crafted features and followed a similar
approach as in [26]. The authors concatenated embeddings extracted from fine-tuned language
models with additional hand-crafted features and used a Multi-Layer Perceptron as classifier.
Although this approach was originally targeted at the detection of toxic content, we transferred
it to sexism detection, since we believe those domains are similar. The hand-crafted features
include:
• Hashtags: Number of extracted hashtags per text.
• Links: Number of extracted links per text.
• Word Count: Total number of words.
• Punctuation marks: Total number of punctuation marks.
• Exclamation marks: Total number of exclamation marks.
• Question marks: Total number of question marks.
• Word Punctuation Ratio: The ratio of punctuation in relation to the number of words.
• Word Exclamation Ratio: The ratio of exclamation marks in relation to the number of
words.
• Word Question Ratio: The ratio of question marks in relation to the number of words.
• Emoji Count: The number of emojis found in each text. The emojis were extracted via the
emojis library.</p>
        <p>• Emoji Ratio: The number of emojis in relation to the number words.</p>
      </sec>
      <sec id="sec-2-7">
        <title>2.8. Supervised Training of Random Forests</title>
        <p>For our second approach (XLM-R_senttox), we trained the Random Forest on the embeddings
generated by our pre- and fine-tuned XLM-R model as well as with the additional sentiment
and toxicity embeddings described in section 2.6.</p>
        <p>
          For our third approach (XLM-R_craft), instead of utilizing sentiment and toxicity embeddings,
we trained the Random Forest model using the additional hand-crafted features described in
Section 2.7. Here, the embeddings and the additional features were compressed with PCA
[
          <xref ref-type="bibr" rid="ref8">8</xref>
          ]. The selection of the number of components was based on a threshold of 95% (preserved
variance), ensuring that the cumulative explained variance surpasses the specified threshold.
We performed a grid-search to determine the best values for the number and the maximum
depth of the trees. For the final predictions we defined the RFs with 500 trees with a maximum
depth of 15 in both approaches.
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Results</title>
      <p>
        This section documents every result for all tasks and evaluation types for the proposed
approaches on this year’s EXIST shared task. The shared task describes multiple classification
levels. After categorizing each text as sexist or not (task 1) the sexist comments have several
sub-levels (task 2 and 3). For task 2 it can only be one of the three labels and for task 3 the
labels are not mutually exclusive. The standard evaluation metrics for classification tasks would
be accuracy, precision, recall and the f1-score. However, for this year’s challenge the authors
introduced new evaluation metrics. Furthermore there are so-called "hard" and "soft" labels. In
the “hard” ground truth the final annotations are made via a gold standard such as majority
voting. In the “soft” ground truth the variability of annotations by diferent annotators is taken
into account. In the hard setting for each text a final label has to be predicted, in comparison to
the soft setting, where the output has to be a probability for each label. Therefore, the evaluation
combinations by the authors are defined as: hard-hard, hard-soft, and soft-soft. The first part
of the terms relate to the system output; the second to the ground truth, e.g., for hard-soft
the hard predictions are evaluated with the soft ground truth. The proposed metrics by the
organizers are ICM (Information Contrast Measure) [27] and ICM-soft. The ICM measures
the similarity of the predicted labels to the original ground truth categories. The ICM-soft is
an extension of the ICM measure by the EXIST 2023 organizers to help with the hierarchical
multilabel classification issue for soft outputs and ground truths [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. For hard-hard the oficial
metric is ICM, for hard-soft the oficial metric is ICM-soft, and for soft-soft the oficial metric is
also ICM-soft. This leads to three approaches submitted to the shared task:
1. Approach 1: XLM-R_only (task 1, task 2, task 3): We fine-tuned the XLM-R on the
validation and dev data from the EXIST 2023 in a supervised end-to-end approach for the
binary classification task predicting the class labels (i.e., one output node for each class).
      </p>
      <p>This approach obtained only hard predictions.
2. Approach 2: XLM-R_senttox (task 1, task 2): We used the embeddings from the
model trained in XLM-R_only and additionally we used embeddings from a sentiment
analysis and a toxicity analysis model and trained a random forest on these embeddings.
This approach obtained hard and soft predictions. For the soft predictions we used the
prediction probabilities of the Random Forest.
3. Approach 3: XLM-R_craft (task 1, task 2): We used the embeddings from the model
trained in XLM-R_only, performed a PCA on these embeddings and trained a Random
Results of our approach for task 1 (sexism detection). Each sub-task is shown for both languages and
split by language. Cross-entropy (Cross Ent.) was not provided for hard-soft evaluation (noted with an
"X"). Runs without results are noted with "-".
Forest. This approach obtained hard and soft predictions. For the soft predictions we
used the prediction probabilities of the Random Forest.</p>
      <p>In general in our experiments we found that our models performed best on task 2, the
multiclass classification, as well as the Spanish texts overall. For the soft-soft versions our
XLM-R_craft model scored the best results. For the hard-hard evaluation our best model was
for task 1 as well as task 2 - the XLM-R_only. For task 3 we only submitted the XLM-R_only
model which scored 3 place for the ALL hard-hard evaluation.</p>
      <p>In Table 1 the results for task 1 are shown, where our models performed best for soft-soft
predictions and much worse for hard-hard and hard-soft predictions. However, for the soft-soft
evaluation, the XLM-R_craft model performs best with ranking 17ℎ. On the other hand, in
task 2 (Table 2) we performed significantly better. Results show that our models had problems
in classifying the non-sexist samples from task 1. For task 2 the models performed especially
well for the Spanish texts in combination with the additional hand-crafted features. In Table 3
the results for task 3 are shown. For task 3 we only submitted the XLM-R_only model which
scored 3 place for the English hard-hard evaluation.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Discussion &amp; Conclusion</title>
      <p>In this paper, we provided the details on our submission to the EXIST 2023 benchmark, which
consists of three tasks on the classification of sexist content. We presented three approaches
using an XLM-R model as a baseline. We pre-trained the already available XLM-R model with
10 million tweets containing hashtags from last year’s shared task data (EXIST 2022) as well</p>
      <p>Task
3 Soft-Soft
3 Soft-Soft
3 Soft-Soft
3 Hard-Hard
3 Hard-Hard
3 Hard-Hard
3 Hard-Soft
3 Hard-Soft
3 Hard-Soft</p>
      <p>ALL
ES
EN</p>
      <p>ALL
ES</p>
      <p>EN
ALL
ES
EN
as with additional annotated datasets related to the topic. We then fine-tuned this XLM-R
model on the EXIST 2023 data to achieve baselines for tasks 1-3. To enhance our baseline we
integrated several additional features for our second and third approach (targeted embeddings
for sentiment and toxicity representation as well as hand-crafted features) and trained a Random
Forest on top of them to obtain final hard and soft labels.</p>
      <p>Results show that our approaches performed best on task 2, in particular for the Spanish
content. For the soft-soft evaluation the XLM-R model with hand-crafted features scored best.
For Spanish content we achieved the best results among all participants. For the hard-hard
evaluation the best approach was the XLM-R_only for task 1 as well as for task 2. For task 3 we
only submitted the XLM-R baseline which scored 3 across all participants. In the future, we
intend to investigate the combination of our findings from EXIST 2022, which involved data
augmentation, using translations, and additional datasets for fine-tuning, with the approach
employed in the current year.</p>
    </sec>
    <sec id="sec-5">
      <title>Acknowledgments</title>
      <p>This work is enhanced by the Austrian Institute of Technology GmbH (AIT) funded by the FFG
project "RAIDAR" (grant no. 886364, Austrian security research program KIRAS of the Federal
Ministry of Finance (BMF)). This project further received funding by the Vienna Science and
Technology Fund (WWTF) [10.47379/ICT20016] at St. Pölten University of Applied Sciences.
volume 3202, CEUR-WS, 2022, pp. 1–13. EXIST2022 ; Conference date: 20-09-2022.
[13] F. Rodríguez-Sánchez, J. C. de Albornoz, L. Plaza, A. Mendieta-Aragón, G. Marco-Remón,
M. Makeienko, M. Plaza, J. Gonzalo, D. Spina, P. Rosso, Overview of exist 2022: sexism
identification in social networks, Procesamiento del Lenguaje Natural 69 (2022).
[14] D. G. Ibáñez, R. V. Puig, Sexism bot classifier on twitch: Moderating sexist comments on
twitch streamings., 2020. URL: https://github.com/VPRamon/SexismOnTwitch, accessed:
2021-05-04.
[15] M. Samory, I. Sen, J. Kohne, F. Floeck, C. Wagner, The ’call me sexist but’ dataset (cmsb),
2021. URL: https://doi.org/10.7802/2251, accessed: 2022-03-09.
[16] Z. Waseem, D. Hovy, Hateful symbols or hateful people? predictive features for hate
speech detection on Twitter, in: Proceedings of the NAACL Student Research Workshop,
Association for Computational Linguistics, San Diego, California, 2016, pp. 88–93. URL:
https://aclanthology.org/N16-2013. doi:10.18653/v1/N16-2013.
[17] A. Jha, R. Mamidi, When does a compliment become sexist? analysis and
classification of ambivalent sexism using twitter data, in: Proceedings of the Second
Workshop on NLP and Computational Social Science, Association for Computational
Linguistics, Vancouver, Canada, 2017, pp. 7–16. URL: https://aclanthology.org/W17-2902.
doi:10.18653/v1/W17-2902.
[18] M. Samory, I. Sen, J. Kohne, F. Flöck, C. Wagner, "unsex me here": Revisiting sexism
detection using psychological scales and adversarial samples, CoRR abs/2004.12764 (2020).</p>
      <p>URL: https://arxiv.org/abs/2004.12764. arXiv:2004.12764.
[19] R. I. Medina, Sexismo en código binario: Violencia digital y política contra las mujeres
en méxico, 2021. URL: https://github.com/RMedina19/sexismo_codigo_binario, accessed:
2022-03-09.
[20] F. Rodríguez-Sánchez, J. Carrillo-de-Albornoz, L. Plaza, Automatic classification of sexism
in social networks: An empirical study on twitter data, IEEE Access 8 (2020) 219563–219576.
doi:10.1109/ACCESS.2020.3042604.
[21] A. Debnath, S. S, N. Bhakt, K. Garg, P. Parikh, Sexist stereotype classification on
instagram data, 2020. URL: https://github.com/djinn-anthrope/Sexist_Stereotype_Classification,
accessed: 2021-05-04.
[22] D. Grosz, P. C. Céspedes, Automatic detection of sexist statements commonly
used at the workplace, CoRR abs/2007.04181 (2020). URL: https://arxiv.org/abs/2007.
04181. arXiv:2007.04181,
https://www.kaggle.com/datasets/dgrosz/sexist-workplacestatements, accessed: 2022-03-09.
[23] T. Lynn, P. T. Endo, P. Rosati, I. Silva, G. L. Santos, D. . Ging, Urban dictionary definitions
dataset for misogyny speech detection, 2019. URL: https://data.mendeley.com/datasets/
3jfwsdkryy/3. doi:10.17632/3jfwsdkryy.3, accessed: 2021-05-04.
[24] V. Basile, C. Bosco, E. Fersini, D. Nozza, V. Patti, F. M. Rangel Pardo, P. Rosso, M. Sanguinetti,
SemEval-2019 task 5: Multilingual detection of hate speech against immigrants and women
in twitter, in: Proceedings of the 13th International Workshop on Semantic Evaluation,
Association for Computational Linguistics, Minneapolis, Minnesota, USA, 2019, pp. 54–63.
[25] T. Davidson, D. Warmsley, M. W. Macy, I. Weber, Automated hate speech detection and
the problem of ofensive language, CoRR abs/1703.04009 (2017). URL: http://arxiv.org/abs/
1703.04009. arXiv:1703.04009.
[26] M. Schütz, C. Demus, J. Pitz, N. Probol, M. Siegel, D. Labudde, DeTox at GermEval
2021: Toxic comment classification, in: Proceedings of the GermEval 2021 Shared
Task on the Identification of Toxic, Engaging, and Fact-Claiming Comments,
Association for Computational Linguistics, Duesseldorf, Germany, 2021, pp. 54–61. URL:
https://aclanthology.org/2021.germeval-1.8.
[27] E. Amigo, A. Delgado, Evaluating extreme hierarchical multi-label classification, in:
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. URL: https://aclanthology.org/2022.acl-long.399. doi:10.18653/v1/2022.
acl-long.399.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>C.</given-names>
            <surname>Demus</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Pitz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Schütz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Probol</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Siegel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Labudde</surname>
          </string-name>
          ,
          <article-title>Detox: A comprehensive dataset for german ofensive language and conversation analysis</article-title>
          ,
          <source>in: Proceedings of the 6th Workshop on Online Abuse and Harms (WOAH</source>
          <year>2022</year>
          ),
          <article-title>Association for Computational Linguistics</article-title>
          , Online,
          <year>2022</year>
          , pp.
          <fpage>54</fpage>
          -
          <lpage>61</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>M.</given-names>
            <surname>Schütz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Schindler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Siegel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Nazemi</surname>
          </string-name>
          ,
          <article-title>Automatic fake news detection with pretrained transformer models</article-title>
          , in: A.
          <string-name>
            <surname>Del Bimbo</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Cucchiara</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Sclarof</surname>
            ,
            <given-names>G. M.</given-names>
          </string-name>
          <string-name>
            <surname>Farinella</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Mei</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Bertini</surname>
            ,
            <given-names>H. J.</given-names>
          </string-name>
          <string-name>
            <surname>Escalante</surname>
          </string-name>
          , R. Vezzani (Eds.),
          <source>Pattern Recognition. ICPR International Workshops and Challenges</source>
          , Springer International Publishing, Cham,
          <year>2021</year>
          , pp.
          <fpage>627</fpage>
          -
          <lpage>641</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>L.</given-names>
            <surname>Plaza</surname>
          </string-name>
          , J. C. de Albornoz,
          <string-name>
            <given-names>R.</given-names>
            <surname>Morante</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>D.</given-names>
            <surname>Spina</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          ,
          <article-title>Overview of exist 2023 - learning with disagreement for sexism identification and characterization</article-title>
          , in: A.
          <string-name>
            <surname>Arampatzis</surname>
            , E. Kanoulas,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Tsikrika</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Vrochidis</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Giachanou</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Aliannejadi</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Vlachos</surname>
          </string-name>
          , G. Faggioli, N. Ferro (Eds.),
          <source>Experimental IR Meets Multilinguality</source>
          , Multimodality, and Interaction, CLEF Association, Thessaloniki, Greece,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>L.</given-names>
            <surname>Plaza</surname>
          </string-name>
          , J. C. de Albornoz,
          <string-name>
            <given-names>R.</given-names>
            <surname>Morante</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>D.</given-names>
            <surname>Spina</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          ,
          <article-title>Overview of exist 2023 - learning with disagreement for sexism identification and characterization (extended overview)</article-title>
          , in: M.
          <string-name>
            <surname>Aliannejadi</surname>
            , G. Faggioli,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Ferro</surname>
          </string-name>
          , M. Vlachos (Eds.),
          <source>Working Notes of CLEF 2023 - Conference and Labs of the Evaluation Forum</source>
          ,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>A.</given-names>
            <surname>Conneau</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Khandelwal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Chaudhary</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Wenzek</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Guzmán</surname>
          </string-name>
          , E. Grave,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ott</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>Unsupervised cross-lingual representation learning at scale</article-title>
          , CoRR abs/
          <year>1911</year>
          .02116 (
          <year>2019</year>
          ). URL: http://arxiv.org/abs/
          <year>1911</year>
          .02116. arXiv:
          <year>1911</year>
          .02116.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>T.</given-names>
            <surname>Wolf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Debut</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Sanh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Chaumond</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Delangue</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Moi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Cistac</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Rault</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Louf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Funtowicz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Davison</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Shleifer</surname>
          </string-name>
          , P. von Platen, C. Ma,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Jernite</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Plu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T. L.</given-names>
            <surname>Scao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Gugger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Drame</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Lhoest</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Rush</surname>
          </string-name>
          , Transformers:
          <article-title>State-of-the-art natural language processing</article-title>
          ,
          <source>in: 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>38</fpage>
          -
          <lpage>45</lpage>
          . URL: https://www.aclweb.org/anthology/2020.emnlp-demos.
          <volume>6</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>L.</given-names>
            <surname>Breiman</surname>
          </string-name>
          , Random forests,
          <source>Machine Learning</source>
          <volume>45</volume>
          (
          <year>2001</year>
          )
          <fpage>5</fpage>
          -
          <lpage>32</lpage>
          . doi:
          <volume>10</volume>
          .1023/A:
          <fpage>1010950718922</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>A.</given-names>
            <surname>Maćkiewicz</surname>
          </string-name>
          , W. Ratajczak,
          <article-title>Principal components analysis (PCA)</article-title>
          ,
          <source>Computers &amp; Geosciences</source>
          <volume>19</volume>
          (
          <year>1993</year>
          )
          <fpage>303</fpage>
          -
          <lpage>342</lpage>
          . URL: https://www.sciencedirect.com/science/article/pii/ 009830049390090R. doi:https://doi.org/10.1016/
          <fpage>0098</fpage>
          -
          <lpage>3004</lpage>
          (
          <issue>93</issue>
          )
          <fpage>90090</fpage>
          -
          <lpage>R</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>F.</given-names>
            <surname>Barbieri</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. Espinosa</given-names>
            <surname>Anke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Camacho-Collados</surname>
          </string-name>
          ,
          <article-title>Xlm-t: Multilingual language models in twitter for sentiment analysis and beyond</article-title>
          ,
          <source>in: Proceedings of the Language Resources and Evaluation Conference</source>
          , European Language Resources Association, Marseille, France,
          <year>2022</year>
          , pp.
          <fpage>258</fpage>
          -
          <lpage>266</lpage>
          . URL: https://aclanthology.org/
          <year>2022</year>
          .lrec-
          <volume>1</volume>
          .
          <fpage>27</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>F.</given-names>
            <surname>Barbieri</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. A.</given-names>
            <surname>Espinosa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Camacho-Collados</surname>
          </string-name>
          , Detoxify, Github. https://github.com/unitaryai/detoxify,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>M.</given-names>
            <surname>Schütz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Boeck</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Liakhovets</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Slijepcevic</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Kirchknopf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hecht</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Bogensperger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Schlarb</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Schindler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Zeppelzauer</surname>
          </string-name>
          ,
          <article-title>Automatic sexism detection with multilingual transformer models</article-title>
          ,
          <source>CoRR abs/2106</source>
          .04908 (
          <year>2021</year>
          ). URL: https://arxiv.org/abs/2106.04908. arXiv:
          <volume>2106</volume>
          .
          <fpage>04908</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>D.</given-names>
            <surname>Liakhovets</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Schütz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Böck</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Andresel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Kirchknopf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Babic</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Slijpcevic</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Lampert</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Schindler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Zeppelzauer</surname>
          </string-name>
          ,
          <article-title>Transfer learning for automatic sexism detection with multilingual transformer models</article-title>
          , in: M.
          <string-name>
            <surname>Montes-y Gómez</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Gonzalo</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Rangel</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Casavantes</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Álvarez-Carmona</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>Bel-Enguix</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          <string-name>
            <surname>Escalante</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Freitas</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>MirandaEscalada</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Rodríguez-Sánchez</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Rosá</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Sobrevilla-Cabezudo</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Taulé</surname>
          </string-name>
          , R. ValenciaGarcía (Eds.),
          <source>Proceedings of the Iberian Languages Evaluation Forum (IberLef</source>
          <year>2022</year>
          ),
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>