Update README.md
Browse files
README.md
CHANGED
|
@@ -1 +1,26 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Model Card for Model ID
|
| 2 |
+
CareGuard is a fine-tuned Large Language Model (LLM) designed for cyberbullying and harmful language detection in short social media texts, particularly tweets.
|
| 3 |
+
|
| 4 |
+
|
| 5 |
+
## Model Details
|
| 6 |
+
|
| 7 |
+
CareGuard is an LLM-based text classification model fine-tuned on labeled Twitter data from the Cyberbully Detection Dataset (Kaggle). It builds on a pretrained multilingual LLM backbone and is optimized to identify cyberbullying, harassment, and abusive language patterns in online communication.
|
| 8 |
+
|
| 9 |
+
Developed by: Jeloh
|
| 10 |
+
|
| 11 |
+
Model type: Transformer-based Large Language Model (LLM) for text classification
|
| 12 |
+
|
| 13 |
+
Language(s): Multilingual (primarily English)
|
| 14 |
+
|
| 15 |
+
Finetuned from: FacebookAI/xlm-roberta-base
|
| 16 |
+
|
| 17 |
+
Model Sources
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
pipe = pipeline(
|
| 21 |
+
"text-classification",
|
| 22 |
+
model="JeloH/cyberbully_ft_distilbert_distilbert_base_uncased",
|
| 23 |
+
truncation=True,
|
| 24 |
+
# device=0 # enable if GPU available
|
| 25 |
+
)
|
| 26 |
+
|