simocorbo commited on
Commit
defb42e
·
verified ·
1 Parent(s): 67746a9

Upload toxicthesis-vicunauc-perspective-classification-5 model

Browse files
Files changed (8) hide show
  1. README.md +92 -0
  2. checkpoints/best.pt +3 -0
  3. hparams.json +27 -0
  4. patterns.json +0 -0
  5. predictions.csv +1001 -0
  6. test.csv +2 -0
  7. train.csv +2 -0
  8. val.csv +2 -0
README.md ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - toxicity-detection
5
+ - perspective
6
+ - vicunaUC
7
+ pipeline_tag: text-classification
8
+ language:
9
+ - en
10
+ library_name: pytorch
11
+ ---
12
+
13
+ # Perspective API - VICUNAUC - Classification (5 classes)
14
+
15
+ Toxicity prediction model trained on the VICUNAUC dataset.
16
+
17
+ | Property | Value |
18
+ |----------|-------|
19
+ | Model | Perspective API |
20
+ | Task | Classification (5 classes) |
21
+ | Dataset | vicunaUC |
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-vicunauc-perspective-classification-5",
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
+ | `probabilities` | List[float] | Probability distribution over 5 classes. |
56
+ | `class` | 0 to 4 | Predicted class (argmax of probabilities). |
57
+
58
+ **Classes**: 5 toxicity levels, where higher class index = more toxic.
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:46f6f73be9a6b700cf71a6289a0277d9c0c2fd7b34b26c4ca7f0ef21cd801ab6
3
+ size 2196
hparams.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "experiment_name": "perspective_vicunaUC_classes5_auto_20260522_155035",
3
+ "model_type": "perspective",
4
+ "sut": "vicunaUC",
5
+ "num_classes": 5,
6
+ "device": "cuda",
7
+ "training_config": {
8
+ "max_epochs": 200,
9
+ "early_stopping_patience": 5,
10
+ "batch_size": 200,
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": 1,
17
+ "use_amp": false
18
+ },
19
+ "model_config": {
20
+ "batch_size": 1,
21
+ "train_subset_size": 1000,
22
+ "val_subset_size": 1000,
23
+ "test_subset_size": 1000,
24
+ "num_classes": 5,
25
+ "loss_fn": "cross_entropy"
26
+ }
27
+ }
patterns.json ADDED
The diff for this file is too large to render. See raw diff
 
