Wondering About Dimensionality in Sentiment and Emotion Classification

Hello, Iā€™m looking for pre-trained models that can provide some dimensionality for sentiments and emotions (e.g., amount of fear between 0-1). Iā€™m most interested in the j-hartmann/emotion-english-distilroberta-base model. Iā€™m wondering if the output scores for each emotion could be interpreted as a dimensional score (e.g., joy = .98, sad = .41). Is that possible? If not, is there a way to fine-tune the model to accommodate this? Are there models Iā€™m missing that already do what Iā€™m asking?

There are 7 classes and labels. Coming from this model. The output looks like this:
Output:
[[{ā€˜labelā€™: ā€˜angerā€™, ā€˜scoreā€™: 0.004419783595949411},
{ā€˜labelā€™: ā€˜disgustā€™, ā€˜scoreā€™: 0.0016119900392368436},
{ā€˜labelā€™: ā€˜fearā€™, ā€˜scoreā€™: 0.0004138521908316761},
{ā€˜labelā€™: ā€˜joyā€™, ā€˜scoreā€™: 0.9771687984466553},
{ā€˜labelā€™: ā€˜neutralā€™, ā€˜scoreā€™: 0.005764586851000786},
{ā€˜labelā€™: ā€˜sadnessā€™, ā€˜scoreā€™: 0.002092392183840275},
{ā€˜labelā€™: ā€˜surpriseā€™, ā€˜scoreā€™: 0.008528684265911579}]]

My question is whether the values can be interpreted as the amount of each emotion. For instance, can you say the text input is 97.7% ā€œjoyā€? If not, can models like this be fine-tuned to add such emotional dimension or is there one that already exists?

My research question involves understanding the degree of fear in text. So, rather than just knowing whether the model thinks thereā€™s fear in the text (i.e., a binary ā€œyesā€ or ā€œnoā€), Iā€™d like to know how much fear is being communicated in the text (i.e., 15%, 81%, etc.). I would also like a sentiment model that shows the same dimensionality for positive and negative sentiment. Is this possible?

Thank you very much! :slight_smile: