r1char9 commited on
Commit
3b557a6
1 Parent(s): ef58d9c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -7
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
- model('Hello, I love you.')
102
- # [{'label': 'love', 'score': 0.911257266998291}]
 
 
 
 
 
 
 
 
 
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
  ```