naumov-al commited on
Commit
f871c58
·
1 Parent(s): 307f9b6

add table with baselines

Browse files
Files changed (1) hide show
  1. README.md +10 -3
README.md CHANGED
@@ -142,9 +142,16 @@ test_df = load_dataset('sagteam/author_profiling', split='test')
142
 
143
  This dataset is intended for multi-class and multi-label text classification.
144
 
145
- The baseline models currently achieve the following F1 metrics scores (table):
146
-
147
- === coming soon ===
 
 
 
 
 
 
 
148
 
149
  ### Languages
150
 
 
142
 
143
  This dataset is intended for multi-class and multi-label text classification.
144
 
145
+ The baseline models currently achieve the following F1-weighted metrics scores (table):
146
+
147
+ | Model name | gender | age_group | gender_imitation | age_imitation | style_imitation | no_imitation | average |
148
+ | ------------------- | ------ | --------- | ---------------- | ------------- | --------------- | ------------ | ------- |
149
+ | Dummy-stratified | 0.49 | 0.29 | 0.56 | 0.32 | 0.57 | 0.55 | 0.46 |
150
+ | Dummy-uniform | 0.49 | 0.23 | 0.51 | 0.32 | 0.51 | 0.51 | 0.43 |
151
+ | Dummy-most_frequent | 0.34 | 0.27 | 0.53 | 0.17 | 0.53 | 0.53 | 0.40 |
152
+ | LinearSVC + TF-IDF | 0.67 | 0.37 | 0.62 | 0.72 | 0.71 | 0.71 | 0.63 |
153
+ | LinearSVC + TF-IDF | 0.67 | 0.37 | 0.62 | 0.72 | 0.71 | 0.71 | 0.63 |
154
+ | ------------------- | ------ | --------- | ---------------- | ------------- | --------------- | ------------ | ------- |
155
 
156
  ### Languages
157