simocorbo commited on
Commit
bdb84fa
·
verified ·
1 Parent(s): e93f6b8

Upload toxicthesis-vicuna-distillseq-classification-2 model

Browse files
Files changed (8) hide show
  1. README.md +92 -0
  2. checkpoints/best.pt +3 -0
  3. hparams.json +35 -0
  4. patterns.json +0 -0
  5. predictions.csv +728 -0
  6. test.csv +2 -0
  7. train.csv +11 -0
  8. val.csv +11 -0
README.md ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - toxicity-detection
5
+ - distillseq
6
+ - vicuna
7
+ pipeline_tag: text-classification
8
+ language:
9
+ - en
10
+ library_name: pytorch
11
+ ---
12
+
13
+ # DISTILLSEQ - VICUNA - Classification (2 classes)
14
+
15
+ Toxicity prediction model trained on the VICUNA dataset.
16
+
17
+ | Property | Value |
18
+ |----------|-------|
19
+ | Model | DISTILLSEQ |
20
+ | Task | Classification (2 classes) |
21
+ | Dataset | vicuna |
22
+ | Framework | PyTorch / PyTorch Lightning |
23
+
24
+
25
+ ## Model Information
26
+
27
+ See the ToxicThesis repository for model class documentation.
28
+
29
+
30
+
31
+ ## Usage
32
+
33
+ ```python
34
+ from huggingface_hub import hf_hub_download
35
+ import torch
36
+
37
+ checkpoint_path = hf_hub_download(
38
+ repo_id="simocorbo/toxicthesis-vicuna-distillseq-classification-2",
39
+ filename="checkpoints/best.pt"
40
+ )
41
+
42
+ checkpoint = torch.load(checkpoint_path, map_location='cpu', weights_only=False)
43
+ print("Checkpoint keys:", checkpoint.keys())
44
+
45
+ # See ToxicThesis repository for model implementation
46
+ # git clone https://github.com/simo-corbo/ToxicThesis
47
+ ```
48
+
49
+
50
+
51
+ ## Score Interpretation
52
+
53
+ | Output | Range | Meaning |
54
+ |--------|-------|---------|
55
+ | `probability` | [0, 1] | Probability of being toxic (class 1). |
56
+ | `class` | 0 or 1 | 0 = non-toxic, 1 = toxic. |
57
+
58
+ **Decision boundary**: Class 1 if `probability >= 0.5`.
59
+
60
+
61
+ ## Files
62
+
63
+ | File | Description |
64
+ |------|-------------|
65
+ | `checkpoints/best.pt` | Model checkpoint (best validation loss) |
66
+ | `hparams.yaml` | Hyperparameters used for training |
67
+ | `train.csv` | Training metrics per epoch |
68
+ | `val.csv` | Validation metrics per epoch |
69
+ | `vocab_stanza_hybrid.pkl` | Vocabulary (for tree-based models) |
70
+
71
+ ## Installation
72
+
73
+ ```bash
74
+ # Clone ToxicThesis for full model implementations
75
+ git clone https://github.com/simo-corbo/ToxicThesis
76
+ cd ToxicThesis
77
+ pip install -r requirements.txt
78
+
79
+ # Or install dependencies directly
80
+ pip install torch transformers huggingface_hub fasttext-wheel stanza
81
+ ```
82
+
83
+ ## Citation
84
+
85
+ ```bibtex
86
+ @software{toxicthesis2025,
87
+ title={ToxicThesis},
88
+ author={Corbo, Simone},
89
+ year={2025},
90
+ url={https://github.com/simo-corbo/ToxicThesis}
91
+ }
92
+ ```
checkpoints/best.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a894f94c37d26e7f4a9e4b1cc68b89742159c03ce6843bffe6eb8c6e1ddcfe60
3
+ size 1488879905
hparams.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "experiment_name": "distillseq_vicuna_classes2_auto_20260618_195550",
3
+ "model_type": "distillseq",
4
+ "sut": "vicuna",
5
+ "num_classes": 2,
6
+ "device": "cuda",
7
+ "training_config": {
8
+ "max_epochs": 10,
9
+ "early_stopping_patience": 50,
10
+ "batch_size": 128,
11
+ "num_workers": 4,
12
+ "device": "auto",
13
+ "gradient_clip": 1.0,
14
+ "checkpoint_dir": "output/checkpoints",
15
+ "log_dir": "output/logs",
16
+ "gradient_accumulation_steps": 32,
17
+ "use_amp": true
18
+ },
19
+ "model_config": {
20
+ "model_name": "roberta-base",
21
+ "lr": 4e-05,
22
+ "weight_decay": 0.01,
23
+ "warmup_steps": 0,
24
+ "max_length": 800,
25
+ "gradient_checkpointing": true,
26
+ "freeze_layers": 0,
27
+ "dropout": 0.1,
28
+ "batch_size": 128,
29
+ "gradient_accumulation_steps": 32,
30
+ "use_amp": true,
31
+ "binary_threshold": 0.7,
32
+ "num_classes": 2,
33
+ "loss_fn": "bce"
34
+ }
35
+ }
patterns.json ADDED
The diff for this file is too large to render. See raw diff
 
