Gopinath-AI/glassdoor_reviews
Viewer β’ Updated β’ 839k β’ 39
Fine-tuned DistilBERT for 3-class sentiment classification of company culture based on employee reviews.
π Live App: https://workpulse-frontend-pied.vercel.app
This model classifies employee reviews into 3 categories:
pros field. Solution: used cons text for Negative/Neutral labels and pros text for Positive labels to eliminate label-text mismatch.| Metric | Score |
|---|---|
| Overall Accuracy | 78.9% |
| F1 β Negative | 0.689 |
| F1 β Neutral | 0.712 |
| F1 β Positive | 0.966 |
| F1 β Macro | 0.789 |
from transformers import pipeline
classifier = pipeline(
"text-classification",
model="Madhuri1003/workpulse-distilbert"
)
result = classifier("Great culture, supportive management, excellent work life balance")
print(result)
# [{'label': 'Positive', 'score': 0.999}]