Views
No views yet
10: admiration
21: amusement
32: anger
43: annoyance
54: approval
65: caring
76: confusion
87: curiosity
98: desire
109: disappointment
1110: disapproval
1211: disgust
1312: embarrassment
1413: excitement
1514: fear
1615: gratitude
1716: grief
1817: joy
1918: love
2019: nervousness
2120: optimism
2221: pride
2322: realization
2423: relief
2524: remorse
2625: sadness
2726: surprise
2827: neutral1admiration: восхищение
2amusement: веселье
3anger: злость
4annoyance: раздражение
5approval: одобрение
6caring: забота
7confusion: непонимание
8curiosity: любопытство
9desire: желание
10disappointment: разочарование
11disapproval: неодобрение
12disgust: отвращение
13embarrassment: смущение
14excitement: возбуждение
15fear: страх
16gratitude: признательность
17grief: горе
18joy: радость
19love: любовь
20nervousness: нервозность
21optimism: оптимизм
22pride: гордость
23realization: осознание
24relief: облегчение
25remorse: раскаяние
26sadness: грусть
27surprise: удивление
28neutral: нейтральность1from transformers import pipeline
2model = pipeline(model="seara/rubert-base-cased-ru-go-emotions")
3model("Привет, ты мне нравишься!")
4# [{'label': 'love', 'score': 0.5456761717796326}]1tokenizer.max_length: null
2batch_size: 32
3optimizer: adam
4lr: 0.00001
5weight_decay: 0
6num_epochs: 5| precision | recall | f1-score | auc-roc | support | |
|---|---|---|---|---|---|
| admiration | 0.66 | 0.66 | 0.66 | 0.93 | 504 |
| amusement | 0.79 | 0.81 | 0.8 | 0.97 | 264 |
| anger | 0.53 | 0.3 | 0.39 | 0.91 | 198 |
| annoyance | 0.0 | 0.0 | 0.0 | 0.82 | 320 |
| approval | 0.62 | 0.25 | 0.36 | 0.82 | 351 |
| caring | 0.69 | 0.13 | 0.22 | 0.86 | 135 |
| confusion | 0.56 | 0.18 | 0.28 | 0.92 | 153 |
| curiosity | 0.52 | 0.4 | 0.45 | 0.95 | 284 |
| desire | 0.67 | 0.24 | 0.35 | 0.89 | 83 |
| disappointment | 0.88 | 0.05 | 0.09 | 0.82 | 151 |
| disapproval | 0.56 | 0.17 | 0.26 | 0.88 | 267 |
| disgust | 0.83 | 0.2 | 0.33 | 0.92 | 123 |
| embarrassment | 0.0 | 0.0 | 0.0 | 0.88 | 37 |
| excitement | 0.78 | 0.14 | 0.23 | 0.9 | 103 |
| fear | 0.83 | 0.37 | 0.51 | 0.92 | 78 |
| gratitude | 0.94 | 0.9 | 0.92 | 0.99 | 352 |
| grief | 0.0 | 0.0 | 0.0 | 0.72 | 6 |
| joy | 0.7 | 0.4 | 0.51 | 0.94 | 161 |
| love | 0.77 | 0.81 | 0.79 | 0.97 | 238 |
| nervousness | 0.0 | 0.0 | 0.0 | 0.85 | 23 |
| optimism | 0.66 | 0.52 | 0.58 | 0.92 | 186 |
| pride | 0.0 | 0.0 | 0.0 | 0.76 | 16 |
| realization | 0.0 | 0.0 | 0.0 | 0.74 | 145 |
| relief | 0.0 | 0.0 | 0.0 | 0.72 | 11 |
| remorse | 0.58 | 0.68 | 0.63 | 0.99 | 56 |
| sadness | 0.58 | 0.44 | 0.5 | 0.92 | 156 |
| surprise | 0.62 | 0.45 | 0.52 | 0.91 | 141 |
| neutral | 0.72 | 0.47 | 0.57 | 0.84 | 1787 |
| micro avg | 0.7 | 0.42 | 0.53 | 0.94 | 6329 |
| macro avg | 0.52 | 0.31 | 0.36 | 0.88 | 6329 |
| weighted avg | 0.63 | 0.42 | 0.49 | 0.88 | 6329 |