Breaking the Silence Detecting and Mitigating Gendered Abuse in Hindi, Tamil, and Indian English Online Spaces

Advaitha Vetagiri,Gyandeep Kalita,Eisha Halder,Chetna Taparia,Partha Pakray,Riyanka Manna
2024-04-03
Abstract:Online gender-based harassment is a widespread issue limiting the free expression and participation of women and marginalized genders in digital spaces. Detecting such abusive content can enable platforms to curb this menace. We participated in the Gendered Abuse Detection in Indic Languages shared task at ICON2023 that provided datasets of annotated Twitter posts in English, Hindi and Tamil for building classifiers to identify gendered abuse. Our team CNLP-NITS-PP developed an ensemble approach combining CNN and BiLSTM networks that can effectively model semantic and sequential patterns in textual data. The CNN captures localized features indicative of abusive language through its convolution filters applied on embedded input text. To determine context-based offensiveness, the BiLSTM analyzes this sequence for dependencies among words and phrases. Multiple variations were trained using FastText and GloVe word embeddings for each language dataset comprising over 7,600 crowdsourced annotations across labels for explicit abuse, targeted minority attacks and general offences. The validation scores showed strong performance across f1-measures, especially for English 0.84. Our experiments reveal how customizing embeddings and model hyperparameters can improve detection capability. The proposed architecture ranked 1st in the competition, proving its ability to handle real-world noisy text with code-switching. This technique has a promising scope as platforms aim to combat cyber harassment facing Indic language internet users. Our Code is at
Computation and Language
What problem does this paper attempt to address?
The problem that this paper attempts to solve is online gender - based violence (GBV), especially the detection of gender - abuse in Indian languages (Hindi, Tamil and Indian English). Online gender - based violence is a widespread problem, which restricts the free expression and participation of women and marginalized gender groups in the digital space. By detecting such abusive content, platforms can curb this problem, thus protecting these groups from the impact of cyber - harassment. Specifically, the goals of the paper include: 1. **Constructing a classifier**: Develop a classifier capable of identifying gender - abuse content, especially in Indian languages. 2. **Transfer learning**: Utilize other publicly available datasets (such as the multilingual abusive comment detection dataset) for transfer learning to improve the performance of the gender - abuse detection model. 3. **Multi - task classifier**: Build a multi - task classifier to estimate the content of gender - abuse and explicit language simultaneously. To achieve these goals, the research team used an integrated method of convolutional neural network (CNN) and bidirectional long - short - term memory network (BiLSTM), combined with FastText and GloVe word - embedding techniques. This method can effectively capture semantic and sequence patterns in text data, thereby improving the detection ability of the model.