Views
No views yet
bert-base-uncased model designed to measure Joy Intensity (0–3) in mindfulness-inspired language.| Label | Meaning |
|---|---|
| 0 | Low Joy |
| 1 | Neutral |
| 2 | Warm |
| 3 | High Joy |
1from transformers import pipeline
2clf = pipeline("text-classification", model="DrJJoy/bulldog-joy-bert")
3clf("Walking in the sunrise with my bulldog.")
4# [{'label': '3', 'score': 0.982}]