https://github.com/gokulnpc/toxic-comment-classifier
This project employs a deep neural network architecture for the classification of toxic comments, utilizing the Kaggle competition dataset from the Jigsaw Toxic Comment Classification Challenge.
https://github.com/gokulnpc/toxic-comment-classifier
bidirectional-lstm deep-learning lstm-neural-networks python textvectorization toxic-comment-classification
Last synced: about 2 months ago
JSON representation
This project employs a deep neural network architecture for the classification of toxic comments, utilizing the Kaggle competition dataset from the Jigsaw Toxic Comment Classification Challenge.
- Host: GitHub
- URL: https://github.com/gokulnpc/toxic-comment-classifier
- Owner: gokulnpc
- Created: 2024-04-18T18:41:44.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-18T18:42:18.000Z (about 1 year ago)
- Last Synced: 2025-02-02T03:44:51.845Z (4 months ago)
- Topics: bidirectional-lstm, deep-learning, lstm-neural-networks, python, textvectorization, toxic-comment-classification
- Language: Jupyter Notebook
- Homepage:
- Size: 25.9 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Toxic Comment Classification using Deep Neural Networks
This project employs a deep neural network architecture for the classification of toxic comments, utilizing the Kaggle competition dataset from the Jigsaw Toxic Comment Classification Challenge. The model incorporates an embedding layer to convert text into dense vectors, followed by a bidirectional LSTM layer to capture long-term dependencies in the comment sequences. Feature extraction is performed using multiple dense layers, culminating in a final output layer that predicts the probabilities of six toxicity categories: toxic, severe toxic, obscene, threat, insult, and identity hate.