CareGuard is a fine-tuned Large Language Model (LLM) designed for cyberbullying and harmful language detection in short social media texts, particularly tweets.
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.
1pipe = pipeline(
2 "text-classification",
3 model="JeloH/cyberbully_ft_FacebookAI_xlm_roberta_base",
4 truncation=True,
5 # device=0 # enable if GPU available
6)