Update README.md
Browse files
README.md
CHANGED
@@ -2,11 +2,6 @@
|
|
2 |
license: mit
|
3 |
language:
|
4 |
- ru
|
5 |
-
metrics:
|
6 |
-
- f1
|
7 |
-
- roc_auc
|
8 |
-
- precision
|
9 |
-
- recall
|
10 |
pipeline_tag: text-classification
|
11 |
tags:
|
12 |
- sentiment-analysis
|
@@ -98,6 +93,15 @@ from transformers import pipeline
|
|
98 |
model = pipeline(model="r1char9/rubert-tiny2-ru-go-emotions")
|
99 |
model("Привет, ты мне нравишься!")
|
100 |
# [{'label': 'love', 'score': 0.5955629944801331}]
|
101 |
-
|
102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
```
|
|
|
2 |
license: mit
|
3 |
language:
|
4 |
- ru
|
|
|
|
|
|
|
|
|
|
|
5 |
pipeline_tag: text-classification
|
6 |
tags:
|
7 |
- sentiment-analysis
|
|
|
93 |
model = pipeline(model="r1char9/rubert-tiny2-ru-go-emotions")
|
94 |
model("Привет, ты мне нравишься!")
|
95 |
# [{'label': 'love', 'score': 0.5955629944801331}]
|
96 |
+
```
|
97 |
+
|
98 |
+
## Metrics:
|
99 |
+
|
100 |
+
```
|
101 |
+
write draw neutral micro avg macro avg weighted avg \
|
102 |
+
precision 1.0 1.0 1.0 1.0 1.0 1.0
|
103 |
+
recall 1.0 1.0 1.0 1.0 1.0 1.0
|
104 |
+
f1-score 1.0 1.0 1.0 1.0 1.0 1.0
|
105 |
+
support 155.0 117.0 19.0 291.0 291.0 291.0
|
106 |
+
auc-roc 1.0 1.0 1.0 1.0 1.0 1.0
|
107 |
```
|