predictions.csv ADDED
@@ -0,0 +1,1001 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ sample_idx,prompt,actual_score,predicted_score,raw_target_score
2
+ ,,0.0,0.0,
3
+ ,,2.0,0.1598784625530243,
4
+ ,,2.0,0.0,
5
+ ,,2.0,0.0,
6
+ ,,2.0,0.0,
7
+ ,,0.0,0.15711456537246704,
8
+ ,,0.0,0.0,
9
+ ,,1.0,0.0,
10
+ ,,1.0,0.0,
11
+ ,,0.0,0.0,
12
+ ,,1.0,0.0,
13
+ ,,0.0,0.199166402220726,
14
+ ,,0.0,0.1560090184211731,
15
+ ,,0.0,0.0,
16
+ ,,1.0,0.0,
17
+ ,,1.0,0.0,
18
+ ,,0.0,0.1826910376548767,
19
+ ,,0.0,0.0438942015171051,
20
+ ,,0.0,0.11161000281572342,
21
+ ,,1.0,0.03038843534886837,
22
+ ,,0.0,0.0,
23
+ ,,1.0,0.0,
24
+ ,,0.0,0.011812098324298859,
25
+ ,,0.0,0.0,
26
+ ,,0.0,0.0,
27
+ ,,0.0,0.0,
28
+ ,,0.0,0.026499466970562935,
29
+ ,,0.0,0.0,
30
+ ,,0.0,0.0,
31
+ ,,0.0,0.0,
32
+ ,,0.0,0.03038843534886837,
33
+ ,,0.0,0.02661731466650963,
34
+ ,,2.0,0.0,
35
+ ,,1.0,0.0,
36
+ ,,0.0,0.01338285580277443,
37
+ ,,4.0,0.0,
38
+ ,,1.0,0.0,
39
+ ,,1.0,0.0,
40
+ ,,0.0,0.0,
41
+ ,,0.0,0.0,
42
+ ,,2.0,0.0,
43
+ ,,3.0,0.0,
44
+ ,,1.0,0.0,
45
+ ,,0.0,0.11047329753637314,
46
+ ,,0.0,0.1576673537492752,
47
+ ,,1.0,0.0,
48
+ ,,0.0,0.0,
49
+ ,,0.0,0.02838502638041973,
50
+ ,,0.0,0.15379789471626282,
51
+ ,,0.0,0.0,
52
+ ,,1.0,0.0,
53
+ ,,0.0,0.0,
54
+ ,,3.0,0.0,
55
+ ,,0.0,0.11409009993076324,
56
+ ,,0.0,0.15269234776496887,
57
+ ,,0.0,0.16098402440547943,
58
+ ,,0.0,0.0,
59
+ ,,0.0,0.09872157871723175,
60
+ ,,2.0,0.0,
61
+ ,,2.0,0.0,
62
+ ,,1.0,0.0,
63
+ ,,0.0,0.0,
64
+ ,,0.0,0.0,
65
+ ,,0.0,0.10349414497613907,
66
+ ,,0.0,0.0,
67
+ ,,0.0,0.18934249877929688,
68
+ ,,2.0,0.0,
69
+ ,,0.0,0.0,
70
+ ,,2.0,0.12173273414373398,
71
+ ,,0.0,0.15545623004436493,
72
+ ,,0.0,0.0,
73
+ ,,0.0,0.04166768863797188,
74
+ ,,0.0,0.0,
75
+ ,,1.0,0.0,
76
+ ,,0.0,0.15435068309307098,
77
+ ,,0.0,0.0,
78
+ ,,0.0,0.0,
79
+ ,,0.0,0.10479575395584106,
80
+ ,,1.0,0.0,
81
+ ,,0.0,0.0,
82
+ ,,0.0,0.04414159432053566,
83
+ ,,0.0,0.047357670962810516,
84
+ ,,1.0,0.0,
85
+ ,,1.0,0.0,
86
+ ,,1.0,0.0,
87
+ ,,1.0,0.1763174831867218,
88
+ ,,2.0,0.0,
89
+ ,,1.0,0.0,
90
+ ,,1.0,0.0,
91
+ ,,2.0,0.0,
92
+ ,,0.0,0.11912930756807327,
93
+ ,,1.0,0.0,
94
+ ,,0.0,0.0745026096701622,
95
+ ,,1.0,0.0,
96
+ ,,1.0,0.12260054796934128,
97
+ ,,2.0,0.0,
98
+ ,,2.0,0.0,
99
+ ,,1.0,0.0,
100
+ ,,0.0,0.0,
101
+ ,,3.0,0.0,
102
+ ,,2.0,0.0,
103
+ ,,2.0,0.0,
104
+ ,,0.0,0.0316847562789917,
105
+ ,,1.0,0.0,
106
+ ,,0.0,0.1043618842959404,
107
+ ,,2.0,0.0,
108
+ ,,0.0,0.07371121644973755,
109
+ ,,2.0,0.0,
110
+ ,,1.0,0.0,
111
+ ,,0.0,0.11912930756807327,
112
+ ,,0.0,0.0,
113
+ ,,0.0,0.05947980284690857,
114
+ ,,0.0,0.17545098066329956,
115
+ ,,1.0,0.0,
116
+ ,,3.0,0.0,
117
+ ,,0.0,0.0,
118
+ ,,2.0,0.0,
119
+ ,,1.0,0.0,
120
+ ,,2.0,0.0,
121
+ ,,3.0,0.0,
122
+ ,,0.0,0.0,
123
+ ,,2.0,0.0,
124
+ ,,1.0,0.0,
125
+ ,,0.0,0.0,
126
+ ,,0.0,0.1286752074956894,
127
+ ,,2.0,0.0,
128
+ ,,3.0,0.0,
129
+ ,,0.0,0.013131534680724144,
130
+ ,,2.0,0.0,
131
+ ,,0.0,0.0,
132
+ ,,1.0,0.0,
133
+ ,,1.0,0.0,
134
+ ,,0.0,0.1124367043375969,
135
+ ,,0.0,0.0,
136
+ ,,4.0,0.0,
137
+ ,,2.0,0.0,
138
+ ,,1.0,0.0,
139
+ ,,1.0,0.0,
140
+ ,,0.0,0.0,
141
+ ,,2.0,0.0,
142
+ ,,0.0,0.0,
143
+ ,,0.0,0.0,
144
+ ,,0.0,0.0,
145
+ ,,1.0,0.0,
146
+ ,,0.0,0.0,
147
+ ,,3.0,0.0,
148
+ ,,0.0,0.046368107199668884,
149
+ ,,0.0,0.08004234731197357,
150
+ ,,0.0,0.0,
151
+ ,,0.0,0.0,
152
+ ,,1.0,0.0,
153
+ ,,2.0,0.0,
154
+ ,,0.0,0.0,
155
+ ,,0.0,0.0,
156
+ ,,0.0,0.0,
157
+ ,,0.0,0.16938549280166626,
158
+ ,,0.0,0.0,
159
+ ,,2.0,0.0,
160
+ ,,0.0,0.0,
161
+ ,,0.0,0.0,
162
+ ,,1.0,0.0,
163
+ ,,0.0,0.0,
164
+ ,,1.0,0.0,
165
+ ,,1.0,0.0,
166
+ ,,0.0,0.022021261975169182,
167
+ ,,0.0,0.015142104588449001,
168
+ ,,0.0,0.0,
169
+ ,,0.0,0.0,
170
+ ,,0.0,0.0,
171
+ ,,0.0,0.1826910376548767,
172
+ ,,0.0,0.0,
173
+ ,,1.0,0.0,
174
+ ,,2.0,0.0,
175
+ ,,2.0,0.03038843534886837,
176
+ ,,0.0,0.1030602753162384,
177
+ ,,2.0,0.0,
178
+ ,,0.0,0.0,
179
+ ,,2.0,0.0,
180
+ ,,0.0,0.1321464478969574,
181
+ ,,0.0,0.0,
182
+ ,,0.0,0.09915544837713242,
183
+ ,,2.0,0.0,
184
+ ,,0.0,0.0,
185
+ ,,1.0,0.0,
186
+ ,,1.0,0.0,
187
+ ,,0.0,0.08558208495378494,
188
+ ,,2.0,0.0,
189
+ ,,2.0,0.0,
190
+ ,,3.0,0.0,
191
+ ,,0.0,0.0,
192
+ ,,1.0,0.0,
193
+ ,,3.0,0.0,
194
+ ,,0.0,0.0,
195
+ ,,1.0,0.0,
196
+ ,,0.0,0.043399423360824585,
197
+ ,,1.0,0.0,
198
+ ,,0.0,0.1996317058801651,
199
+ ,,1.0,0.0,
200
+ ,,4.0,0.0,
201
+ ,,3.0,0.0,
202
+ ,,1.0,0.0,
203
+ ,,0.0,0.1030602753162384,
204
+ ,,0.0,0.06738008558750153,
205
+ ,,1.0,0.0,
206
+ ,,2.0,0.0,
207
+ ,,0.0,0.022846193984150887,
208
+ ,,3.0,0.0,
209
+ ,,0.0,0.06975426524877548,
210
+ ,,1.0,0.0,
211
+ ,,1.0,0.0,
212
+ ,,0.0,0.0,
213
+ ,,0.0,0.043399423360824585,
214
+ ,,0.0,0.01759248599410057,
215
+ ,,0.0,0.15545623004436493,
216
+ ,,1.0,0.0,
217
+ ,,0.0,0.1931433379650116,
218
+ ,,1.0,0.0,
219
+ ,,0.0,0.0,
220
+ ,,0.0,0.10783284902572632,
221
+ ,,0.0,0.0,
222
+ ,,3.0,0.0,
223
+ ,,0.0,0.0,
224
+ ,,1.0,0.0,
225
+ ,,0.0,0.0,
226
+ ,,0.0,0.0,
227
+ ,,0.0,0.0,
228
+ ,,0.0,0.0,
229
+ ,,1.0,0.0,
230
+ ,,3.0,0.0,
231
+ ,,0.0,0.1598784625530243,
232
+ ,,0.0,0.0,
233
+ ,,0.0,0.15711456537246704,
234
+ ,,0.0,0.0,
235
+ ,,0.0,0.0,
236
+ ,,1.0,0.0,
237
+ ,,0.0,0.16938549280166626,
238
+ ,,1.0,0.0,
239
+ ,,0.0,0.053047649562358856,
240
+ ,,0.0,0.1560090184211731,
241
+ ,,2.0,0.0,
242
+ ,,0.0,0.014513800852000713,
243
+ ,,0.0,0.10219253599643707,
244
+ ,,1.0,0.0,
245
+ ,,0.0,0.0,
246
+ ,,1.0,0.0,
247
+ ,,3.0,0.0,
248
+ ,,2.0,0.0,
249
+ ,,3.0,0.0,
250
+ ,,3.0,0.0,
251
+ ,,0.0,0.15103401243686676,
252
+ ,,0.0,0.0,
253
+ ,,0.0,0.02697085775434971,
254
+ ,,3.0,0.0,
255
+ ,,0.0,0.1826910376548767,
256
+ ,,1.0,0.0,
257
+ ,,1.0,0.0,
258
+ ,,2.0,0.0,
259
+ ,,1.0,0.0,
260
+ ,,0.0,0.06025756895542145,
261
+ ,,0.0,0.0,
262
+ ,,0.0,0.0,
263
+ ,,4.0,0.10219253599643707,
264
+ ,,0.0,0.1659194827079773,
265
+ ,,0.0,0.0,
266
+ ,,0.0,0.18649187684059143,
267
+ ,,0.0,0.0,
268
+ ,,0.0,0.030152739956974983,
269
+ ,,0.0,0.0,
270
+ ,,0.0,0.11047329753637314,
271
+ ,,2.0,0.0,
272
+ ,,0.0,0.0,
273
+ ,,0.0,0.18174082040786743,
274
+ ,,0.0,0.12086492776870728,
275
+ ,,0.0,0.17371799051761627,
276
+ ,,2.0,0.0,
277
+ ,,2.0,0.0,
278
+ ,,1.0,0.0,
279
+ ,,1.0,0.0,
280
+ ,,1.0,0.0,
281
+ ,,0.0,0.0,
282
+ ,,0.0,0.0,
283
+ ,,0.0,0.0,
284
+ ,,0.0,0.026499466970562935,
285
+ ,,0.0,0.10349414497613907,
286
+ ,,1.0,0.0,
287
+ ,,0.0,0.0,
288
+ ,,0.0,0.0,
289
+ ,,0.0,0.046368107199668884,
290
+ ,,0.0,0.0,
291
+ ,,0.0,0.15877290070056915,
292
+ ,,1.0,0.0,
293
+ ,,0.0,0.08874765038490295,
294
+ ,,2.0,0.0,
295
+ ,,1.0,0.0,
296
+ ,,0.0,0.15711456537246704,
297
+ ,,3.0,0.0,
298
+ ,,0.0,0.17718398571014404,
299
+ ,,2.0,0.0,
300
+ ,,2.0,0.0,
301
+ ,,2.0,0.1124367043375969,
302
+ ,,0.0,0.0,
303
+ ,,4.0,0.0,
304
+ ,,0.0,0.0,
305
+ ,,0.0,0.0,
306
+ ,,0.0,0.0,
307
+ ,,0.0,0.0,
308
+ ,,0.0,0.0,
309
+ ,,1.0,0.0,
310
+ ,,3.0,0.0,
311
+ ,,1.0,0.0,
312
+ ,,0.0,0.1030602753162384,
313
+ ,,1.0,0.0,
314
+ ,,0.0,0.1826910376548767,
315
+ ,,3.0,0.10219253599643707,
316
+ ,,0.0,0.16938549280166626,
317
+ ,,0.0,0.03038843534886837,
318
+ ,,1.0,0.0,
319
+ ,,2.0,0.0,
320
+ ,,1.0,0.0,
321
+ ,,0.0,0.0,
322
+ ,,0.0,0.11409009993076324,
323
+ ,,0.0,0.09828770905733109,
324
+ ,,1.0,0.0,
325
+ ,,3.0,0.0,
326
+ ,,0.0,0.0,
327
+ ,,1.0,0.0,
328
+ ,,0.0,0.0,
329
+ ,,3.0,0.0,
330
+ ,,1.0,0.0,
331
+ ,,0.0,0.0,
332
+ ,,1.0,0.17769934237003326,
333
+ ,,2.0,0.0,
334
+ ,,0.0,0.0,
335
+ ,,0.0,0.15103401243686676,
336
+ ,,0.0,0.0,
337
+ ,,1.0,0.0,
338
+ ,,2.0,0.0,
339
+ ,,0.0,0.0,
340
+ ,,0.0,0.0,
341
+ ,,3.0,0.0,
342
+ ,,0.0,0.1056634932756424,
343
+ ,,1.0,0.0,
344
+ ,,0.0,0.0,
345
+ ,,0.0,0.046368107199668884,
346
+ ,,1.0,0.0,
347
+ ,,1.0,0.0,
348
+ ,,0.0,0.15877290070056915,
349
+ ,,1.0,0.0,
350
+ ,,0.0,0.0,
351
+ ,,0.0,0.0,
352
+ ,,2.0,0.0,
353
+ ,,1.0,0.0,
354
+ ,,0.0,0.0,
355
+ ,,2.0,0.0,
356
+ ,,0.0,0.0,
357
+ ,,0.0,0.025085296481847763,
358
+ ,,0.0,0.0,
359
+ ,,2.0,0.0,
360
+ ,,0.0,0.0,
361
+ ,,1.0,0.0,
362
+ ,,1.0,0.0,
363
+ ,,3.0,0.0,
364
+ ,,0.0,0.0,
365
+ ,,0.0,0.0,
366
+ ,,0.0,0.0,
367
+ ,,0.0,0.0,
368
+ ,,1.0,0.0,
369
+ ,,0.0,0.0,
370
+ ,,0.0,0.18459145724773407,
371
+ ,,0.0,0.1286752074956894,
372
+ ,,1.0,0.0,
373
+ ,,2.0,0.0,
374
+ ,,0.0,0.11047329753637314,
375
+ ,,1.0,0.0,
376
+ ,,1.0,0.0,
377
+ ,,0.0,0.06342313438653946,
378
+ ,,1.0,0.0,
379
+ ,,1.0,0.1338820606470108,
380
+ ,,2.0,0.0,
381
+ ,,4.0,0.0,
382
+ ,,2.0,0.0,
383
+ ,,0.0,0.10783284902572632,
384
+ ,,1.0,0.0,
385
+ ,,1.0,0.0,
386
+ ,,0.0,0.0,
387
+ ,,0.0,0.16098402440547943,
388
+ ,,2.0,0.0,
389
+ ,,0.0,0.0,
390
+ ,,1.0,0.0,
391
+ ,,0.0,0.016712861135601997,
392
+ ,,3.0,0.0,
393
+ ,,1.0,0.0,
394
+ ,,1.0,0.1921931356191635,
395
+ ,,2.0,0.0,
396
+ ,,2.0,0.0,
397
+ ,,1.0,0.0,
398
+ ,,0.0,0.17545098066329956,
399
+ ,,1.0,0.0,
400
+ ,,2.0,0.0,
401
+ ,,1.0,0.0,
402
+ ,,1.0,0.0,
403
+ ,,2.0,0.0,
404
+ ,,1.0,0.0,
405
+ ,,0.0,0.15379789471626282,
406
+ ,,0.0,0.05354243144392967,
407
+ ,,0.0,0.0,
408
+ ,,0.0,0.0,
409
+ ,,0.0,0.17891699075698853,
410
+ ,,1.0,0.0,
411
+ ,,1.0,0.19694417715072632,
412
+ ,,3.0,0.0,
413
+ ,,0.0,0.05774806812405586,
414
+ ,,0.0,0.10479575395584106,
415
+ ,,1.0,0.0,
416
+ ,,0.0,0.0,
417
+ ,,2.0,0.0,
418
+ ,,0.0,0.0,
419
+ ,,1.0,0.0,
420
+ ,,0.0,0.06342313438653946,
421
+ ,,2.0,0.0,
422
+ ,,0.0,0.0,
423
+ ,,0.0,0.0,
424
+ ,,0.0,0.1598784625530243,
425
+ ,,0.0,0.1598784625530243,
426
+ ,,2.0,0.11047329753637314,
427
+ ,,0.0,0.11409009993076324,
428
+ ,,0.0,0.15435068309307098,
429
+ ,,0.0,0.1321464478969574,
430
+ ,,0.0,0.10956832766532898,
431
+ ,,0.0,0.0,
432
+ ,,3.0,0.0,
433
+ ,,0.0,0.02023135870695114,
434
+ ,,0.0,0.0,
435
+ ,,0.0,0.17545098066329956,
436
+ ,,3.0,0.0,
437
+ ,,0.0,0.0,
438
+ ,,0.0,0.0,
439
+ ,,3.0,0.0,
440
+ ,,4.0,0.0,
441
+ ,,3.0,0.0,
442
+ ,,0.0,0.10479575395584106,
443
+ ,,0.0,0.0,
444
+ ,,1.0,0.0,
445
+ ,,0.0,0.0,
446
+ ,,0.0,0.11999711394309998,
447
+ ,,0.0,0.0,
448
+ ,,4.0,0.0,
449
+ ,,0.0,0.0,
450
+ ,,2.0,0.0,
451
+ ,,2.0,0.0,
452
+ ,,1.0,0.0,
453
+ ,,3.0,0.0,
454
+ ,,1.0,0.0,
455
+ ,,2.0,0.0,
456
+ ,,0.0,0.0,
457
+ ,,4.0,0.0,
458
+ ,,2.0,0.0,
459
+ ,,0.0,0.0,
460
+ ,,0.0,0.14603139460086823,
461
+ ,,0.0,0.15269234776496887,
462
+ ,,0.0,0.0,
463
+ ,,0.0,0.0,
464
+ ,,2.0,0.0,
465
+ ,,1.0,0.0,
466
+ ,,0.0,0.0,
467
+ ,,1.0,0.0,
468
+ ,,0.0,0.17458447813987732,
469
+ ,,1.0,0.0,
470
+ ,,0.0,0.1030602753162384,
471
+ ,,1.0,0.0,
472
+ ,,2.0,0.0,
473
+ ,,1.0,0.0,
474
+ ,,0.0,0.18174082040786743,
475
+ ,,3.0,0.0,
476
+ ,,1.0,0.0,
477
+ ,,2.0,0.0,
478
+ ,,0.0,0.0,
479
+ ,,1.0,0.13805298507213593,
480
+ ,,2.0,0.0,
481
+ ,,2.0,0.0,
482
+ ,,1.0,0.0,
483
+ ,,1.0,0.0,
484
+ ,,0.0,0.03757713362574577,
485
+ ,,1.0,0.15269234776496887,
486
+ ,,0.0,0.0,
487
+ ,,1.0,0.11150667071342468,
488
+ ,,0.0,0.1504812240600586,
489
+ ,,1.0,0.0,
490
+ ,,2.0,0.0,
491
+ ,,1.0,0.0,
492
+ ,,1.0,0.0,
493
+ ,,0.0,0.0,
494
+ ,,0.0,0.15711456537246704,
495
+ ,,0.0,0.15711456537246704,
496
+ ,,1.0,0.0,
497
+ ,,1.0,0.0,
498
+ ,,0.0,0.0,
499
+ ,,1.0,0.0,
500
+ ,,2.0,0.0,
501
+ ,,1.0,0.0,
502
+ ,,0.0,0.11999711394309998,
503
+ ,,0.0,0.0,
504
+ ,,1.0,0.0,
505
+ ,,2.0,0.0,
506
+ ,,1.0,0.0,
507
+ ,,0.0,0.0,
508
+ ,,0.0,0.15103401243686676,
509
+ ,,4.0,0.0,
510
+ ,,1.0,0.0,
511
+ ,,2.0,0.0,
512
+ ,,3.0,0.0,
513
+ ,,1.0,0.0,
514
+ ,,1.0,0.0,
515
+ ,,0.0,0.022846193984150887,
516
+ ,,0.0,0.0,
517
+ ,,0.0,0.020842785015702248,
518
+ ,,0.0,0.0,
519
+ ,,0.0,0.0,
520
+ ,,1.0,0.0,
521
+ ,,0.0,0.1826910376548767,
522
+ ,,0.0,0.0,
523
+ ,,0.0,0.022846193984150887,
524
+ ,,0.0,0.15711456537246704,
525
+ ,,0.0,0.0,
526
+ ,,0.0,0.0,
527
+ ,,0.0,0.1030602753162384,
528
+ ,,1.0,0.0,
529
+ ,,0.0,0.0,
530
+ ,,2.0,0.0,
531
+ ,,2.0,0.0,
532
+ ,,0.0,0.11047329753637314,
533
+ ,,2.0,0.0,
534
+ ,,0.0,0.0956844910979271,
535
+ ,,0.0,0.0,
536
+ ,,1.0,0.0,
537
+ ,,2.0,0.0,
538
+ ,,2.0,0.0,
539
+ ,,0.0,0.0,
540
+ ,,0.0,0.07371121644973755,
541
+ ,,2.0,0.0,
542
+ ,,1.0,0.1659194827079773,
543
+ ,,0.0,0.06342313438653946,
544
+ ,,0.0,0.14082454144954681,
545
+ ,,1.0,0.0,
546
+ ,,1.0,0.0,
547
+ ,,0.0,0.1576673537492752,
548
+ ,,0.0,0.011099464260041714,
549
+ ,,0.0,0.06975426524877548,
550
+ ,,1.0,0.0,
551
+ ,,2.0,0.0,
552
+ ,,1.0,0.0,
553
+ ,,0.0,0.0,
554
+ ,,4.0,0.0,
555
+ ,,1.0,0.0,
556
+ ,,1.0,0.0,
557
+ ,,0.0,0.10351569950580597,
558
+ ,,0.0,0.15103401243686676,
559
+ ,,2.0,0.0,
560
+ ,,0.0,0.03875561058521271,
561
+ ,,0.0,0.0,
562
+ ,,0.0,0.0,
563
+ ,,0.0,0.0,
564
+ ,,1.0,0.0,
565
+ ,,0.0,0.0956844910979271,
566
+ ,,2.0,0.0,
567
+ ,,0.0,0.0,
568
+ ,,1.0,0.1598784625530243,
569
+ ,,1.0,0.0,
570
+ ,,0.0,0.0,
571
+ ,,4.0,0.0,
572
+ ,,0.0,0.0,
573
+ ,,0.0,0.0,
574
+ ,,1.0,0.0,
575
+ ,,3.0,0.0,
576
+ ,,2.0,0.0,
577
+ ,,4.0,0.0,
578
+ ,,2.0,0.0,
579
+ ,,3.0,0.0,
580
+ ,,2.0,0.0,
581
+ ,,0.0,0.1124367043375969,
582
+ ,,2.0,0.0,
583
+ ,,1.0,0.0,
584
+ ,,0.0,0.14256015419960022,
585
+ ,,4.0,0.0,
586
+ ,,0.0,0.019603056833148003,
587
+ ,,0.0,0.0,
588
+ ,,0.0,0.1836412400007248,
589
+ ,,2.0,0.0,
590
+ ,,2.0,0.0,
591
+ ,,0.0,0.04958418384194374,
592
+ ,,0.0,0.15711456537246704,
593
+ ,,0.0,0.0,
594
+ ,,0.0,0.0,
595
+ ,,3.0,0.0,
596
+ ,,0.0,0.058490242809057236,
597
+ ,,1.0,0.0,
598
+ ,,0.0,0.18174082040786743,
599
+ ,,2.0,0.0,
600
+ ,,1.0,0.0,
601
+ ,,1.0,0.0,
602
+ ,,1.0,0.0,
603
+ ,,0.0,0.09741996973752975,
604
+ ,,1.0,0.11047329753637314,
605
+ ,,1.0,0.0,
606
+ ,,0.0,0.0,
607
+ ,,1.0,0.0,
608
+ ,,0.0,0.18079061806201935,
609
+ ,,1.0,0.0,
610
+ ,,1.0,0.0,
611
+ ,,2.0,0.0,
612
+ ,,0.0,0.0,
613
+ ,,0.0,0.03038843534886837,
614
+ ,,1.0,0.0,
615
+ ,,0.0,0.1680111587047577,
616
+ ,,0.0,0.0,
617
+ ,,1.0,0.0,
618
+ ,,0.0,0.0,
619
+ ,,2.0,0.0,
620
+ ,,1.0,0.0,
621
+ ,,0.0,0.0,
622
+ ,,0.0,0.043399423360824585,
623
+ ,,1.0,0.0,
624
+ ,,2.0,0.0,
625
+ ,,0.0,0.0,
626
+ ,,3.0,0.0,
627
+ ,,0.0,0.03109551966190338,
628
+ ,,0.0,0.0,
629
+ ,,1.0,0.0,
630
+ ,,0.0,0.05477938428521156,
631
+ ,,0.0,0.15877290070056915,
632
+ ,,2.0,0.0,
633
+ ,,2.0,0.0,
634
+ ,,1.0,0.0,
635
+ ,,0.0,0.0,
636
+ ,,0.0,0.0,
637
+ ,,4.0,0.0,
638
+ ,,0.0,0.0,
639
+ ,,1.0,0.0,
640
+ ,,2.0,0.0,
641
+ ,,0.0,0.15435068309307098,
642
+ ,,2.0,0.0,
643
+ ,,1.0,0.0,
644
+ ,,1.0,0.0,
645
+ ,,0.0,0.15877290070056915,
646
+ ,,0.0,0.0,
647
+ ,,3.0,0.0,
648
+ ,,0.0,0.16158698499202728,
649
+ ,,1.0,0.0,
650
+ ,,0.0,0.0,
651
+ ,,0.0,0.0745026096701622,
652
+ ,,3.0,0.10262640565633774,
653
+ ,,3.0,0.0,
654
+ ,,2.0,0.0,
655
+ ,,2.0,0.0,
656
+ ,,0.0,0.0,
657
+ ,,1.0,0.0,
658
+ ,,0.0,0.0,
659
+ ,,4.0,0.0,
660
+ ,,2.0,0.0,
661
+ ,,3.0,0.0,
662
+ ,,0.0,0.043399423360824585,
663
+ ,,4.0,0.0,
664
+ ,,0.0,0.0,
665
+ ,,3.0,0.0,
666
+ ,,0.0,0.0,
667
+ ,,1.0,0.0,
668
+ ,,1.0,0.0,
669
+ ,,1.0,0.0,
670
+ ,,3.0,0.0,
671
+ ,,0.0,0.0,
672
+ ,,1.0,0.0,
673
+ ,,2.0,0.0,
674
+ ,,1.0,0.0,
675
+ ,,0.0,0.11057662963867188,
676
+ ,,0.0,0.0,
677
+ ,,3.0,0.0,
678
+ ,,1.0,0.0,
679
+ ,,2.0,0.0,
680
+ ,,0.0,0.11078330874443054,
681
+ ,,0.0,0.1304108202457428,
682
+ ,,3.0,0.0,
683
+ ,,0.0,0.0,
684
+ ,,0.0,0.0,
685
+ ,,2.0,0.0,
686
+ ,,2.0,0.0,
687
+ ,,0.0,0.0,
688
+ ,,1.0,0.0,
689
+ ,,0.0,0.16678598523139954,
690
+ ,,2.0,0.0,
691
+ ,,0.0,0.0,
692
+ ,,0.0,0.15711456537246704,
693
+ ,,3.0,0.0,
694
+ ,,0.0,0.0,
695
+ ,,0.0,0.1286752074956894,
696
+ ,,0.0,0.016021728515625,
697
+ ,,0.0,0.0,
698
+ ,,4.0,0.0,
699
+ ,,1.0,0.1286752074956894,
700
+ ,,0.0,0.0,
701
+ ,,0.0,0.15711456537246704,
702
+ ,,0.0,0.0,
703
+ ,,0.0,0.024142516776919365,
704
+ ,,0.0,0.10826671868562698,
705
+ ,,1.0,0.0,
706
+ ,,0.0,0.04142029955983162,
707
+ ,,1.0,0.0,
708
+ ,,0.0,0.08320791274309158,
709
+ ,,0.0,0.02838502638041973,
710
+ ,,1.0,0.0,
711
+ ,,3.0,0.0,
712
+ ,,0.0,0.16678598523139954,
713
+ ,,1.0,0.0,
714
+ ,,0.0,0.0,
715
+ ,,0.0,0.027206551283597946,
716
+ ,,0.0,0.10826671868562698,
717
+ ,,2.0,0.0,
718
+ ,,0.0,0.0,
719
+ ,,0.0,0.13908891379833221,
720
+ ,,2.0,0.0,
721
+ ,,0.0,0.0,
722
+ ,,0.0,0.0,
723
+ ,,3.0,0.0,
724
+ ,,0.0,0.0,
725
+ ,,0.0,0.0,
726
+ ,,2.0,0.0,
727
+ ,,0.0,0.0,
728
+ ,,0.0,0.0,
729
+ ,,0.0,0.0,
730
+ ,,0.0,0.0,
731
+ ,,1.0,0.0,
732
+ ,,1.0,0.0,
733
+ ,,2.0,0.0,
734
+ ,,0.0,0.10479575395584106,
735
+ ,,0.0,0.06144465506076813,
736
+ ,,0.0,0.10349414497613907,
737
+ ,,0.0,0.0,
738
+ ,,2.0,0.0,
739
+ ,,0.0,0.0,
740
+ ,,0.0,0.06579730659723282,
741
+ ,,0.0,0.07371121644973755,
742
+ ,,0.0,0.08320791274309158,
743
+ ,,0.0,0.0,
744
+ ,,0.0,0.1826910376548767,
745
+ ,,0.0,0.1030602753162384,
746
+ ,,0.0,0.0,
747
+ ,,0.0,0.0,
748
+ ,,0.0,0.0316847562789917,
749
+ ,,0.0,0.1030602753162384,
750
+ ,,0.0,0.08320791274309158,
751
+ ,,0.0,0.0,
752
+ ,,0.0,0.0,
753
+ ,,0.0,0.0,
754
+ ,,1.0,0.0,
755
+ ,,0.0,0.0,
756
+ ,,0.0,0.0,
757
+ ,,0.0,0.06144465506076813,
758
+ ,,0.0,0.0,
759
+ ,,2.0,0.0,
760
+ ,,1.0,0.0,
761
+ ,,0.0,0.022846193984150887,
762
+ ,,0.0,0.09611836075782776,
763
+ ,,0.0,0.0,
764
+ ,,1.0,0.0,
765
+ ,,1.0,0.0,
766
+ ,,1.0,0.0,
767
+ ,,0.0,0.15877290070056915,
768
+ ,,1.0,0.0,
769
+ ,,2.0,0.0,
770
+ ,,0.0,0.0,
771
+ ,,2.0,0.0,
772
+ ,,2.0,0.0,
773
+ ,,0.0,0.08716487139463425,
774
+ ,,1.0,0.0,
775
+ ,,2.0,0.0,
776
+ ,,0.0,0.11912930756807327,
777
+ ,,2.0,0.0,
778
+ ,,1.0,0.0,
779
+ ,,2.0,0.0,
780
+ ,,0.0,0.0,
781
+ ,,0.0,0.0,
782
+ ,,0.0,0.0,
783
+ ,,0.0,0.15379789471626282,
784
+ ,,0.0,0.0,
785
+ ,,0.0,0.1030602753162384,
786
+ ,,0.0,0.0,
787
+ ,,4.0,0.0,
788
+ ,,0.0,0.0,
789
+ ,,0.0,0.0,
790
+ ,,0.0,0.04043073579668999,
791
+ ,,1.0,0.0,
792
+ ,,1.0,0.0,
793
+ ,,0.0,0.0,
794
+ ,,0.0,0.0,
795
+ ,,1.0,0.0,
796
+ ,,0.0,0.022374803200364113,
797
+ ,,1.0,0.0,
798
+ ,,1.0,0.0,
799
+ ,,0.0,0.0,
800
+ ,,0.0,0.0,
801
+ ,,0.0,0.0,
802
+ ,,0.0,0.15656179189682007,
803
+ ,,2.0,0.0,
804
+ ,,0.0,0.18174082040786743,
805
+ ,,0.0,0.0,
806
+ ,,0.0,0.0,
807
+ ,,0.0,0.1598784625530243,
808
+ ,,0.0,0.0,
809
+ ,,0.0,0.11912930756807327,
810
+ ,,0.0,0.17371799051761627,
811
+ ,,1.0,0.0,
812
+ ,,0.0,0.0,
813
+ ,,1.0,0.0,
814
+ ,,1.0,0.0,
815
+ ,,0.0,0.0,
816
+ ,,0.0,0.03687004745006561,
817
+ ,,0.0,0.12324520200490952,
818
+ ,,3.0,0.0,
819
+ ,,0.0,0.11192002147436142,
820
+ ,,3.0,0.0,
821
+ ,,0.0,0.0,
822
+ ,,2.0,0.0,
823
+ ,,1.0,0.0,
824
+ ,,0.0,0.0,
825
+ ,,2.0,0.0,
826
+ ,,0.0,0.0,
827
+ ,,0.0,0.12735363841056824,
828
+ ,,0.0,0.18468911945819855,
829
+ ,,0.0,0.08162513375282288,
830
+ ,,1.0,0.0,
831
+ ,,0.0,0.11078330874443054,
832
+ ,,1.0,0.0,
833
+ ,,0.0,0.19504375755786896,
834
+ ,,0.0,0.0,
835
+ ,,1.0,0.0,
836
+ ,,0.0,0.16938549280166626,
837
+ ,,0.0,0.0,
838
+ ,,0.0,0.0,
839
+ ,,0.0,0.0,
840
+ ,,4.0,0.0,
841
+ ,,0.0,0.11409009993076324,
842
+ ,,0.0,0.0,
843
+ ,,1.0,0.0,
844
+ ,,0.0,0.11254004389047623,
845
+ ,,0.0,0.0,
846
+ ,,0.0,0.10349414497613907,
847
+ ,,1.0,0.0,
848
+ ,,0.0,0.06896287202835083,
849
+ ,,0.0,0.18459145724773407,
850
+ ,,1.0,0.0,
851
+ ,,2.0,0.0,
852
+ ,,2.0,0.0,
853
+ ,,2.0,0.0,
854
+ ,,0.0,0.0,
855
+ ,,1.0,0.0,
856
+ ,,2.0,0.0,
857
+ ,,0.0,0.0,
858
+ ,,2.0,0.0,
859
+ ,,2.0,0.07845956832170486,
860
+ ,,1.0,0.0,
861
+ ,,1.0,0.0,
862
+ ,,2.0,0.0,
863
+ ,,0.0,0.0,
864
+ ,,0.0,0.04562593623995781,
865
+ ,,2.0,0.0,
866
+ ,,1.0,0.0,
867
+ ,,0.0,0.09481675177812576,
868
+ ,,0.0,0.0,
869
+ ,,0.0,0.0,
870
+ ,,0.0,0.0,
871
+ ,,3.0,0.0,
872
+ ,,0.0,0.18174082040786743,
873
+ ,,0.0,0.1504812240600586,
874
+ ,,2.0,0.0,
875
+ ,,0.0,0.0,
876
+ ,,2.0,0.0,
877
+ ,,0.0,0.0,
878
+ ,,3.0,0.0,
879
+ ,,2.0,0.0,
880
+ ,,0.0,0.03109551966190338,
881
+ ,,0.0,0.0,
882
+ ,,1.0,0.0,
883
+ ,,1.0,0.0,
884
+ ,,0.0,0.0,
885
+ ,,0.0,0.05403721332550049,
886
+ ,,3.0,0.10219253599643707,
887
+ ,,0.0,0.0,
888
+ ,,1.0,0.0,
889
+ ,,1.0,0.0,
890
+ ,,0.0,0.10349414497613907,
891
+ ,,2.0,0.0,
892
+ ,,1.0,0.0,
893
+ ,,0.0,0.1030602753162384,
894
+ ,,2.0,0.0,
895
+ ,,0.0,0.12086492776870728,
896
+ ,,0.0,0.0,
897
+ ,,0.0,0.16098402440547943,
898
+ ,,2.0,0.0,
899
+ ,,0.0,0.0,
900
+ ,,2.0,0.0,
901
+ ,,3.0,0.0,
902
+ ,,0.0,0.022846193984150887,
903
+ ,,0.0,0.0,
904
+ ,,0.0,0.017341164872050285,
905
+ ,,2.0,0.0,
906
+ ,,0.0,0.0,
907
+ ,,0.0,0.0,
908
+ ,,3.0,0.0,
909
+ ,,0.0,0.10913445800542831,
910
+ ,,1.0,0.0,
911
+ ,,1.0,0.0,
912
+ ,,0.0,0.17458447813987732,
913
+ ,,0.0,0.0,
914
+ ,,1.0,0.0,
915
+ ,,3.0,0.0,
916
+ ,,0.0,0.0,
917
+ ,,1.0,0.0,
918
+ ,,0.0,0.0,
919
+ ,,3.0,0.0,
920
+ ,,0.0,0.0,
921
+ ,,2.0,0.0,
922
+ ,,1.0,0.0,
923
+ ,,3.0,0.0,
924
+ ,,0.0,0.0,
925
+ ,,0.0,0.0,
926
+ ,,0.0,0.03946269303560257,
927
+ ,,1.0,0.0,
928
+ ,,0.0,0.11181668192148209,
929
+ ,,1.0,0.0,
930
+ ,,1.0,0.0,
931
+ ,,2.0,0.1826910376548767,
932
+ ,,0.0,0.0,
933
+ ,,0.0,0.03993595391511917,
934
+ ,,0.0,0.04414159432053566,
935
+ ,,2.0,0.0,
936
+ ,,1.0,0.0,
937
+ ,,0.0,0.1598784625530243,
938
+ ,,0.0,0.02697085775434971,
939
+ ,,0.0,0.0,
940
+ ,,0.0,0.0,
941
+ ,,0.0,0.1030602753162384,
942
+ ,,2.0,0.15435068309307098,
943
+ ,,3.0,0.0,
944
+ ,,0.0,0.0,
945
+ ,,0.0,0.0,
946
+ ,,0.0,0.11409009993076324,
947
+ ,,0.0,0.0,
948
+ ,,4.0,0.0,
949
+ ,,0.0,0.15379789471626282,
950
+ ,,1.0,0.0,
951
+ ,,1.0,0.0,
952
+ ,,0.0,0.1373533010482788,
953
+ ,,0.0,0.0,
954
+ ,,0.0,0.11409009993076324,
955
+ ,,0.0,0.1124367043375969,
956
+ ,,0.0,0.0,
957
+ ,,0.0,0.0745026096701622,
958
+ ,,0.0,0.04859462380409241,
959
+ ,,2.0,0.0,
960
+ ,,0.0,0.046368107199668884,
961
+ ,,0.0,0.0,
962
+ ,,0.0,0.16938549280166626,
963
+ ,,0.0,0.0,
964
+ ,,1.0,0.16938549280166626,
965
+ ,,2.0,0.0,
966
+ ,,0.0,0.15711456537246704,
967
+ ,,0.0,0.18174082040786743,
968
+ ,,2.0,0.15435068309307098,
969
+ ,,0.0,0.0,
970
+ ,,2.0,0.0,
971
+ ,,2.0,0.0,
972
+ ,,0.0,0.0,
973
+ ,,0.0,0.0,
974
+ ,,0.0,0.1576673537492752,
975
+ ,,0.0,0.0,
976
+ ,,1.0,0.0,
977
+ ,,0.0,0.1560090184211731,
978
+ ,,1.0,0.0,
979
+ ,,2.0,0.0,
980
+ ,,0.0,0.17545098066329956,
981
+ ,,0.0,0.0,
982
+ ,,0.0,0.0,
983
+ ,,0.0,0.0,
984
+ ,,0.0,0.0,
985
+ ,,1.0,0.0,
986
+ ,,0.0,0.0,
987
+ ,,0.0,0.1030602753162384,
988
+ ,,2.0,0.0,
989
+ ,,1.0,0.0,
990
+ ,,3.0,0.0,
991
+ ,,0.0,0.0,
992
+ ,,0.0,0.0,
993
+ ,,1.0,0.0,
994
+ ,,0.0,0.1883922964334488,
995
+ ,,0.0,0.0,
996
+ ,,0.0,0.0,
997
+ ,,1.0,0.0,
998
+ ,,2.0,0.0,
999
+ ,,1.0,0.0,
1000
+ ,,1.0,0.0,
1001
+ ,,2.0,0.0,
test.csv ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ accuracy,precision,recall,f1,roc_auc,loss
2
+ 0.257,0.5057064422784039,0.257,0.3405964862956158,0.0,0.0
train.csv ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ loss,epoch
2
+ 0.0,0
val.csv ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ accuracy,precision,recall,f1,roc_auc,loss,epoch
2
+ 0.266,0.5141035353535355,0.266,0.3505588401624595,0.0,0.0,0