predictions.csv ADDED
@@ -0,0 +1,728 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ sample_idx,prompt,actual_score,predicted_score,raw_target_score
2
+ ,,0.0,0.35818755626678467,
3
+ ,,0.0,0.1573754996061325,
4
+ ,,0.0,0.34172627329826355,
5
+ ,,0.0,0.3425251543521881,
6
+ ,,0.0,0.18600820004940033,
7
+ ,,0.0,0.3204014301300049,
8
+ ,,0.0,0.321483314037323,
9
+ ,,0.0,0.3282596170902252,
10
+ ,,0.0,0.3462895452976227,
11
+ ,,0.0,0.34819748997688293,
12
+ ,,0.0,0.19423624873161316,
13
+ ,,0.0,0.3544330596923828,
14
+ ,,0.0,0.15209165215492249,
15
+ ,,0.0,0.34796464443206787,
16
+ ,,0.0,0.18536652624607086,
17
+ ,,0.0,0.1566542237997055,
18
+ ,,0.0,0.17864465713500977,
19
+ ,,0.0,0.3307128846645355,
20
+ ,,0.0,0.36220595240592957,
21
+ ,,0.0,0.34373003244400024,
22
+ ,,0.0,0.33832457661628723,
23
+ ,,0.0,0.3244095742702484,
24
+ ,,0.0,0.34554675221443176,
25
+ ,,0.0,0.33720657229423523,
26
+ ,,0.0,0.3294495940208435,
27
+ ,,0.0,0.35559719800949097,
28
+ ,,0.0,0.3412165343761444,
29
+ ,,0.0,0.35012146830558777,
30
+ ,,0.0,0.11802875995635986,
31
+ ,,0.0,0.3474140763282776,
32
+ ,,0.0,0.3596978187561035,
33
+ ,,0.0,0.34976184368133545,
34
+ ,,0.0,0.34314391016960144,
35
+ ,,0.0,0.14503474533557892,
36
+ ,,0.0,0.3212730288505554,
37
+ ,,0.0,0.34574705362319946,
38
+ ,,0.0,0.33863183856010437,
39
+ ,,0.0,0.3483891189098358,
40
+ ,,0.0,0.33711662888526917,
41
+ ,,0.0,0.2378970831632614,
42
+ ,,0.0,0.3513951003551483,
43
+ ,,0.0,0.3318841755390167,
44
+ ,,0.0,0.34840667247772217,
45
+ ,,0.0,0.32250136137008667,
46
+ ,,0.0,0.13639380037784576,
47
+ ,,0.0,0.33949172496795654,
48
+ ,,0.0,0.35548388957977295,
49
+ ,,0.0,0.3188590109348297,
50
+ ,,0.0,0.3461994528770447,
51
+ ,,0.0,0.34971505403518677,
52
+ ,,0.0,0.35007813572883606,
53
+ ,,0.0,0.34107598662376404,
54
+ ,,0.0,0.10744397342205048,
55
+ ,,0.0,0.19262173771858215,
56
+ ,,0.0,0.34575599431991577,
57
+ ,,0.0,0.33843734860420227,
58
+ ,,0.0,0.11573109030723572,
59
+ ,,0.0,0.3437149226665497,
60
+ ,,0.0,0.34269848465919495,
61
+ ,,0.0,0.29369407892227173,
62
+ ,,0.0,0.18121393024921417,
63
+ ,,0.0,0.3085828125476837,
64
+ ,,0.0,0.19557619094848633,
65
+ ,,0.0,0.33481624722480774,
66
+ ,,0.0,0.3407135605812073,
67
+ ,,0.0,0.3458999693393707,
68
+ ,,0.0,0.34675636887550354,
69
+ ,,0.0,0.3475748896598816,
70
+ ,,0.0,0.34005966782569885,
71
+ ,,0.0,0.33943021297454834,
72
+ ,,0.0,0.35501840710639954,
73
+ ,,0.0,0.3482213020324707,
74
+ ,,0.0,0.1840837597846985,
75
+ ,,0.0,0.3444412648677826,
76
+ ,,0.0,0.3318994343280792,
77
+ ,,0.0,0.34765857458114624,
78
+ ,,0.0,0.33246979117393494,
79
+ ,,0.0,0.3531677722930908,
80
+ ,,0.0,0.11705335229635239,
81
+ ,,0.0,0.3372191786766052,
82
+ ,,0.0,0.35030651092529297,
83
+ ,,0.0,0.3279639780521393,
84
+ ,,0.0,0.35113975405693054,
85
+ ,,0.0,0.34018805623054504,
86
+ ,,0.0,0.35372433066368103,
87
+ ,,0.0,0.17590250074863434,
88
+ ,,0.0,0.29452648758888245,
89
+ ,,0.0,0.34610724449157715,
90
+ ,,0.0,0.24594326317310333,
91
+ ,,0.0,0.3425212800502777,
92
+ ,,0.0,0.3375087380409241,
93
+ ,,0.0,0.3480077385902405,
94
+ ,,0.0,0.16459006071090698,
95
+ ,,0.0,0.3406427204608917,
96
+ ,,0.0,0.3343043923377991,
97
+ ,,0.0,0.32541126012802124,
98
+ ,,0.0,0.33798572421073914,
99
+ ,,0.0,0.13995343446731567,
100
+ ,,0.0,0.3428806960582733,
101
+ ,,0.0,0.3617243766784668,
102
+ ,,0.0,0.23072883486747742,
103
+ ,,0.0,0.3414662182331085,
104
+ ,,0.0,0.3269210755825043,
105
+ ,,0.0,0.343422532081604,
106
+ ,,0.0,0.33682960271835327,
107
+ ,,0.0,0.18165268003940582,
108
+ ,,0.0,0.13521994650363922,
109
+ ,,0.0,0.36676982045173645,
110
+ ,,0.0,0.33635929226875305,
111
+ ,,0.0,0.11705335229635239,
112
+ ,,0.0,0.3397301733493805,
113
+ ,,0.0,0.3474714159965515,
114
+ ,,0.0,0.3277416527271271,
115
+ ,,0.0,0.348114937543869,
116
+ ,,0.0,0.344994455575943,
117
+ ,,0.0,0.34436991810798645,
118
+ ,,0.0,0.33103078603744507,
119
+ ,,0.0,0.32643893361091614,
120
+ ,,0.0,0.3205696940422058,
121
+ ,,0.0,0.3316570222377777,
122
+ ,,0.0,0.3197312355041504,
123
+ ,,0.0,0.3003411591053009,
124
+ ,,0.0,0.1261797994375229,
125
+ ,,0.0,0.33037328720092773,
126
+ ,,0.0,0.32035523653030396,
127
+ ,,0.0,0.34256353974342346,
128
+ ,,0.0,0.3456968665122986,
129
+ ,,0.0,0.34281760454177856,
130
+ ,,0.0,0.19332101941108704,
131
+ ,,0.0,0.34564727544784546,
132
+ ,,0.0,0.33403047919273376,
133
+ ,,0.0,0.3290271759033203,
134
+ ,,0.0,0.34927695989608765,
135
+ ,,0.0,0.3417620360851288,
136
+ ,,0.0,0.3515090346336365,
137
+ ,,0.0,0.35389286279678345,
138
+ ,,0.0,0.19572322070598602,
139
+ ,,0.0,0.33508047461509705,
140
+ ,,0.0,0.32218727469444275,
141
+ ,,0.0,0.3403400182723999,
142
+ ,,0.0,0.3394763171672821,
143
+ ,,0.0,0.3376678228378296,
144
+ ,,0.0,0.34599733352661133,
145
+ ,,0.0,0.34558993577957153,
146
+ ,,0.0,0.322335422039032,
147
+ ,,0.0,0.35473689436912537,
148
+ ,,0.0,0.3120570778846741,
149
+ ,,0.0,0.3324407637119293,
150
+ ,,0.0,0.34241151809692383,
151
+ ,,0.0,0.31716102361679077,
152
+ ,,0.0,0.349492609500885,
153
+ ,,0.0,0.32492595911026,
154
+ ,,0.0,0.34621870517730713,
155
+ ,,0.0,0.34145882725715637,
156
+ ,,0.0,0.32984933257102966,
157
+ ,,0.0,0.34850627183914185,
158
+ ,,0.0,0.3435411751270294,
159
+ ,,0.0,0.34726598858833313,
160
+ ,,0.0,0.3463619351387024,
161
+ ,,0.0,0.34494930505752563,
162
+ ,,0.0,0.35450196266174316,
163
+ ,,0.0,0.34336328506469727,
164
+ ,,0.0,0.3501780033111572,
165
+ ,,0.0,0.35004642605781555,
166
+ ,,0.0,0.33609890937805176,
167
+ ,,0.0,0.3452078700065613,
168
+ ,,0.0,0.3348487913608551,
169
+ ,,0.0,0.3398735523223877,
170
+ ,,0.0,0.3447628319263458,
171
+ ,,0.0,0.33946675062179565,
172
+ ,,0.0,0.3491509258747101,
173
+ ,,0.0,0.33721354603767395,
174
+ ,,0.0,0.3422151505947113,
175
+ ,,0.0,0.11197514086961746,
176
+ ,,0.0,0.33788302540779114,
177
+ ,,0.0,0.35107630491256714,
178
+ ,,0.0,0.34720396995544434,
179
+ ,,0.0,0.3274287283420563,
180
+ ,,0.0,0.3402014970779419,
181
+ ,,0.0,0.3585578203201294,
182
+ ,,0.0,0.11098192632198334,
183
+ ,,0.0,0.33886951208114624,
184
+ ,,0.0,0.3372088372707367,
185
+ ,,0.0,0.3444151282310486,
186
+ ,,0.0,0.3477259576320648,
187
+ ,,0.0,0.11989804357290268,
188
+ ,,0.0,0.3404064178466797,
189
+ ,,0.0,0.3305576741695404,
190
+ ,,0.0,0.3530149459838867,
191
+ ,,0.0,0.3111187815666199,
192
+ ,,0.0,0.3348655700683594,
193
+ ,,0.0,0.34164324402809143,
194
+ ,,0.0,0.3359839618206024,
195
+ ,,0.0,0.344417005777359,
196
+ ,,0.0,0.3119840919971466,
197
+ ,,0.0,0.33800917863845825,
198
+ ,,0.0,0.34826430678367615,
199
+ ,,0.0,0.33113616704940796,
200
+ ,,0.0,0.3291422426700592,
201
+ ,,0.0,0.1945536583662033,
202
+ ,,0.0,0.33430215716362,
203
+ ,,0.0,0.1537666916847229,
204
+ ,,0.0,0.20961420238018036,
205
+ ,,0.0,0.34887832403182983,
206
+ ,,0.0,0.3369218707084656,
207
+ ,,0.0,0.3504711985588074,
208
+ ,,0.0,0.3479968011379242,
209
+ ,,0.0,0.3292282819747925,
210
+ ,,0.0,0.35395848751068115,
211
+ ,,0.0,0.35172006487846375,
212
+ ,,0.0,0.3445329964160919,
213
+ ,,0.0,0.3288511633872986,
214
+ ,,0.0,0.11989804357290268,
215
+ ,,0.0,0.35637831687927246,
216
+ ,,0.0,0.3352641463279724,
217
+ ,,0.0,0.2967926859855652,
218
+ ,,0.0,0.3436896502971649,
219
+ ,,0.0,0.34710657596588135,
220
+ ,,0.0,0.33611464500427246,
221
+ ,,0.0,0.3460785448551178,
222
+ ,,0.0,0.33191099762916565,
223
+ ,,0.0,0.3419339656829834,
224
+ ,,0.0,0.3420524597167969,
225
+ ,,0.0,0.3358871340751648,
226
+ ,,0.0,0.34860795736312866,
227
+ ,,0.0,0.3417290151119232,
228
+ ,,0.0,0.3508530259132385,
229
+ ,,0.0,0.351191908121109,
230
+ ,,0.0,0.34573638439178467,
231
+ ,,0.0,0.3232278525829315,
232
+ ,,0.0,0.34115514159202576,
233
+ ,,0.0,0.3407291769981384,
234
+ ,,0.0,0.3484753668308258,
235
+ ,,0.0,0.35400712490081787,
236
+ ,,0.0,0.33071285486221313,
237
+ ,,0.0,0.20449410378932953,
238
+ ,,0.0,0.3361877501010895,
239
+ ,,0.0,0.3358249068260193,
240
+ ,,0.0,0.3402012586593628,
241
+ ,,0.0,0.34704235196113586,
242
+ ,,0.0,0.3062063157558441,
243
+ ,,0.0,0.34792786836624146,
244
+ ,,0.0,0.3412682116031647,
245
+ ,,0.0,0.32939112186431885,
246
+ ,,0.0,0.3305121660232544,
247
+ ,,0.0,0.11028876900672913,
248
+ ,,0.0,0.3546985387802124,
249
+ ,,0.0,0.3524497151374817,
250
+ ,,0.0,0.3418222665786743,
251
+ ,,0.0,0.344128280878067,
252
+ ,,0.0,0.34273841977119446,
253
+ ,,0.0,0.34292876720428467,
254
+ ,,0.0,0.34107285737991333,
255
+ ,,0.0,0.3504754304885864,
256
+ ,,0.0,0.338845431804657,
257
+ ,,0.0,0.3333805799484253,
258
+ ,,0.0,0.17176350951194763,
259
+ ,,0.0,0.3651168942451477,
260
+ ,,0.0,0.3444961607456207,
261
+ ,,0.0,0.3496248722076416,
262
+ ,,0.0,0.35191798210144043,
263
+ ,,0.0,0.33917757868766785,
264
+ ,,0.0,0.21063275635242462,
265
+ ,,0.0,0.3504011332988739,
266
+ ,,0.0,0.34261631965637207,
267
+ ,,0.0,0.35388025641441345,
268
+ ,,0.0,0.3467142879962921,
269
+ ,,0.0,0.13774430751800537,
270
+ ,,0.0,0.34881114959716797,
271
+ ,,0.0,0.3475199341773987,
272
+ ,,0.0,0.3420199751853943,
273
+ ,,0.0,0.34810832142829895,
274
+ ,,0.0,0.34886863827705383,
275
+ ,,0.0,0.3485576808452606,
276
+ ,,0.0,0.14113129675388336,
277
+ ,,0.0,0.34910061955451965,
278
+ ,,0.0,0.32925620675086975,
279
+ ,,0.0,0.3446043133735657,
280
+ ,,0.0,0.3329748809337616,
281
+ ,,0.0,0.35111817717552185,
282
+ ,,0.0,0.3521604537963867,
283
+ ,,0.0,0.33718156814575195,
284
+ ,,0.0,0.3356474041938782,
285
+ ,,0.0,0.338336706161499,
286
+ ,,0.0,0.34948796033859253,
287
+ ,,0.0,0.35014256834983826,
288
+ ,,0.0,0.3343181908130646,
289
+ ,,0.0,0.35738128423690796,
290
+ ,,0.0,0.30563896894454956,
291
+ ,,0.0,0.31741395592689514,
292
+ ,,0.0,0.344775915145874,
293
+ ,,0.0,0.353645920753479,
294
+ ,,0.0,0.34905171394348145,
295
+ ,,0.0,0.34381815791130066,
296
+ ,,0.0,0.3544573187828064,
297
+ ,,0.0,0.3286765217781067,
298
+ ,,0.0,0.3308025300502777,
299
+ ,,0.0,0.3391574025154114,
300
+ ,,0.0,0.3511919677257538,
301
+ ,,0.0,0.34118083119392395,
302
+ ,,0.0,0.3513067364692688,
303
+ ,,0.0,0.343315452337265,
304
+ ,,0.0,0.1843530386686325,
305
+ ,,0.0,0.3385198414325714,
306
+ ,,0.0,0.3413688838481903,
307
+ ,,0.0,0.35072410106658936,
308
+ ,,0.0,0.3182508051395416,
309
+ ,,0.0,0.3366219997406006,
310
+ ,,0.0,0.3376111090183258,
311
+ ,,0.0,0.3398641347885132,
312
+ ,,0.0,0.34220537543296814,
313
+ ,,0.0,0.34243953227996826,
314
+ ,,0.0,0.34373053908348083,
315
+ ,,0.0,0.344097763299942,
316
+ ,,0.0,0.3375723361968994,
317
+ ,,0.0,0.34437400102615356,
318
+ ,,0.0,0.35333672165870667,
319
+ ,,0.0,0.33268192410469055,
320
+ ,,0.0,0.34416937828063965,
321
+ ,,0.0,0.34322890639305115,
322
+ ,,0.0,0.22454287111759186,
323
+ ,,0.0,0.34076938033103943,
324
+ ,,0.0,0.33592501282691956,
325
+ ,,0.0,0.3450239300727844,
326
+ ,,0.0,0.3534255027770996,
327
+ ,,0.0,0.3330031931400299,
328
+ ,,0.0,0.33132657408714294,
329
+ ,,0.0,0.3329058289527893,
330
+ ,,0.0,0.34342068433761597,
331
+ ,,0.0,0.3281717598438263,
332
+ ,,0.0,0.3455875813961029,
333
+ ,,0.0,0.3296966254711151,
334
+ ,,0.0,0.3266432285308838,
335
+ ,,0.0,0.3474685251712799,
336
+ ,,0.0,0.1605018675327301,
337
+ ,,0.0,0.13715101778507233,
338
+ ,,0.0,0.32904648780822754,
339
+ ,,0.0,0.35095924139022827,
340
+ ,,0.0,0.343792200088501,
341
+ ,,0.0,0.34961262345314026,
342
+ ,,0.0,0.33192989230155945,
343
+ ,,0.0,0.3516483008861542,
344
+ ,,0.0,0.35214963555336,
345
+ ,,0.0,0.33910518884658813,
346
+ ,,0.0,0.35076576471328735,
347
+ ,,0.0,0.31738853454589844,
348
+ ,,0.0,0.3379462659358978,
349
+ ,,0.0,0.3459009528160095,
350
+ ,,0.0,0.1686883121728897,
351
+ ,,0.0,0.3341589868068695,
352
+ ,,0.0,0.30209681391716003,
353
+ ,,0.0,0.3429699242115021,
354
+ ,,0.0,0.34657248854637146,
355
+ ,,0.0,0.3484695553779602,
356
+ ,,0.0,0.3474118411540985,
357
+ ,,0.0,0.34824398159980774,
358
+ ,,0.0,0.3477852940559387,
359
+ ,,0.0,0.34275108575820923,
360
+ ,,0.0,0.11098192632198334,
361
+ ,,0.0,0.3403787910938263,
362
+ ,,0.0,0.3513472378253937,
363
+ ,,0.0,0.35423511266708374,
364
+ ,,0.0,0.36207178235054016,
365
+ ,,0.0,0.13891862332820892,
366
+ ,,0.0,0.3539976477622986,
367
+ ,,0.0,0.3473345637321472,
368
+ ,,0.0,0.3522570729255676,
369
+ ,,0.0,0.15257000923156738,
370
+ ,,0.0,0.33493050932884216,
371
+ ,,0.0,0.35303735733032227,
372
+ ,,0.0,0.33725377917289734,
373
+ ,,0.0,0.2915511727333069,
374
+ ,,0.0,0.35158658027648926,
375
+ ,,0.0,0.35375815629959106,
376
+ ,,0.0,0.3405040204524994,
377
+ ,,0.0,0.34084489941596985,
378
+ ,,0.0,0.34698471426963806,
379
+ ,,0.0,0.3313753306865692,
380
+ ,,0.0,0.347014456987381,
381
+ ,,0.0,0.1524268537759781,
382
+ ,,0.0,0.3500867187976837,
383
+ ,,0.0,0.34973853826522827,
384
+ ,,0.0,0.34245729446411133,
385
+ ,,0.0,0.3492419123649597,
386
+ ,,0.0,0.3414947986602783,
387
+ ,,0.0,0.33591553568840027,
388
+ ,,0.0,0.3529752492904663,
389
+ ,,0.0,0.3444999158382416,
390
+ ,,0.0,0.3574294149875641,
391
+ ,,0.0,0.3543873429298401,
392
+ ,,0.0,0.35087355971336365,
393
+ ,,0.0,0.34699609875679016,
394
+ ,,0.0,0.3368508815765381,
395
+ ,,0.0,0.34888914227485657,
396
+ ,,0.0,0.3412620723247528,
397
+ ,,0.0,0.1047021672129631,
398
+ ,,0.0,0.32897019386291504,
399
+ ,,0.0,0.3374972641468048,
400
+ ,,0.0,0.34327617287635803,
401
+ ,,0.0,0.3403335511684418,
402
+ ,,0.0,0.3296891450881958,
403
+ ,,0.0,0.34069180488586426,
404
+ ,,0.0,0.33663544058799744,
405
+ ,,0.0,0.3467002511024475,
406
+ ,,0.0,0.35026708245277405,
407
+ ,,0.0,0.341838538646698,
408
+ ,,0.0,0.34578460454940796,
409
+ ,,0.0,0.3540598750114441,
410
+ ,,0.0,0.3391123116016388,
411
+ ,,0.0,0.35658901929855347,
412
+ ,,0.0,0.341708242893219,
413
+ ,,0.0,0.33221104741096497,
414
+ ,,0.0,0.35158807039260864,
415
+ ,,0.0,0.31458473205566406,
416
+ ,,0.0,0.3413844406604767,
417
+ ,,0.0,0.3438456058502197,
418
+ ,,0.0,0.33655059337615967,
419
+ ,,0.0,0.3351788818836212,
420
+ ,,0.0,0.3495173454284668,
421
+ ,,0.0,0.3366924822330475,
422
+ ,,0.0,0.35034412145614624,
423
+ ,,0.0,0.21865558624267578,
424
+ ,,0.0,0.3349519371986389,
425
+ ,,0.0,0.3374234735965729,
426
+ ,,0.0,0.3493753671646118,
427
+ ,,0.0,0.3378225862979889,
428
+ ,,0.0,0.3181242048740387,
429
+ ,,0.0,0.19648775458335876,
430
+ ,,0.0,0.33590996265411377,
431
+ ,,0.0,0.3553880453109741,
432
+ ,,0.0,0.3431057631969452,
433
+ ,,0.0,0.32274237275123596,
434
+ ,,0.0,0.3360661566257477,
435
+ ,,0.0,0.35070374608039856,
436
+ ,,0.0,0.34926632046699524,
437
+ ,,0.0,0.13754291832447052,
438
+ ,,0.0,0.3405134379863739,
439
+ ,,0.0,0.3420192003250122,
440
+ ,,0.0,0.3557109832763672,
441
+ ,,0.0,0.3347707688808441,
442
+ ,,0.0,0.3229081332683563,
443
+ ,,0.0,0.33513301610946655,
444
+ ,,0.0,0.34227320551872253,
445
+ ,,0.0,0.34175556898117065,
446
+ ,,0.0,0.33525392413139343,
447
+ ,,0.0,0.3549892008304596,
448
+ ,,0.0,0.35412830114364624,
449
+ ,,0.0,0.3235585391521454,
450
+ ,,0.0,0.3338668644428253,
451
+ ,,0.0,0.11573109030723572,
452
+ ,,0.0,0.33513760566711426,
453
+ ,,0.0,0.33562716841697693,
454
+ ,,0.0,0.34329044818878174,
455
+ ,,0.0,0.3730758726596832,
456
+ ,,0.0,0.3446071743965149,
457
+ ,,0.0,0.3408163785934448,
458
+ ,,0.0,0.33233702182769775,
459
+ ,,0.0,0.3155548572540283,
460
+ ,,0.0,0.13131648302078247,
461
+ ,,0.0,0.3334074318408966,
462
+ ,,0.0,0.34611013531684875,
463
+ ,,0.0,0.19155137240886688,
464
+ ,,0.0,0.34563207626342773,
465
+ ,,0.0,0.33882462978363037,
466
+ ,,0.0,0.34510886669158936,
467
+ ,,0.0,0.351392924785614,
468
+ ,,0.0,0.35211461782455444,
469
+ ,,0.0,0.33890172839164734,
470
+ ,,0.0,0.34668856859207153,
471
+ ,,0.0,0.34747838973999023,
472
+ ,,0.0,0.3335416316986084,
473
+ ,,0.0,0.34871748089790344,
474
+ ,,0.0,0.349240243434906,
475
+ ,,0.0,0.34608587622642517,
476
+ ,,0.0,0.3302984833717346,
477
+ ,,0.0,0.3371168076992035,
478
+ ,,0.0,0.34576570987701416,
479
+ ,,0.0,0.3478820025920868,
480
+ ,,0.0,0.34282705187797546,
481
+ ,,0.0,0.33608949184417725,
482
+ ,,0.0,0.3480352759361267,
483
+ ,,0.0,0.3339473605155945,
484
+ ,,0.0,0.3250700831413269,
485
+ ,,0.0,0.11425191909074783,
486
+ ,,0.0,0.32646647095680237,
487
+ ,,0.0,0.335561066865921,
488
+ ,,0.0,0.3541589081287384,
489
+ ,,0.0,0.18667517602443695,
490
+ ,,0.0,0.3402872681617737,
491
+ ,,0.0,0.3430517613887787,
492
+ ,,0.0,0.3328738510608673,
493
+ ,,0.0,0.35141193866729736,
494
+ ,,0.0,0.342827171087265,
495
+ ,,0.0,0.3414691686630249,
496
+ ,,0.0,0.34043189883232117,
497
+ ,,0.0,0.346426784992218,
498
+ ,,0.0,0.3442547023296356,
499
+ ,,0.0,0.3514026403427124,
500
+ ,,0.0,0.3417968451976776,
501
+ ,,0.0,0.33370986580848694,
502
+ ,,0.0,0.3478604853153229,
503
+ ,,0.0,0.32571083307266235,
504
+ ,,0.0,0.3530563414096832,
505
+ ,,0.0,0.34052979946136475,
506
+ ,,0.0,0.3365882337093353,
507
+ ,,0.0,0.3173527419567108,
508
+ ,,0.0,0.35077109932899475,
509
+ ,,0.0,0.3332764208316803,
510
+ ,,0.0,0.3365674316883087,
511
+ ,,0.0,0.33039191365242004,
512
+ ,,0.0,0.32728323340415955,
513
+ ,,0.0,0.3468993604183197,
514
+ ,,0.0,0.319526344537735,
515
+ ,,0.0,0.33398139476776123,
516
+ ,,0.0,0.3173268735408783,
517
+ ,,0.0,0.3476088047027588,
518
+ ,,0.0,0.33752503991127014,
519
+ ,,0.0,0.34373247623443604,
520
+ ,,0.0,0.35033315420150757,
521
+ ,,0.0,0.33886995911598206,
522
+ ,,0.0,0.34990066289901733,
523
+ ,,0.0,0.3501081168651581,
524
+ ,,0.0,0.32875552773475647,
525
+ ,,0.0,0.3328060805797577,
526
+ ,,0.0,0.3448500633239746,
527
+ ,,0.0,0.33567067980766296,
528
+ ,,0.0,0.3513338565826416,
529
+ ,,0.0,0.34903600811958313,
530
+ ,,0.0,0.35186925530433655,
531
+ ,,0.0,0.33254846930503845,
532
+ ,,0.0,0.3341600298881531,
533
+ ,,0.0,0.3399728238582611,
534
+ ,,0.0,0.3443054258823395,
535
+ ,,0.0,0.3419784903526306,
536
+ ,,0.0,0.3480440080165863,
537
+ ,,0.0,0.3439536392688751,
538
+ ,,0.0,0.3380155861377716,
539
+ ,,0.0,0.33816441893577576,
540
+ ,,0.0,0.33171600103378296,
541
+ ,,0.0,0.3349902331829071,
542
+ ,,0.0,0.34308767318725586,
543
+ ,,0.0,0.3376111388206482,
544
+ ,,0.0,0.36048823595046997,
545
+ ,,0.0,0.34734654426574707,
546
+ ,,0.0,0.3468184471130371,
547
+ ,,0.0,0.3479826748371124,
548
+ ,,0.0,0.35518357157707214,
549
+ ,,0.0,0.36432594060897827,
550
+ ,,0.0,0.35459068417549133,
551
+ ,,0.0,0.23415733873844147,
552
+ ,,0.0,0.11340809613466263,
553
+ ,,0.0,0.35244688391685486,
554
+ ,,0.0,0.3346404731273651,
555
+ ,,0.0,0.34770047664642334,
556
+ ,,0.0,0.3477182388305664,
557
+ ,,0.0,0.32431504130363464,
558
+ ,,0.0,0.33404991030693054,
559
+ ,,0.0,0.33859431743621826,
560
+ ,,0.0,0.33297643065452576,
561
+ ,,0.0,0.145297110080719,
562
+ ,,0.0,0.3439123034477234,
563
+ ,,0.0,0.35624197125434875,
564
+ ,,0.0,0.33028754591941833,
565
+ ,,0.0,0.3462381958961487,
566
+ ,,0.0,0.34903496503829956,
567
+ ,,0.0,0.3457147479057312,
568
+ ,,0.0,0.3328636884689331,
569
+ ,,0.0,0.34741777181625366,
570
+ ,,0.0,0.35117655992507935,
571
+ ,,0.0,0.31452736258506775,
572
+ ,,0.0,0.3433276414871216,
573
+ ,,0.0,0.3515150547027588,
574
+ ,,0.0,0.34059444069862366,
575
+ ,,0.0,0.34107935428619385,
576
+ ,,0.0,0.3409963846206665,
577
+ ,,0.0,0.33070799708366394,
578
+ ,,0.0,0.25117844343185425,
579
+ ,,0.0,0.33693766593933105,
580
+ ,,0.0,0.3339807093143463,
581
+ ,,0.0,0.34298238158226013,
582
+ ,,0.0,0.3401430547237396,
583
+ ,,0.0,0.3494696617126465,
584
+ ,,0.0,0.34329846501350403,
585
+ ,,0.0,0.3400387763977051,
586
+ ,,0.0,0.33528661727905273,
587
+ ,,0.0,0.3492463529109955,
588
+ ,,0.0,0.3377608060836792,
589
+ ,,0.0,0.33638355135917664,
590
+ ,,0.0,0.3507730960845947,
591
+ ,,0.0,0.33908510208129883,
592
+ ,,0.0,0.3419395387172699,
593
+ ,,0.0,0.3530908524990082,
594
+ ,,0.0,0.33995866775512695,
595
+ ,,0.0,0.343651682138443,
596
+ ,,0.0,0.32530075311660767,
597
+ ,,0.0,0.3455808758735657,
598
+ ,,0.0,0.3452736437320709,
599
+ ,,0.0,0.33929550647735596,
600
+ ,,0.0,0.3458644151687622,
601
+ ,,0.0,0.3452610969543457,
602
+ ,,0.0,0.34547513723373413,
603
+ ,,0.0,0.35459184646606445,
604
+ ,,0.0,0.33262306451797485,
605
+ ,,0.0,0.33866965770721436,
606
+ ,,0.0,0.3318265974521637,
607
+ ,,0.0,0.34080809354782104,
608
+ ,,0.0,0.3107466995716095,
609
+ ,,0.0,0.3053106367588043,
610
+ ,,0.0,0.3403310179710388,
611
+ ,,0.0,0.3401488661766052,
612
+ ,,0.0,0.3331790268421173,
613
+ ,,0.0,0.3483760952949524,
614
+ ,,0.0,0.33602845668792725,
615
+ ,,0.0,0.3334042429924011,
616
+ ,,0.0,0.3412489891052246,
617
+ ,,0.0,0.34579458832740784,
618
+ ,,0.0,0.3463194668292999,
619
+ ,,0.0,0.35615846514701843,
620
+ ,,0.0,0.3398052155971527,
621
+ ,,0.0,0.33443814516067505,
622
+ ,,0.0,0.3232285976409912,
623
+ ,,0.0,0.3461546301841736,
624
+ ,,0.0,0.35071077942848206,
625
+ ,,0.0,0.3307698965072632,
626
+ ,,0.0,0.3178330957889557,
627
+ ,,0.0,0.3472744822502136,
628
+ ,,0.0,0.32746008038520813,
629
+ ,,0.0,0.2313082218170166,
630
+ ,,0.0,0.3375976085662842,
631
+ ,,0.0,0.3371991813182831,
632
+ ,,0.0,0.3433462977409363,
633
+ ,,0.0,0.3368043005466461,
634
+ ,,0.0,0.347010999917984,
635
+ ,,0.0,0.3472664952278137,
636
+ ,,0.0,0.34629085659980774,
637
+ ,,0.0,0.3403637707233429,
638
+ ,,0.0,0.3384718596935272,
639
+ ,,0.0,0.15402773022651672,
640
+ ,,0.0,0.325011283159256,
641
+ ,,0.0,0.3515205681324005,
642
+ ,,0.0,0.3369017243385315,
643
+ ,,0.0,0.34375572204589844,
644
+ ,,0.0,0.3424098789691925,
645
+ ,,0.0,0.33608877658843994,
646
+ ,,0.0,0.3404291868209839,
647
+ ,,0.0,0.349751740694046,
648
+ ,,0.0,0.3387145400047302,
649
+ ,,0.0,0.3148821294307709,
650
+ ,,0.0,0.3472294509410858,
651
+ ,,0.0,0.34353071451187134,
652
+ ,,0.0,0.34629446268081665,
653
+ ,,0.0,0.34347665309906006,
654
+ ,,0.0,0.34592342376708984,
655
+ ,,0.0,0.3367844521999359,
656
+ ,,0.0,0.3374277949333191,
657
+ ,,0.0,0.3459830582141876,
658
+ ,,0.0,0.3301389515399933,
659
+ ,,0.0,0.33743685483932495,
660
+ ,,0.0,0.33123520016670227,
661
+ ,,0.0,0.34133970737457275,
662
+ ,,0.0,0.3429929316043854,
663
+ ,,0.0,0.3495238423347473,
664
+ ,,0.0,0.3497820794582367,
665
+ ,,1.0,0.3376794457435608,
666
+ ,,0.0,0.35885852575302124,
667
+ ,,0.0,0.32873737812042236,
668
+ ,,0.0,0.3426764905452728,
669
+ ,,0.0,0.3335237503051758,
670
+ ,,1.0,0.13150303065776825,
671
+ ,,0.0,0.3277137577533722,
672
+ ,,0.0,0.3389928936958313,
673
+ ,,0.0,0.34286829829216003,
674
+ ,,0.0,0.3418300449848175,
675
+ ,,0.0,0.34564414620399475,
676
+ ,,0.0,0.3467687964439392,
677
+ ,,0.0,0.3486498296260834,
678
+ ,,1.0,0.35470426082611084,
679
+ ,,0.0,0.1380884349346161,
680
+ ,,0.0,0.3362603187561035,
681
+ ,,0.0,0.35281574726104736,
682
+ ,,0.0,0.33500635623931885,
683
+ ,,0.0,0.34572675824165344,
684
+ ,,0.0,0.3321174681186676,
685
+ ,,0.0,0.3351665139198303,
686
+ ,,0.0,0.3420657217502594,
687
+ ,,0.0,0.33565980195999146,
688
+ ,,0.0,0.35362479090690613,
689
+ ,,0.0,0.34558355808258057,
690
+ ,,0.0,0.33557361364364624,
691
+ ,,0.0,0.3203922510147095,
692
+ ,,0.0,0.3389386832714081,
693
+ ,,0.0,0.3498819172382355,
694
+ ,,0.0,0.11425191909074783,
695
+ ,,1.0,0.11098192632198334,
696
+ ,,0.0,0.34788939356803894,
697
+ ,,0.0,0.3428959548473358,
698
+ ,,0.0,0.339815229177475,
699
+ ,,1.0,0.2543371617794037,
700
+ ,,0.0,0.346498042345047,
701
+ ,,0.0,0.352568656206131,
702
+ ,,0.0,0.341280460357666,
703
+ ,,0.0,0.32352882623672485,
704
+ ,,0.0,0.3448232114315033,
705
+ ,,0.0,0.3445407450199127,
706
+ ,,0.0,0.32586050033569336,
707
+ ,,0.0,0.34412670135498047,
708
+ ,,0.0,0.18415167927742004,
709
+ ,,0.0,0.36178845167160034,
710
+ ,,0.0,0.34323570132255554,
711
+ ,,0.0,0.15960238873958588,
712
+ ,,1.0,0.11098192632198334,
713
+ ,,0.0,0.3590930998325348,
714
+ ,,0.0,0.3382355868816376,
715
+ ,,1.0,0.18497654795646667,
716
+ ,,0.0,0.3294408619403839,
717
+ ,,0.0,0.35218697786331177,
718
+ ,,0.0,0.3271929919719696,
719
+ ,,1.0,0.15292128920555115,
720
+ ,,0.0,0.3360191583633423,
721
+ ,,0.0,0.3454328179359436,
722
+ ,,0.0,0.3160165250301361,
723
+ ,,0.0,0.3425917625427246,
724
+ ,,0.0,0.35110729932785034,
725
+ ,,0.0,0.3470976650714874,
726
+ ,,0.0,0.34877344965934753,
727
+ ,,0.0,0.3518308103084564,
728
+ ,,1.0,0.1543019562959671,
test.csv ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ accuracy,precision,recall,f1,roc_auc,loss
2
+ 0.9876203576341128,0.9753939708133328,0.9876203576341128,0.9814690889706477,0.18337975858867225,0.4099108576774597
train.csv ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ accuracy,precision,recall,f1,roc_auc,loss,epoch
2
+ 0.24775,0.6783711305971103,0.24775,0.16259946623338914,0.507810450461795,0.7298014163970947,0
3
+ 0.7885,0.62173225,0.7885,0.6952555213866368,0.4758198527593015,0.6304011344909668,1
4
+ 0.7885,0.62173225,0.7885,0.6952555213866368,0.5136400398158517,0.5550760626792908,2
5
+ 0.7885,0.62173225,0.7885,0.6952555213866368,0.5271116193028929,0.5407291650772095,3
6
+ 0.7885,0.62173225,0.7885,0.6952555213866368,0.5256627480433117,0.541938841342926,4
7
+ 0.7885,0.62173225,0.7885,0.6952555213866368,0.5499495181172619,0.521625280380249,5
8
+ 0.7885,0.62173225,0.7885,0.6952555213866368,0.5647155625113369,0.5220848321914673,6
9
+ 0.7885,0.62173225,0.7885,0.6952555213866368,0.591867469879518,0.5186153650283813,7
10
+ 0.7885,0.62173225,0.7885,0.6952555213866368,0.5811332301958861,0.5141386389732361,8
11
+ 0.7885,0.62173225,0.7885,0.6952555213866368,0.5863489418667578,0.5129140019416809,9
val.csv ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ accuracy,precision,recall,f1,roc_auc,loss,epoch
2
+ 0.7964705882352942,0.6343653979238755,0.7964705882352942,0.7062352170730769,0.4925248247538869,0.6349459886550903,0
3
+ 0.7964705882352942,0.6343653979238755,0.7964705882352942,0.7062352170730769,0.5236720997942299,0.5454248785972595,1
4
+ 0.7964705882352942,0.6343653979238755,0.7964705882352942,0.7062352170730769,0.5421999470632934,0.5035991072654724,2
5
+ 0.7964705882352942,0.6343653979238755,0.7964705882352942,0.7062352170730769,0.560514339870732,0.5052538514137268,3
6
+ 0.7964705882352942,0.6343653979238755,0.7964705882352942,0.7062352170730769,0.5791275689244457,0.4986129105091095,4
7
+ 0.7964705882352942,0.6343653979238755,0.7964705882352942,0.7062352170730769,0.5945560574107119,0.5018535256385803,5
8
+ 0.7964705882352942,0.6343653979238755,0.7964705882352942,0.7062352170730769,0.6037004465467338,0.5010958313941956,6
9
+ 0.7964705882352942,0.6343653979238755,0.7964705882352942,0.7062352170730769,0.6233638715516432,0.49243539571762085,7
10
+ 0.7964705882352942,0.6343653979238755,0.7964705882352942,0.7062352170730769,0.6321411190136697,0.48751842975616455,8
11
+ 0.7964705882352942,0.6343653979238755,0.7964705882352942,0.7062352170730769,0.6378275458713638,0.4874263405799866,9