Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- text-classification
|
| 4 |
+
- toxicity-detection
|
| 5 |
+
model-index:
|
| 6 |
+
- name: toxicity-classifier
|
| 7 |
+
results: []
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Toxicity Classifier
|
| 11 |
+
|
| 12 |
+
## Overview
|
| 13 |
+
|
| 14 |
+
This model is a fine-tuned BERT model designed for detecting toxicity in text. It classifies input text as either "toxic" or "non-toxic" based on learned patterns from a diverse dataset of online comments and discussions. The model achieves high accuracy in identifying harmful language, making it suitable for content moderation tasks.
|
| 15 |
+
|
| 16 |
+
## Model Architecture
|
| 17 |
+
|
| 18 |
+
The model is based on the BERT (Bidirectional Encoder Representations from Transformers) architecture, specifically `bert-base-uncased`. It consists of 12 transformer layers, each with 12 attention heads and a hidden size of 768. The final layer is a classification head that outputs probabilities for the two classes: non-toxic (0) and toxic (1).
|
| 19 |
+
|
| 20 |
+
## Intended Use
|
| 21 |
+
|
| 22 |
+
This model is intended for use in applications requiring automated toxicity detection, such as:
|
| 23 |
+
- Social media platforms for moderating user comments.
|
| 24 |
+
- Online forums to flag potentially harmful content.
|
| 25 |
+
- Customer support systems to identify abusive language in queries.
|
| 26 |
+
|
| 27 |
+
It can be integrated into pipelines using the Hugging Face Transformers library. Example usage:
|
| 28 |
+
|
| 29 |
+
```python
|
| 30 |
+
from transformers import pipeline
|
| 31 |
+
|
| 32 |
+
classifier = pipeline("text-classification", model="your-username/toxicity-classifier")
|
| 33 |
+
result = classifier("This is a harmful comment.")
|
| 34 |
+
print(result)
|