This model is a fine-tuned version of
cardiffnlp/twitter-roberta-base-sentiment designed to solve the
"Literal Trap" in sentiment analysis.
Ideal for lead qualification and sentiment tracking in informal DM environments (Instagram, TikTok, WhatsApp) where users speak naturally and use high-energy slang.
This model is not intended for formal document analysis, legal texts, or clinical psychology sentiment where words like "insane" or "dead" retain their literal, serious meanings.
1from transformers import pipeline
2
3classifier = pipeline("sentiment-analysis", model="ghcvbn/sentiment-with-genz-slang-words-false-negative")
4
5# Test a slang phrase
6result = classifier("this is insane, im terrified and im obsessed")
7print(result)
8# Expected: [{'label': 'positive', 'score': 0.98}]