SimonCrouzet commited on
Commit
da42b77
·
verified ·
1 Parent(s): 38e0561

Upload HIC_3595cc57

Browse files
HIC_3595cc57/config.yaml ADDED
@@ -0,0 +1,523 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # GinkgoAbDev Default Configuration
2
+ # This config drives all modeling choices and hyperparameters
3
+
4
+ # =============================================================================
5
+ # GENERAL SETTINGS
6
+ # =============================================================================
7
+ project_name: "GinkgoAbDev"
8
+ experiment_name: "default_experiment"
9
+ random_seed: 42
10
+ device: "cuda" # cuda, cpu, mps
11
+
12
+ # Environment settings
13
+ disable_tokenizers_parallelism: true # Disable HuggingFace tokenizers parallelism (avoids fork warnings)
14
+
15
+ # =============================================================================
16
+ # DATA SETTINGS
17
+ # =============================================================================
18
+ data:
19
+ gdpa1_path: "inputs/GDPa1_complete.csv"
20
+ flab_path: "external/FLAb-main/data"
21
+ heldout_path: "inputs/GDPa1_v1.2_20250814_heldout.csv"
22
+
23
+ # Cross-validation settings (REQUIRED: use hierarchical_cluster_IgG_isotype_stratified_fold)
24
+ cv_fold_column: "hierarchical_cluster_IgG_isotype_stratified_fold"
25
+ n_folds: 5
26
+
27
+ # Sequence columns
28
+ heavy_chain_col: "vh_protein_sequence"
29
+ light_chain_col: "vl_protein_sequence"
30
+
31
+ # AHO-aligned sequences (alternative to original sequences)
32
+ # Set use_aho_aligned: true to use heavy_aligned_aho and light_aligned_aho columns
33
+ # IMPORTANT: Requires separate precomputed embeddings for aligned sequences!
34
+ use_aho_aligned: false
35
+
36
+ # Full-chain sequences (includes constant regions)
37
+ # Set use_full_chain: true to use hc_protein_sequence and lc_protein_sequence columns
38
+ # Benefits: Captures IgG subclass differences (e.g., IgG1 vs IgG2 CH2 domain affects Tm2)
39
+ # Mutually exclusive with use_aho_aligned
40
+ # IMPORTANT: Requires separate precomputed embeddings with _fullchain suffix!
41
+ use_full_chain: false
42
+
43
+ # Competition: 5 properties (direct assay names from competition)
44
+ # Valid property names: AC-SINS_pH7.4, PR_CHO, HIC, Tm2, Titer
45
+ properties:
46
+ hydrophobicity:
47
+ assays: ["HIC"]
48
+ display_name: "💧 Hydrophobicity"
49
+ polyreactivity:
50
+ assays: ["PR_CHO"]
51
+ display_name: "🎯 Polyreactivity"
52
+ self_association:
53
+ assays: ["AC-SINS_pH7.4"]
54
+ display_name: "🧲 Self-association"
55
+ thermostability:
56
+ assays: ["Tm2"]
57
+ display_name: "🌡️ Thermostability"
58
+ titer:
59
+ assays: ["Titer"]
60
+ display_name: "🧪 Titer"
61
+
62
+ # Data augmentation with FLAb
63
+ use_flab_pretrain: true
64
+ flab_binding_datasets:
65
+ - "binding" # 3.9M datapoints
66
+ flab_developability_datasets:
67
+ - "aggregation/jain2017biophyscial_HICRT.csv"
68
+ - "aggregation/jain2017biophysical_ACSINS.csv"
69
+ - "thermostability/jain2017biophysical_Tm.csv"
70
+ - "expression/jain2017biophysical_HEK.csv"
71
+ - "polyreactivity/jain2017biophysical_PSR.csv"
72
+
73
+ # =============================================================================
74
+ # ENCODER SETTINGS
75
+ # =============================================================================
76
+ # Two-stage training strategy:
77
+ # 1. Default: Encoder frozen (freeze_encoder: true) - trains only decoder
78
+ # 2. Fine-tuning: Set freeze_encoder: false to unfreeze encoder for full fine-tuning
79
+ #
80
+ # UNIFIED ENCODER INTERFACE:
81
+ # - Specify which encoders to use via encoder_types list
82
+ # - Single encoder: encoder_types: ["esmc_6b"]
83
+ # - Multiple encoders: encoder_types: ["esmc_6b", "antiberty", "prott5"]
84
+ # - The system automatically handles fusion when using multiple encoders
85
+ #
86
+ # To unfreeze encoder for fine-tuning:
87
+ # - Set freeze_encoder: false
88
+ encoder:
89
+ # Fusion strategy (only relevant when using multiple encoders)
90
+ fusion_strategy: "concat" # Options: concat, weighted, attention, gated
91
+
92
+ # Encoders use native dimensions hard-coded in source files (zero information loss):
93
+ # - antiberty: 512 dims (native)
94
+ # - esm2_650M: 1280 dims (native)
95
+ # - esmc_300m: 960 dims (native)
96
+ # - esmc_600m: 1152 dims (native)
97
+ # - esmc_6b: 2560 dims (native)
98
+ # - prott5: 1024 dims (native)
99
+
100
+ # General encoder settings
101
+ freeze_encoder: true # Freeze encoder by default (feature extraction mode)
102
+ use_heavy: true
103
+ use_light: true
104
+ pooling: null # Options: mean, cls, max, sliced_wasserstein
105
+
106
+ # Per-encoder specific configs (optional, to override model names or other settings)
107
+ encoder_configs:
108
+ antiberty:
109
+ model_name: "alchemab/antiberty"
110
+ # Uses native 512 dims (hard-coded in source)
111
+ esm2:
112
+ model_name: "facebook/esm2_t33_650M_UR50D" # Options: t6_8M, t12_35M, t30_150M, t33_650M, t36_3B
113
+ # Uses native 1280 dims for t33_650M (hard-coded in source)
114
+ esmc:
115
+ model_name: "esmc_6b" # Default ESM-C model
116
+ # Uses native 2560 dims for 6B (hard-coded in source, zero information loss)
117
+ # precomputed_embeddings_path: Auto-detected from source_csv_path + checksum
118
+ # source_csv_path: Provided by training script (defaults to data.gdpa1_path)
119
+ esmc_300m:
120
+ model_name: "esmc_300m"
121
+ # Uses native 960 dims (hard-coded in source)
122
+ esmc_600m:
123
+ model_name: "esmc_600m"
124
+ # Uses native 1152 dims (hard-coded in source)
125
+ esmc_6b:
126
+ model_name: "esmc_6b"
127
+ # Uses native 2560 dims (hard-coded in source)
128
+ prott5:
129
+ model_name: "Rostlab/prot_t5_xl_uniref50"
130
+ # Uses native 1024 dims (hard-coded in source)
131
+
132
+ # =============================================================================
133
+ # DECODER SETTINGS
134
+ # =============================================================================
135
+ decoder:
136
+ type: "attention" # Options: mlp, attention
137
+
138
+ # MLP Decoder (simple baseline configuration)
139
+ mlp:
140
+ hidden_dims: [256, 128]
141
+ activation: "relu" # relu, gelu, silu
142
+ dropout: 0.2
143
+ batch_norm: true
144
+ pooling_strategy: "mean" # Options: mean, sliced_wasserstein
145
+ output_activation: "none" # Options: none, softplus, sigmoid, exp
146
+ # Output activation explained:
147
+ # - none: Linear output (default, good for normalized targets)
148
+ # - softplus: Smooth strictly positive (good for Titer if not normalized)
149
+ # - sigmoid: Bounded [0, 1] (good for probabilities)
150
+ # - exp: Exponential e^x (strictly positive, handles large ranges)
151
+
152
+ # Attention Decoder (works on pooled embeddings with cross-attention)
153
+ # Uses pre-normalization (LayerNorm before attention/FFN)
154
+ attention:
155
+ n_heads: 4
156
+ hidden_dim: 768 # Balance between information preservation and gradient stability
157
+ n_layers: 2
158
+ n_output_layers: 1 # Output MLP: 768 → 384 → 192 → 1 (÷2 each step)
159
+ dropout: 0.3
160
+
161
+ # Pooling strategy for sequence dimension
162
+ # Options: null/mean (average), attention (learnable position importance)
163
+ pooling_strategy: "mean" # null or 'mean' for averaging, 'attention' to learn position importance
164
+
165
+ # Cross-attention and fusion
166
+ attention_strategy: "self_cross" # Options: bidirectional_cross, self_cross, self_only
167
+ use_learnable_chain_fusion: "none" # Options: "none" (50/50 average), "per_chain" (1 weight for VH/VL balance), "per_dim" (separate weight per feature dimension)
168
+ use_output_norm: false # Options: true (LayerNorm between output head layers), false (no norm)
169
+
170
+ # Output activation (applied AFTER denormalization by target_transform)
171
+ # Default for all properties (override in property_specific if needed)
172
+ output_activation: "none" # Options: none, softplus, sigmoid, exp
173
+ # IMPORTANT: output_activation vs target_transform:
174
+ # - target_transform: Normalizes TARGETS during training (y_true), applied in DataModule
175
+ # Models train on normalized scale (mean≈0, std≈1)
176
+ # Predictions are DENORMALIZED back to original scale
177
+ # - output_activation: Applied to MODEL OUTPUT (y_pred) AFTER denormalization
178
+ # Only use if you need constraints BEYOND normalization
179
+ # RECOMMENDATION: Use target_transform (z_score/log_zscore) + output_activation="none"
180
+ # Only use non-none activation if absolutely needed (rare!)
181
+ #
182
+ # When to use each output_activation:
183
+ # - none: Default - use with target normalization (99% of cases)
184
+ # - softplus: Force strictly positive outputs (redundant if using log_zscore transform)
185
+ # - sigmoid: Force bounded [0,1] outputs (only for probability-like targets)
186
+ # - exp: Force strictly positive with exponential growth (avoid - causes instability)
187
+
188
+ # Attention strategies explained:
189
+ # - bidirectional_cross: VH ↔ VL cross-attention (best for interface-dependent properties)
190
+ # - self_cross: Self-attention within each chain, then cross-attention (captures both local & interface)
191
+ # - self_only: Self-attention on separate chains, then concatenate (for chain-independent properties)
192
+ #
193
+ # New features:
194
+ # - pooling_strategy='attention': Learn which sequence positions are important (vs mean pooling)
195
+ # - use_learnable_chain_fusion: "per_chain" or "per_dim" to learn property-specific VH/VL weights (vs "none" for 50/50)
196
+
197
+ # =============================================================================
198
+ # ANTIBODY FEATURES
199
+ # =============================================================================
200
+ # Sequence-based developability features extracted from VH/VL sequences.
201
+ # Can be concatenated to embeddings for enhanced prediction.
202
+ # Requires: abnumber (pip), biophi (bioconda), scalop (bioconda)
203
+ antibody_features:
204
+ enabled: true # Enable by default (phase 4.3 shows benefits for most properties)
205
+ use_abnumber: true # abnumber-based features (germline, CDR lengths, mutations)
206
+ use_biophi: true # BioPhi humanness scores
207
+ use_scalop: true # ScaLoP canonical structure classes
208
+ use_sequence_features: true # Pure Python sequence features (liabilities, charge, pI)
209
+ cdr_definition: "north" # CDR definition: north (default), chothia, kabat, imgt
210
+ cache_abnumber: true # Cache abnumber results for performance
211
+ normalize_antibody_features: true # Z-score normalization (default from phase 4.3)
212
+ projection_dim: null # No projection by default (property-specific overrides below)
213
+
214
+ # =============================================================================
215
+ # TRAINING SETTINGS
216
+ # =============================================================================
217
+ training:
218
+ # Two-stage training: pre-train on FLAb, fine-tune on GDPa1
219
+ do_pretrain: false # Skip pretraining by default (use for baseline experiments)
220
+ do_finetune: true
221
+
222
+ # Pre-training (on FLAb binding data)
223
+ pretrain:
224
+ max_epochs: 50
225
+ batch_size: 32
226
+ learning_rate: 0.0001
227
+ weight_decay: 0.01
228
+ scheduler: "cosine" # cosine, plateau, step
229
+ warmup_epochs: 2
230
+ early_stopping_patience: 10
231
+
232
+ # Fine-tuning (on GDPa1 developability)
233
+ finetune:
234
+ max_epochs: 75
235
+ batch_size: 16
236
+ learning_rate: 0.00001
237
+ weight_decay: 0.01
238
+ scheduler: "cosine"
239
+ warmup_epochs: 2
240
+ early_stopping_patience: 15
241
+
242
+ # Optimizer
243
+ optimizer: "adamw" # adam, adamw, sgd
244
+
245
+ # Weight initialization
246
+ use_xavier_init: false # Use Xavier uniform initialization for decoder weights
247
+ xavier_gain: 0.1 # Gain for Xavier init (small value for pre-norm, typical: 0.1-1.0)
248
+
249
+ # Loss function
250
+ loss: "mae" # Options: mae, huber (mse and smooth_l1 also available)
251
+ # Loss function notes:
252
+ # - mae: Mean Absolute Error (L1) - robust to outliers, good for skewed distributions
253
+ # - huber: Hybrid of L2 (small errors) and L1 (large errors) - balanced, handles outliers
254
+ # Primary metric for evaluation: Spearman correlation across CV folds
255
+
256
+ # Gradient clipping
257
+ gradient_clip_val: 1.0
258
+
259
+ # Stochastic Weight Averaging (SWA) - averages weights for better generalization
260
+ use_swa: false
261
+ swa_lr_factor: 0.2 # SWA LR as fraction of base LR (1/5th for stability)
262
+ swa_epoch_start: 0.6 # Start SWA at 60% of training (e.g., epoch 30 of 50)
263
+ swa_annealing_epochs: 10 # Number of epochs for annealing
264
+ swa_annealing_strategy: "cos" # Annealing strategy: "cos" or "linear"
265
+
266
+ # =============================================================================
267
+ # PROPERTY-SPECIFIC SETTINGS
268
+ # =============================================================================
269
+ # Configure per-property models (5 competition properties: AC-SINS_pH7.4, PR_CHO, HIC, Tm2, Titer).
270
+ # Override ANY parameter from encoder, decoder, training, or evaluation sections.
271
+ #
272
+ # TARGET NORMALIZATION (NEW):
273
+ # • target_transform: Type of normalization ("auto", "z_score", "log_zscore", "min_max", "identity")
274
+ # - "auto": Automatically select based on property (RECOMMENDED)
275
+ # - "z_score": Zero mean, unit variance
276
+ # - "log_zscore": Log then z-score (for heavy-tailed distributions)
277
+ # - "min_max": Scale to [0, 1]
278
+ # - "identity": No transformation
279
+ # • target_transform_kwargs: Optional parameters for transformation
280
+ #
281
+ # OUTPUT ACTIVATIONS:
282
+ # • With normalization: Use "none" (linear output)
283
+ # • Without normalization: Use "softplus", "sigmoid", or "exp"
284
+ # • RECOMMENDATION: Always use normalization + "none" activation
285
+ #
286
+ # ATTENTION STRATEGIES (based on biological mechanism):
287
+ # • bidirectional_cross: VH ↔ VL interface interactions (HIC, PR_*, Titer)
288
+ # • self_cross: Chain stability + interface (AC-SINS, Tm*)
289
+ # • self_only: Chain-independent properties
290
+ #
291
+ # LOSS FUNCTIONS:
292
+ # • huber: Balanced, handles outliers (good default)
293
+ # • mae: Robust to outliers, skewed distributions (PR_CHO)
294
+ # • mse: Standard regression (sensitive to outliers)
295
+ #
296
+ property_specific:
297
+ # Hydrophobicity: Hydrophobic patches at VH-VL interface
298
+ # Range: 2.43-4.50, Skewness: 2.027 → log improves to 1.438
299
+ # Mechanism: Interface-dependent
300
+ # Phase 6 Best: run h44djka7 (cv_val_spearman=0.644373)
301
+ HIC:
302
+ encoder_type: "esmc_6b"
303
+ data:
304
+ use_full_chain: true
305
+ training:
306
+ loss: "huber"
307
+ target_transform: "log_zscore"
308
+ gradient_clip_val: 5.0
309
+ use_swa: false
310
+ use_xavier_init: true
311
+ xavier_gain: 0.5
312
+ finetune:
313
+ batch_size: 16
314
+ learning_rate: 5e-05
315
+ max_epochs: 50
316
+ weight_decay: 0.001
317
+ antibody_features:
318
+ enabled: true
319
+ normalize_antibody_features: true
320
+ projection_dim: null
321
+ decoder:
322
+ attention:
323
+ n_heads: 8
324
+ hidden_dim: 1024
325
+ n_layers: 1
326
+ n_output_layers: 1
327
+ dropout: 0.2
328
+ pooling_strategy: "attention"
329
+ attention_strategy: "self_only"
330
+ use_learnable_chain_fusion: "per_dim"
331
+
332
+ # Polyreactivity: Non-specific binding at paratope (VH+VL CDR surface)
333
+ # Range: 0.00-0.547, Skewness: 0.427 (fairly symmetric)
334
+ # Mechanism: Interface-dependent
335
+ # Phase 6 Best: run 1pycivmi (cv_val_spearman=0.474715)
336
+ PR_CHO:
337
+ encoder_type: "esmc_300m"
338
+ data:
339
+ use_full_chain: true
340
+ training:
341
+ loss: "huber"
342
+ target_transform: "z_score"
343
+ gradient_clip_val: 0.5
344
+ use_swa: true
345
+ use_xavier_init: true
346
+ xavier_gain: 0.5
347
+ finetune:
348
+ batch_size: 32
349
+ learning_rate: 1e-05
350
+ max_epochs: 100
351
+ weight_decay: 0.1
352
+ antibody_features:
353
+ enabled: true
354
+ normalize_antibody_features: true
355
+ projection_dim: null
356
+ decoder:
357
+ attention:
358
+ n_heads: 16
359
+ hidden_dim: 1024
360
+ n_layers: 2
361
+ n_output_layers: 2
362
+ dropout: 0.2
363
+ pooling_strategy: "mean"
364
+ attention_strategy: "self_only"
365
+ use_learnable_chain_fusion: "per_dim"
366
+
367
+ # Self-Association: Ab-Ab interactions, VH-VL interface quality critical
368
+ # Range: -1.88-29.50, Skewness: 1.120 (right-skewed, can be negative)
369
+ # Mechanism: Chain stability + interface
370
+ # Phase 6 Best: run chyi5tng (cv_val_spearman=0.475439)
371
+ "AC-SINS_pH7.4":
372
+ encoder_type: "esmc_6b+prott5"
373
+ data:
374
+ use_full_chain: false
375
+ training:
376
+ loss: "huber"
377
+ target_transform: "z_score"
378
+ gradient_clip_val: 10.0
379
+ use_swa: true
380
+ use_xavier_init: true
381
+ xavier_gain: 0.1
382
+ finetune:
383
+ batch_size: 32
384
+ learning_rate: 1e-05
385
+ max_epochs: 75
386
+ weight_decay: 0.0001
387
+ antibody_features:
388
+ enabled: true
389
+ normalize_antibody_features: true
390
+ projection_dim: null
391
+ decoder:
392
+ attention:
393
+ n_heads: 8
394
+ hidden_dim: 1024
395
+ n_layers: 1
396
+ n_output_layers: 2
397
+ dropout: 0.3
398
+ pooling_strategy: "attention"
399
+ attention_strategy: "self_cross"
400
+ use_learnable_chain_fusion: "per_chain"
401
+
402
+ # Thermostability: Hierarchical - domains stable individually, then interface
403
+ # Range: 75.01-88.57, Skewness: -0.626 (slight left skew, narrow range)
404
+ # Mechanism: Domain stability + interface
405
+ # Phase 6 Best: run 6tydfri3 (cv_val_spearman=0.387025)
406
+ Tm2:
407
+ encoder_type: "esmc_6b+prott5"
408
+ data:
409
+ use_full_chain: true
410
+ training:
411
+ loss: "mae"
412
+ target_transform: "z_score"
413
+ gradient_clip_val: 10.0
414
+ use_swa: true
415
+ use_xavier_init: false
416
+ xavier_gain: 0.1
417
+ finetune:
418
+ batch_size: 16
419
+ learning_rate: 1e-05
420
+ max_epochs: 50
421
+ weight_decay: 0.05
422
+ antibody_features:
423
+ enabled: false
424
+ normalize_antibody_features: true
425
+ projection_dim: null
426
+ decoder:
427
+ attention:
428
+ n_heads: 4
429
+ hidden_dim: 768
430
+ n_layers: 6
431
+ n_output_layers: 1
432
+ dropout: 0.4
433
+ pooling_strategy: "attention"
434
+ attention_strategy: "bidirectional_cross"
435
+ use_learnable_chain_fusion: "per_chain"
436
+
437
+ # Titer/Expression: Chain foldability + pairing efficiency
438
+ # Range: 34.26-781.93, Skewness: 1.208 → log improves to -0.613
439
+ # Mechanism: Folding + pairing
440
+ # Phase 6 Best: run lctib37f (cv_val_spearman=0.427814)
441
+ Titer:
442
+ encoder_type: "esmc_6b"
443
+ data:
444
+ use_full_chain: true
445
+ training:
446
+ loss: "huber"
447
+ target_transform: "log_zscore"
448
+ gradient_clip_val: 5.0
449
+ use_swa: false
450
+ use_xavier_init: false
451
+ xavier_gain: 0.1
452
+ finetune:
453
+ batch_size: 64
454
+ learning_rate: 1e-06
455
+ max_epochs: 100
456
+ weight_decay: 0.0005
457
+ antibody_features:
458
+ enabled: true
459
+ normalize_antibody_features: true
460
+ projection_dim: null
461
+ decoder:
462
+ attention:
463
+ n_heads: 8
464
+ hidden_dim: 1536
465
+ n_layers: 2
466
+ n_output_layers: 4
467
+ dropout: 0.4
468
+ pooling_strategy: "attention"
469
+ attention_strategy: "bidirectional_cross"
470
+ use_learnable_chain_fusion: "per_dim"
471
+
472
+ # =============================================================================
473
+ # EVALUATION SETTINGS
474
+ # =============================================================================
475
+ evaluation:
476
+ metrics:
477
+ - "pearson"
478
+ - "spearman"
479
+ - "rmse"
480
+ - "mae"
481
+
482
+ # Track per-property and overall metrics
483
+ track_per_fold: true
484
+
485
+ # =============================================================================
486
+ # LOGGING & CHECKPOINTING
487
+ # =============================================================================
488
+ logging:
489
+ use_wandb: true
490
+ wandb_project: "GinkgoAbDev"
491
+ wandb_entity: null
492
+ wandb_log_every_n_steps: 2 # Log to WandB every 2 training steps
493
+
494
+ # TensorBoard
495
+ use_tensorboard: false # Disabled - using WandB only
496
+ log_dir: "logs"
497
+
498
+ # Checkpointing
499
+ checkpoint_dir: "models/checkpoints"
500
+ save_top_k: 3
501
+ monitor_metric: "val_spearman"
502
+ monitor_mode: "max"
503
+
504
+ # Save predictions
505
+ save_predictions: true
506
+ predictions_dir: "outputs/predictions"
507
+
508
+ # =============================================================================
509
+ # BASELINE MODELS
510
+ # =============================================================================
511
+ baselines:
512
+ random:
513
+ fit_to_train_distribution: true
514
+
515
+ xgboost:
516
+ n_estimators: 1000
517
+ max_depth: 6
518
+ learning_rate: 0.01
519
+ subsample: 0.8
520
+ colsample_bytree: 0.8
521
+ early_stopping_rounds: 50
522
+ use_esm2_embeddings: true
523
+ esm2_model: "facebook/esm2_t33_650M_UR50D"
HIC_3595cc57/cv_results.json ADDED
@@ -0,0 +1,668 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "property": "HIC",
3
+ "timestamp": "2026-06-11T22:01:36.653488",
4
+ "n_folds": 5,
5
+ "folds": [
6
+ {
7
+ "val_spearman": 0.7260042428970337,
8
+ "val_pearson": 0.5746209621429443,
9
+ "val_r2": 0.31291061639785767,
10
+ "val_rmse": 0.23895864188671112,
11
+ "val_mae": 0.15815243124961853,
12
+ "val_loss": 0.17753583192825317,
13
+ "best_epoch": 15
14
+ },
15
+ {
16
+ "val_spearman": 0.7184039354324341,
17
+ "val_pearson": 0.7051573991775513,
18
+ "val_r2": 0.4052470624446869,
19
+ "val_rmse": 0.2181491106748581,
20
+ "val_mae": 0.15215973556041718,
21
+ "val_loss": 0.18873080611228943,
22
+ "best_epoch": 21
23
+ },
24
+ {
25
+ "val_spearman": 0.668729841709137,
26
+ "val_pearson": 0.6890283823013306,
27
+ "val_r2": 0.46484723687171936,
28
+ "val_rmse": 0.20816849172115326,
29
+ "val_mae": 0.16941618919372559,
30
+ "val_loss": 0.20399072766304016,
31
+ "best_epoch": 25
32
+ },
33
+ {
34
+ "val_spearman": 0.7634890079498291,
35
+ "val_pearson": 0.6634722352027893,
36
+ "val_r2": 0.4245631992816925,
37
+ "val_rmse": 0.28774648904800415,
38
+ "val_mae": 0.20414938032627106,
39
+ "val_loss": 0.2789265513420105,
40
+ "best_epoch": 21
41
+ },
42
+ {
43
+ "val_spearman": 0.5464843511581421,
44
+ "val_pearson": 0.5437753796577454,
45
+ "val_r2": 0.21560345590114594,
46
+ "val_rmse": 0.3735909163951874,
47
+ "val_mae": 0.2434564083814621,
48
+ "val_loss": 0.4249541461467743,
49
+ "best_epoch": 19
50
+ }
51
+ ],
52
+ "summary": {
53
+ "cv_spearman_mean": 0.6846222758293152,
54
+ "cv_pearson_mean": 0.6352108716964722,
55
+ "cv_r2_mean": 0.3646343141794205,
56
+ "cv_rmse_mean": 0.2653227299451828,
57
+ "cv_mae_mean": 0.18546682894229888,
58
+ "cv_loss_mean": 0.25482761263847353,
59
+ "cv_spearman_std": 0.07537676678397201,
60
+ "cv_pearson_std": 0.06421702603775785,
61
+ "cv_r2_std": 0.08963150573001603,
62
+ "cv_rmse_std": 0.0606825306174023,
63
+ "cv_mae_std": 0.03413177662222566,
64
+ "cv_loss_std": 0.09214227295059511
65
+ },
66
+ "epoch_metrics": [
67
+ {
68
+ "epoch": 0,
69
+ "cv_val_spearman": 0.0,
70
+ "cv_val_pearson": 0.0,
71
+ "cv_val_rmse": 0.0,
72
+ "cv_val_mae": 0.0,
73
+ "cv_val_loss": 0.0
74
+ },
75
+ {
76
+ "epoch": 1,
77
+ "cv_val_spearman": 0.0,
78
+ "cv_val_pearson": 0.0,
79
+ "cv_val_rmse": 0.0,
80
+ "cv_val_mae": 0.0,
81
+ "cv_val_loss": 0.0
82
+ },
83
+ {
84
+ "epoch": 2,
85
+ "cv_val_spearman": 0.0,
86
+ "cv_val_pearson": 0.0,
87
+ "cv_val_rmse": 0.0,
88
+ "cv_val_mae": 0.0,
89
+ "cv_val_loss": 0.0
90
+ },
91
+ {
92
+ "epoch": 3,
93
+ "cv_val_spearman": 0.2710364729166031,
94
+ "cv_val_pearson": 0.25155742168426515,
95
+ "cv_val_rmse": 0.34925631880760194,
96
+ "cv_val_mae": 0.259725758433342,
97
+ "cv_val_loss": 0.4435028910636902
98
+ },
99
+ {
100
+ "epoch": 4,
101
+ "cv_val_spearman": 0.2710364729166031,
102
+ "cv_val_pearson": 0.25155742168426515,
103
+ "cv_val_rmse": 0.34925631880760194,
104
+ "cv_val_mae": 0.259725758433342,
105
+ "cv_val_loss": 0.4435028910636902
106
+ },
107
+ {
108
+ "epoch": 5,
109
+ "cv_val_spearman": 0.32139892540872095,
110
+ "cv_val_pearson": 0.3143501847982407,
111
+ "cv_val_rmse": 0.3787593126296997,
112
+ "cv_val_mae": 0.28105420172214507,
113
+ "cv_val_loss": 0.502750015258789
114
+ },
115
+ {
116
+ "epoch": 6,
117
+ "cv_val_spearman": 0.32139892540872095,
118
+ "cv_val_pearson": 0.3143501847982407,
119
+ "cv_val_rmse": 0.3787593126296997,
120
+ "cv_val_mae": 0.28105420172214507,
121
+ "cv_val_loss": 0.502750015258789
122
+ },
123
+ {
124
+ "epoch": 7,
125
+ "cv_val_spearman": 0.405310732126236,
126
+ "cv_val_pearson": 0.3602306544780731,
127
+ "cv_val_rmse": 0.3602777779102325,
128
+ "cv_val_mae": 0.2531932830810547,
129
+ "cv_val_loss": 0.4419903874397278
130
+ },
131
+ {
132
+ "epoch": 8,
133
+ "cv_val_spearman": 0.405310732126236,
134
+ "cv_val_pearson": 0.3602306544780731,
135
+ "cv_val_rmse": 0.3602777779102325,
136
+ "cv_val_mae": 0.2531932830810547,
137
+ "cv_val_loss": 0.4419903874397278
138
+ },
139
+ {
140
+ "epoch": 9,
141
+ "cv_val_spearman": 0.46006646752357483,
142
+ "cv_val_pearson": 0.44373729825019836,
143
+ "cv_val_rmse": 0.33950265645980837,
144
+ "cv_val_mae": 0.2552246004343033,
145
+ "cv_val_loss": 0.4231206297874451
146
+ },
147
+ {
148
+ "epoch": 10,
149
+ "cv_val_spearman": 0.46006646752357483,
150
+ "cv_val_pearson": 0.44373729825019836,
151
+ "cv_val_rmse": 0.33950265645980837,
152
+ "cv_val_mae": 0.2552246004343033,
153
+ "cv_val_loss": 0.4231206297874451
154
+ },
155
+ {
156
+ "epoch": 11,
157
+ "cv_val_spearman": 0.5617610335350036,
158
+ "cv_val_pearson": 0.5320317327976227,
159
+ "cv_val_rmse": 0.33254334330558777,
160
+ "cv_val_mae": 0.2536798894405365,
161
+ "cv_val_loss": 0.43092967569828033
162
+ },
163
+ {
164
+ "epoch": 12,
165
+ "cv_val_spearman": 0.5617610335350036,
166
+ "cv_val_pearson": 0.5320317327976227,
167
+ "cv_val_rmse": 0.33254334330558777,
168
+ "cv_val_mae": 0.2536798894405365,
169
+ "cv_val_loss": 0.43092967569828033
170
+ },
171
+ {
172
+ "epoch": 13,
173
+ "cv_val_spearman": 0.6175626158714295,
174
+ "cv_val_pearson": 0.5850456595420838,
175
+ "cv_val_rmse": 0.3128068119287491,
176
+ "cv_val_mae": 0.2259348899126053,
177
+ "cv_val_loss": 0.35139777064323424
178
+ },
179
+ {
180
+ "epoch": 14,
181
+ "cv_val_spearman": 0.6175626158714295,
182
+ "cv_val_pearson": 0.5850456595420838,
183
+ "cv_val_rmse": 0.3128068119287491,
184
+ "cv_val_mae": 0.2259348899126053,
185
+ "cv_val_loss": 0.35139777064323424
186
+ },
187
+ {
188
+ "epoch": 15,
189
+ "cv_val_spearman": 0.6281790435314178,
190
+ "cv_val_pearson": 0.595930278301239,
191
+ "cv_val_rmse": 0.30425851345062255,
192
+ "cv_val_mae": 0.21518979966640472,
193
+ "cv_val_loss": 0.3285165369510651
194
+ },
195
+ {
196
+ "epoch": 16,
197
+ "cv_val_spearman": 0.6281790435314178,
198
+ "cv_val_pearson": 0.595930278301239,
199
+ "cv_val_rmse": 0.30425851345062255,
200
+ "cv_val_mae": 0.21518979966640472,
201
+ "cv_val_loss": 0.3285165369510651
202
+ },
203
+ {
204
+ "epoch": 17,
205
+ "cv_val_spearman": 0.6518628895282745,
206
+ "cv_val_pearson": 0.6326819896697998,
207
+ "cv_val_rmse": 0.2761023312807083,
208
+ "cv_val_mae": 0.19260214269161224,
209
+ "cv_val_loss": 0.27473406195640565
210
+ },
211
+ {
212
+ "epoch": 18,
213
+ "cv_val_spearman": 0.6518628895282745,
214
+ "cv_val_pearson": 0.6326819896697998,
215
+ "cv_val_rmse": 0.2761023312807083,
216
+ "cv_val_mae": 0.19260214269161224,
217
+ "cv_val_loss": 0.27473406195640565
218
+ },
219
+ {
220
+ "epoch": 19,
221
+ "cv_val_spearman": 0.6332956433296204,
222
+ "cv_val_pearson": 0.6099058866500855,
223
+ "cv_val_rmse": 0.2696290582418442,
224
+ "cv_val_mae": 0.18699128329753875,
225
+ "cv_val_loss": 0.2673676788806915
226
+ },
227
+ {
228
+ "epoch": 20,
229
+ "cv_val_spearman": 0.6332956433296204,
230
+ "cv_val_pearson": 0.6099058866500855,
231
+ "cv_val_rmse": 0.2696290582418442,
232
+ "cv_val_mae": 0.18699128329753875,
233
+ "cv_val_loss": 0.2673676788806915
234
+ },
235
+ {
236
+ "epoch": 21,
237
+ "cv_val_spearman": 0.6547110319137573,
238
+ "cv_val_pearson": 0.6270294904708862,
239
+ "cv_val_rmse": 0.2754210203886032,
240
+ "cv_val_mae": 0.1944035053253174,
241
+ "cv_val_loss": 0.27447510361671446
242
+ },
243
+ {
244
+ "epoch": 22,
245
+ "cv_val_spearman": 0.6547110319137573,
246
+ "cv_val_pearson": 0.6270294904708862,
247
+ "cv_val_rmse": 0.2754210203886032,
248
+ "cv_val_mae": 0.1944035053253174,
249
+ "cv_val_loss": 0.27447510361671446
250
+ },
251
+ {
252
+ "epoch": 23,
253
+ "cv_val_spearman": 0.653460156917572,
254
+ "cv_val_pearson": 0.6264952778816223,
255
+ "cv_val_rmse": 0.2805276244878769,
256
+ "cv_val_mae": 0.1975550502538681,
257
+ "cv_val_loss": 0.2893131643533707
258
+ },
259
+ {
260
+ "epoch": 24,
261
+ "cv_val_spearman": 0.653460156917572,
262
+ "cv_val_pearson": 0.6264952778816223,
263
+ "cv_val_rmse": 0.2805276244878769,
264
+ "cv_val_mae": 0.1975550502538681,
265
+ "cv_val_loss": 0.2893131643533707
266
+ },
267
+ {
268
+ "epoch": 25,
269
+ "cv_val_spearman": 0.6490983366966248,
270
+ "cv_val_pearson": 0.6387874245643616,
271
+ "cv_val_rmse": 0.2603756278753281,
272
+ "cv_val_mae": 0.18552824556827546,
273
+ "cv_val_loss": 0.25250554978847506
274
+ },
275
+ {
276
+ "epoch": 26,
277
+ "cv_val_spearman": 0.6490983366966248,
278
+ "cv_val_pearson": 0.6387874245643616,
279
+ "cv_val_rmse": 0.2603756278753281,
280
+ "cv_val_mae": 0.18552824556827546,
281
+ "cv_val_loss": 0.25250554978847506
282
+ },
283
+ {
284
+ "epoch": 27,
285
+ "cv_val_spearman": 0.644071364402771,
286
+ "cv_val_pearson": 0.635064172744751,
287
+ "cv_val_rmse": 0.26399514079093933,
288
+ "cv_val_mae": 0.18389235734939574,
289
+ "cv_val_loss": 0.25410228669643403
290
+ },
291
+ {
292
+ "epoch": 28,
293
+ "cv_val_spearman": 0.644071364402771,
294
+ "cv_val_pearson": 0.635064172744751,
295
+ "cv_val_rmse": 0.26399514079093933,
296
+ "cv_val_mae": 0.18389235734939574,
297
+ "cv_val_loss": 0.25410228669643403
298
+ },
299
+ {
300
+ "epoch": 29,
301
+ "cv_val_spearman": 0.65188627243042,
302
+ "cv_val_pearson": 0.6302081704139709,
303
+ "cv_val_rmse": 0.2649333864450455,
304
+ "cv_val_mae": 0.18740552961826323,
305
+ "cv_val_loss": 0.2606087028980255
306
+ },
307
+ {
308
+ "epoch": 30,
309
+ "cv_val_spearman": 0.65188627243042,
310
+ "cv_val_pearson": 0.6302081704139709,
311
+ "cv_val_rmse": 0.2649333864450455,
312
+ "cv_val_mae": 0.18740552961826323,
313
+ "cv_val_loss": 0.2606087028980255
314
+ },
315
+ {
316
+ "epoch": 31,
317
+ "cv_val_spearman": 0.6545863747596741,
318
+ "cv_val_pearson": 0.6335389733314514,
319
+ "cv_val_rmse": 0.2653644531965256,
320
+ "cv_val_mae": 0.18529494404792785,
321
+ "cv_val_loss": 0.25582940578460694
322
+ },
323
+ {
324
+ "epoch": 32,
325
+ "cv_val_spearman": 0.6545863747596741,
326
+ "cv_val_pearson": 0.6335389733314514,
327
+ "cv_val_rmse": 0.2653644531965256,
328
+ "cv_val_mae": 0.18529494404792785,
329
+ "cv_val_loss": 0.25582940578460694
330
+ },
331
+ {
332
+ "epoch": 33,
333
+ "cv_val_spearman": 0.6422162175178527,
334
+ "cv_val_pearson": 0.6325591087341309,
335
+ "cv_val_rmse": 0.2649762123823166,
336
+ "cv_val_mae": 0.18929833471775054,
337
+ "cv_val_loss": 0.2622266262769699
338
+ },
339
+ {
340
+ "epoch": 34,
341
+ "cv_val_spearman": 0.6422162175178527,
342
+ "cv_val_pearson": 0.6325591087341309,
343
+ "cv_val_rmse": 0.2649762123823166,
344
+ "cv_val_mae": 0.18929833471775054,
345
+ "cv_val_loss": 0.2622266262769699
346
+ },
347
+ {
348
+ "epoch": 35,
349
+ "cv_val_spearman": 0.6427068591117859,
350
+ "cv_val_pearson": 0.6312983393669128,
351
+ "cv_val_rmse": 0.2638340055942535,
352
+ "cv_val_mae": 0.1871682047843933,
353
+ "cv_val_loss": 0.2585270136594772
354
+ },
355
+ {
356
+ "epoch": 36,
357
+ "cv_val_spearman": 0.6427068591117859,
358
+ "cv_val_pearson": 0.6312983393669128,
359
+ "cv_val_rmse": 0.2638340055942535,
360
+ "cv_val_mae": 0.1871682047843933,
361
+ "cv_val_loss": 0.2585270136594772
362
+ },
363
+ {
364
+ "epoch": 37,
365
+ "cv_val_spearman": 0.6446536779403687,
366
+ "cv_val_pearson": 0.6354696750640869,
367
+ "cv_val_rmse": 0.2636503726243973,
368
+ "cv_val_mae": 0.18729257583618164,
369
+ "cv_val_loss": 0.25845497846603394
370
+ },
371
+ {
372
+ "epoch": 38,
373
+ "cv_val_spearman": 0.6446536779403687,
374
+ "cv_val_pearson": 0.6354696750640869,
375
+ "cv_val_rmse": 0.2636503726243973,
376
+ "cv_val_mae": 0.18729257583618164,
377
+ "cv_val_loss": 0.25845497846603394
378
+ },
379
+ {
380
+ "epoch": 39,
381
+ "cv_val_spearman": 0.6504851818084717,
382
+ "cv_val_pearson": 0.634901475906372,
383
+ "cv_val_rmse": 0.26328572630882263,
384
+ "cv_val_mae": 0.1867053270339966,
385
+ "cv_val_loss": 0.2575479596853256
386
+ },
387
+ {
388
+ "epoch": 40,
389
+ "cv_val_spearman": 0.6504851818084717,
390
+ "cv_val_pearson": 0.634901475906372,
391
+ "cv_val_rmse": 0.26328572630882263,
392
+ "cv_val_mae": 0.1867053270339966,
393
+ "cv_val_loss": 0.2575479596853256
394
+ },
395
+ {
396
+ "epoch": 41,
397
+ "cv_val_spearman": 0.6464279890060425,
398
+ "cv_val_pearson": 0.6360095620155335,
399
+ "cv_val_rmse": 0.2633754014968872,
400
+ "cv_val_mae": 0.18540839850902557,
401
+ "cv_val_loss": 0.2556315839290619
402
+ },
403
+ {
404
+ "epoch": 42,
405
+ "cv_val_spearman": 0.6464279890060425,
406
+ "cv_val_pearson": 0.6360095620155335,
407
+ "cv_val_rmse": 0.2633754014968872,
408
+ "cv_val_mae": 0.18540839850902557,
409
+ "cv_val_loss": 0.2556315839290619
410
+ },
411
+ {
412
+ "epoch": 43,
413
+ "cv_val_spearman": 0.6446799874305725,
414
+ "cv_val_pearson": 0.6353954911231995,
415
+ "cv_val_rmse": 0.2634821802377701,
416
+ "cv_val_mae": 0.1863056719303131,
417
+ "cv_val_loss": 0.25715909004211424
418
+ },
419
+ {
420
+ "epoch": 44,
421
+ "cv_val_spearman": 0.6446799874305725,
422
+ "cv_val_pearson": 0.6353954911231995,
423
+ "cv_val_rmse": 0.2634821802377701,
424
+ "cv_val_mae": 0.1863056719303131,
425
+ "cv_val_loss": 0.25715909004211424
426
+ },
427
+ {
428
+ "epoch": 45,
429
+ "cv_val_spearman": 0.6452072024345398,
430
+ "cv_val_pearson": 0.634859037399292,
431
+ "cv_val_rmse": 0.2636772781610489,
432
+ "cv_val_mae": 0.18678305745124818,
433
+ "cv_val_loss": 0.258201602101326
434
+ },
435
+ {
436
+ "epoch": 46,
437
+ "cv_val_spearman": 0.6452072024345398,
438
+ "cv_val_pearson": 0.634859037399292,
439
+ "cv_val_rmse": 0.2636772781610489,
440
+ "cv_val_mae": 0.18678305745124818,
441
+ "cv_val_loss": 0.258201602101326
442
+ },
443
+ {
444
+ "epoch": 47,
445
+ "cv_val_spearman": 0.6446919679641724,
446
+ "cv_val_pearson": 0.6354755163192749,
447
+ "cv_val_rmse": 0.2630224168300629,
448
+ "cv_val_mae": 0.18624634742736818,
449
+ "cv_val_loss": 0.25662165582180024
450
+ },
451
+ {
452
+ "epoch": 48,
453
+ "cv_val_spearman": 0.6446919679641724,
454
+ "cv_val_pearson": 0.6354755163192749,
455
+ "cv_val_rmse": 0.2630224168300629,
456
+ "cv_val_mae": 0.18624634742736818,
457
+ "cv_val_loss": 0.25662165582180024
458
+ },
459
+ {
460
+ "epoch": 49,
461
+ "cv_val_spearman": 0.6438042521476746,
462
+ "cv_val_pearson": 0.6353135466575622,
463
+ "cv_val_rmse": 0.26325292587280275,
464
+ "cv_val_mae": 0.1865984618663788,
465
+ "cv_val_loss": 0.25741011202335357
466
+ },
467
+ {
468
+ "epoch": 50,
469
+ "cv_val_spearman": 0.6438042521476746,
470
+ "cv_val_pearson": 0.6353135466575622,
471
+ "cv_val_rmse": 0.26325292587280275,
472
+ "cv_val_mae": 0.1865984618663788,
473
+ "cv_val_loss": 0.25741011202335357
474
+ },
475
+ {
476
+ "epoch": 51,
477
+ "cv_val_spearman": 0.6438042521476746,
478
+ "cv_val_pearson": 0.6353135466575622,
479
+ "cv_val_rmse": 0.26325292587280275,
480
+ "cv_val_mae": 0.1865984618663788,
481
+ "cv_val_loss": 0.25741011202335357
482
+ },
483
+ {
484
+ "epoch": 52,
485
+ "cv_val_spearman": 0.6438042521476746,
486
+ "cv_val_pearson": 0.6353135466575622,
487
+ "cv_val_rmse": 0.26325292587280275,
488
+ "cv_val_mae": 0.1865984618663788,
489
+ "cv_val_loss": 0.25741011202335357
490
+ },
491
+ {
492
+ "epoch": 53,
493
+ "cv_val_spearman": 0.6438042521476746,
494
+ "cv_val_pearson": 0.6353135466575622,
495
+ "cv_val_rmse": 0.26325292587280275,
496
+ "cv_val_mae": 0.1865984618663788,
497
+ "cv_val_loss": 0.25741011202335357
498
+ },
499
+ {
500
+ "epoch": 54,
501
+ "cv_val_spearman": 0.6438042521476746,
502
+ "cv_val_pearson": 0.6353135466575622,
503
+ "cv_val_rmse": 0.26325292587280275,
504
+ "cv_val_mae": 0.1865984618663788,
505
+ "cv_val_loss": 0.25741011202335357
506
+ },
507
+ {
508
+ "epoch": 55,
509
+ "cv_val_spearman": 0.6438042521476746,
510
+ "cv_val_pearson": 0.6353135466575622,
511
+ "cv_val_rmse": 0.26325292587280275,
512
+ "cv_val_mae": 0.1865984618663788,
513
+ "cv_val_loss": 0.25741011202335357
514
+ },
515
+ {
516
+ "epoch": 56,
517
+ "cv_val_spearman": 0.6438042521476746,
518
+ "cv_val_pearson": 0.6353135466575622,
519
+ "cv_val_rmse": 0.26325292587280275,
520
+ "cv_val_mae": 0.1865984618663788,
521
+ "cv_val_loss": 0.25741011202335357
522
+ },
523
+ {
524
+ "epoch": 57,
525
+ "cv_val_spearman": 0.6438042521476746,
526
+ "cv_val_pearson": 0.6353135466575622,
527
+ "cv_val_rmse": 0.26325292587280275,
528
+ "cv_val_mae": 0.1865984618663788,
529
+ "cv_val_loss": 0.25741011202335357
530
+ },
531
+ {
532
+ "epoch": 58,
533
+ "cv_val_spearman": 0.6438042521476746,
534
+ "cv_val_pearson": 0.6353135466575622,
535
+ "cv_val_rmse": 0.26325292587280275,
536
+ "cv_val_mae": 0.1865984618663788,
537
+ "cv_val_loss": 0.25741011202335357
538
+ },
539
+ {
540
+ "epoch": 59,
541
+ "cv_val_spearman": 0.6438042521476746,
542
+ "cv_val_pearson": 0.6353135466575622,
543
+ "cv_val_rmse": 0.26325292587280275,
544
+ "cv_val_mae": 0.1865984618663788,
545
+ "cv_val_loss": 0.25741011202335357
546
+ },
547
+ {
548
+ "epoch": 60,
549
+ "cv_val_spearman": 0.6438042521476746,
550
+ "cv_val_pearson": 0.6353135466575622,
551
+ "cv_val_rmse": 0.26325292587280275,
552
+ "cv_val_mae": 0.1865984618663788,
553
+ "cv_val_loss": 0.25741011202335357
554
+ },
555
+ {
556
+ "epoch": 61,
557
+ "cv_val_spearman": 0.6438042521476746,
558
+ "cv_val_pearson": 0.6353135466575622,
559
+ "cv_val_rmse": 0.26325292587280275,
560
+ "cv_val_mae": 0.1865984618663788,
561
+ "cv_val_loss": 0.25741011202335357
562
+ },
563
+ {
564
+ "epoch": 62,
565
+ "cv_val_spearman": 0.6438042521476746,
566
+ "cv_val_pearson": 0.6353135466575622,
567
+ "cv_val_rmse": 0.26325292587280275,
568
+ "cv_val_mae": 0.1865984618663788,
569
+ "cv_val_loss": 0.25741011202335357
570
+ },
571
+ {
572
+ "epoch": 63,
573
+ "cv_val_spearman": 0.6438042521476746,
574
+ "cv_val_pearson": 0.6353135466575622,
575
+ "cv_val_rmse": 0.26325292587280275,
576
+ "cv_val_mae": 0.1865984618663788,
577
+ "cv_val_loss": 0.25741011202335357
578
+ },
579
+ {
580
+ "epoch": 64,
581
+ "cv_val_spearman": 0.6438042521476746,
582
+ "cv_val_pearson": 0.6353135466575622,
583
+ "cv_val_rmse": 0.26325292587280275,
584
+ "cv_val_mae": 0.1865984618663788,
585
+ "cv_val_loss": 0.25741011202335357
586
+ },
587
+ {
588
+ "epoch": 65,
589
+ "cv_val_spearman": 0.6438042521476746,
590
+ "cv_val_pearson": 0.6353135466575622,
591
+ "cv_val_rmse": 0.26325292587280275,
592
+ "cv_val_mae": 0.1865984618663788,
593
+ "cv_val_loss": 0.25741011202335357
594
+ },
595
+ {
596
+ "epoch": 66,
597
+ "cv_val_spearman": 0.6438042521476746,
598
+ "cv_val_pearson": 0.6353135466575622,
599
+ "cv_val_rmse": 0.26325292587280275,
600
+ "cv_val_mae": 0.1865984618663788,
601
+ "cv_val_loss": 0.25741011202335357
602
+ },
603
+ {
604
+ "epoch": 67,
605
+ "cv_val_spearman": 0.6438042521476746,
606
+ "cv_val_pearson": 0.6353135466575622,
607
+ "cv_val_rmse": 0.26325292587280275,
608
+ "cv_val_mae": 0.1865984618663788,
609
+ "cv_val_loss": 0.25741011202335357
610
+ },
611
+ {
612
+ "epoch": 68,
613
+ "cv_val_spearman": 0.6438042521476746,
614
+ "cv_val_pearson": 0.6353135466575622,
615
+ "cv_val_rmse": 0.26325292587280275,
616
+ "cv_val_mae": 0.1865984618663788,
617
+ "cv_val_loss": 0.25741011202335357
618
+ },
619
+ {
620
+ "epoch": 69,
621
+ "cv_val_spearman": 0.6438042521476746,
622
+ "cv_val_pearson": 0.6353135466575622,
623
+ "cv_val_rmse": 0.26325292587280275,
624
+ "cv_val_mae": 0.1865984618663788,
625
+ "cv_val_loss": 0.25741011202335357
626
+ },
627
+ {
628
+ "epoch": 70,
629
+ "cv_val_spearman": 0.6438042521476746,
630
+ "cv_val_pearson": 0.6353135466575622,
631
+ "cv_val_rmse": 0.26325292587280275,
632
+ "cv_val_mae": 0.1865984618663788,
633
+ "cv_val_loss": 0.25741011202335357
634
+ },
635
+ {
636
+ "epoch": 71,
637
+ "cv_val_spearman": 0.6438042521476746,
638
+ "cv_val_pearson": 0.6353135466575622,
639
+ "cv_val_rmse": 0.26325292587280275,
640
+ "cv_val_mae": 0.1865984618663788,
641
+ "cv_val_loss": 0.25741011202335357
642
+ },
643
+ {
644
+ "epoch": 72,
645
+ "cv_val_spearman": 0.6438042521476746,
646
+ "cv_val_pearson": 0.6353135466575622,
647
+ "cv_val_rmse": 0.26325292587280275,
648
+ "cv_val_mae": 0.1865984618663788,
649
+ "cv_val_loss": 0.25741011202335357
650
+ },
651
+ {
652
+ "epoch": 73,
653
+ "cv_val_spearman": 0.6438042521476746,
654
+ "cv_val_pearson": 0.6353135466575622,
655
+ "cv_val_rmse": 0.26325292587280275,
656
+ "cv_val_mae": 0.1865984618663788,
657
+ "cv_val_loss": 0.25741011202335357
658
+ },
659
+ {
660
+ "epoch": 74,
661
+ "cv_val_spearman": 0.6438042521476746,
662
+ "cv_val_pearson": 0.6353135466575622,
663
+ "cv_val_rmse": 0.26325292587280275,
664
+ "cv_val_mae": 0.1865984618663788,
665
+ "cv_val_loss": 0.25741011202335357
666
+ }
667
+ ]
668
+ }
HIC_3595cc57/final.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a54ba0e8b7dc7f8a18d42bd2cb291e1719f2cb3d0dfa968b2c36c5f9bdc6de7
3
+ size 123891008
HIC_3595cc57/fold0.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:703acc71f00b9b15c2b3e0e75f1435a724fa4cafb60faddb6c0263a9835b1d90
3
+ size 123890816
HIC_3595cc57/fold0_epoch_metrics.json ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "epoch": 0,
4
+ "val_spearman": 0.0,
5
+ "val_pearson": 0.0,
6
+ "val_rmse": 0.0,
7
+ "val_mae": 0.0,
8
+ "val_loss": 0.0
9
+ },
10
+ {
11
+ "epoch": 1,
12
+ "val_spearman": 0.0,
13
+ "val_pearson": 0.0,
14
+ "val_rmse": 0.0,
15
+ "val_mae": 0.0,
16
+ "val_loss": 0.0
17
+ },
18
+ {
19
+ "epoch": 3,
20
+ "val_spearman": -0.0384739488363266,
21
+ "val_pearson": -0.03278295695781708,
22
+ "val_rmse": 0.30150774121284485,
23
+ "val_mae": 0.2061585783958435,
24
+ "val_loss": 0.2747001647949219
25
+ },
26
+ {
27
+ "epoch": 5,
28
+ "val_spearman": -0.0075415391474962234,
29
+ "val_pearson": 0.02362227439880371,
30
+ "val_rmse": 0.28956303000450134,
31
+ "val_mae": 0.21364440023899078,
32
+ "val_loss": 0.31100213527679443
33
+ },
34
+ {
35
+ "epoch": 7,
36
+ "val_spearman": 0.27065396308898926,
37
+ "val_pearson": 0.19727429747581482,
38
+ "val_rmse": 0.29181107878685,
39
+ "val_mae": 0.19151988625526428,
40
+ "val_loss": 0.25467008352279663
41
+ },
42
+ {
43
+ "epoch": 9,
44
+ "val_spearman": 0.4570184350013733,
45
+ "val_pearson": 0.3972527086734772,
46
+ "val_rmse": 0.34887266159057617,
47
+ "val_mae": 0.2872607111930847,
48
+ "val_loss": 0.5012165307998657
49
+ },
50
+ {
51
+ "epoch": 11,
52
+ "val_spearman": 0.5439587235450745,
53
+ "val_pearson": 0.41055575013160706,
54
+ "val_rmse": 0.288051962852478,
55
+ "val_mae": 0.22395078837871552,
56
+ "val_loss": 0.33446887135505676
57
+ },
58
+ {
59
+ "epoch": 13,
60
+ "val_spearman": 0.6449557542800903,
61
+ "val_pearson": 0.5107969641685486,
62
+ "val_rmse": 0.24965976178646088,
63
+ "val_mae": 0.174332857131958,
64
+ "val_loss": 0.202798992395401
65
+ },
66
+ {
67
+ "epoch": 15,
68
+ "val_spearman": 0.7260042428970337,
69
+ "val_pearson": 0.5746209621429443,
70
+ "val_rmse": 0.23895864188671112,
71
+ "val_mae": 0.15815243124961853,
72
+ "val_loss": 0.17753583192825317
73
+ },
74
+ {
75
+ "epoch": 17,
76
+ "val_spearman": 0.6857961416244507,
77
+ "val_pearson": 0.5960962772369385,
78
+ "val_rmse": 0.23232315480709076,
79
+ "val_mae": 0.16835223138332367,
80
+ "val_loss": 0.19435688853263855
81
+ },
82
+ {
83
+ "epoch": 19,
84
+ "val_spearman": 0.6955154538154602,
85
+ "val_pearson": 0.6185401082038879,
86
+ "val_rmse": 0.22925367951393127,
87
+ "val_mae": 0.16803766787052155,
88
+ "val_loss": 0.1975799798965454
89
+ },
90
+ {
91
+ "epoch": 21,
92
+ "val_spearman": 0.6467978954315186,
93
+ "val_pearson": 0.5900232195854187,
94
+ "val_rmse": 0.24766987562179565,
95
+ "val_mae": 0.1658020168542862,
96
+ "val_loss": 0.19112169742584229
97
+ },
98
+ {
99
+ "epoch": 23,
100
+ "val_spearman": 0.6843442916870117,
101
+ "val_pearson": 0.6116109490394592,
102
+ "val_rmse": 0.23709695041179657,
103
+ "val_mae": 0.15633532404899597,
104
+ "val_loss": 0.1783486306667328
105
+ },
106
+ {
107
+ "epoch": 25,
108
+ "val_spearman": 0.642966628074646,
109
+ "val_pearson": 0.5925431847572327,
110
+ "val_rmse": 0.2332981377840042,
111
+ "val_mae": 0.16699369251728058,
112
+ "val_loss": 0.18845529854297638
113
+ },
114
+ {
115
+ "epoch": 27,
116
+ "val_spearman": 0.6720439195632935,
117
+ "val_pearson": 0.6301578879356384,
118
+ "val_rmse": 0.22779405117034912,
119
+ "val_mae": 0.1586063653230667,
120
+ "val_loss": 0.17285782098770142
121
+ },
122
+ {
123
+ "epoch": 29,
124
+ "val_spearman": 0.6957170963287354,
125
+ "val_pearson": 0.6400766372680664,
126
+ "val_rmse": 0.22318285703659058,
127
+ "val_mae": 0.16894729435443878,
128
+ "val_loss": 0.18496927618980408
129
+ },
130
+ {
131
+ "epoch": 31,
132
+ "val_spearman": 0.6860922574996948,
133
+ "val_pearson": 0.6387721300125122,
134
+ "val_rmse": 0.22450906038284302,
135
+ "val_mae": 0.15949515998363495,
136
+ "val_loss": 0.1719481199979782
137
+ },
138
+ {
139
+ "epoch": 33,
140
+ "val_spearman": 0.6647040247917175,
141
+ "val_pearson": 0.6310605406761169,
142
+ "val_rmse": 0.22623275220394135,
143
+ "val_mae": 0.1775590479373932,
144
+ "val_loss": 0.19867606461048126
145
+ },
146
+ {
147
+ "epoch": 35,
148
+ "val_spearman": 0.6626068949699402,
149
+ "val_pearson": 0.6302047371864319,
150
+ "val_rmse": 0.2250082939863205,
151
+ "val_mae": 0.1695004254579544,
152
+ "val_loss": 0.18619592487812042
153
+ },
154
+ {
155
+ "epoch": 37,
156
+ "val_spearman": 0.6610070466995239,
157
+ "val_pearson": 0.6362712979316711,
158
+ "val_rmse": 0.2248508781194687,
159
+ "val_mae": 0.17460699379444122,
160
+ "val_loss": 0.19153736531734467
161
+ },
162
+ {
163
+ "epoch": 39,
164
+ "val_spearman": 0.6766414046287537,
165
+ "val_pearson": 0.6310219764709473,
166
+ "val_rmse": 0.2255489081144333,
167
+ "val_mae": 0.1724926382303238,
168
+ "val_loss": 0.18975099921226501
169
+ },
170
+ {
171
+ "epoch": 41,
172
+ "val_spearman": 0.6634941697120667,
173
+ "val_pearson": 0.6330270171165466,
174
+ "val_rmse": 0.22431349754333496,
175
+ "val_mae": 0.16708669066429138,
176
+ "val_loss": 0.1821414679288864
177
+ },
178
+ {
179
+ "epoch": 43,
180
+ "val_spearman": 0.6595821976661682,
181
+ "val_pearson": 0.633117139339447,
182
+ "val_rmse": 0.22486914694309235,
183
+ "val_mae": 0.17179827392101288,
184
+ "val_loss": 0.1884755641222
185
+ }
186
+ ]
HIC_3595cc57/fold1.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f66f31d7c2a965ce9e8beb5314e32894873ab0fbe4cf446c500d16bd0f1f64c
3
+ size 123890816
HIC_3595cc57/fold1_epoch_metrics.json ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "epoch": 0,
4
+ "val_spearman": 0.0,
5
+ "val_pearson": 0.0,
6
+ "val_rmse": 0.0,
7
+ "val_mae": 0.0,
8
+ "val_loss": 0.0
9
+ },
10
+ {
11
+ "epoch": 1,
12
+ "val_spearman": 0.0,
13
+ "val_pearson": 0.0,
14
+ "val_rmse": 0.0,
15
+ "val_mae": 0.0,
16
+ "val_loss": 0.0
17
+ },
18
+ {
19
+ "epoch": 3,
20
+ "val_spearman": 0.3378947079181671,
21
+ "val_pearson": 0.2610833942890167,
22
+ "val_rmse": 0.29616108536720276,
23
+ "val_mae": 0.20717652142047882,
24
+ "val_loss": 0.31157028675079346
25
+ },
26
+ {
27
+ "epoch": 5,
28
+ "val_spearman": 0.32684528827667236,
29
+ "val_pearson": 0.43810826539993286,
30
+ "val_rmse": 0.36962398886680603,
31
+ "val_mae": 0.3280884921550751,
32
+ "val_loss": 0.5862835049629211
33
+ },
34
+ {
35
+ "epoch": 7,
36
+ "val_spearman": 0.3506881296634674,
37
+ "val_pearson": 0.47002002596855164,
38
+ "val_rmse": 0.3204720914363861,
39
+ "val_mae": 0.22524714469909668,
40
+ "val_loss": 0.37585926055908203
41
+ },
42
+ {
43
+ "epoch": 9,
44
+ "val_spearman": 0.33551400899887085,
45
+ "val_pearson": 0.4874694049358368,
46
+ "val_rmse": 0.3137698173522949,
47
+ "val_mae": 0.23037105798721313,
48
+ "val_loss": 0.3727668523788452
49
+ },
50
+ {
51
+ "epoch": 11,
52
+ "val_spearman": 0.6159066557884216,
53
+ "val_pearson": 0.6564663648605347,
54
+ "val_rmse": 0.22067546844482422,
55
+ "val_mae": 0.15543179214000702,
56
+ "val_loss": 0.19218914210796356
57
+ },
58
+ {
59
+ "epoch": 13,
60
+ "val_spearman": 0.6666123867034912,
61
+ "val_pearson": 0.6591343283653259,
62
+ "val_rmse": 0.33969777822494507,
63
+ "val_mae": 0.270142525434494,
64
+ "val_loss": 0.47425803542137146
65
+ },
66
+ {
67
+ "epoch": 15,
68
+ "val_spearman": 0.6349620223045349,
69
+ "val_pearson": 0.6479364037513733,
70
+ "val_rmse": 0.23323948681354523,
71
+ "val_mae": 0.16855014860630035,
72
+ "val_loss": 0.21657225489616394
73
+ },
74
+ {
75
+ "epoch": 17,
76
+ "val_spearman": 0.6798588633537292,
77
+ "val_pearson": 0.6919003129005432,
78
+ "val_rmse": 0.2568157911300659,
79
+ "val_mae": 0.18784718215465546,
80
+ "val_loss": 0.26281753182411194
81
+ },
82
+ {
83
+ "epoch": 19,
84
+ "val_spearman": 0.7025516033172607,
85
+ "val_pearson": 0.6903168559074402,
86
+ "val_rmse": 0.20871327817440033,
87
+ "val_mae": 0.14303471148014069,
88
+ "val_loss": 0.1744421124458313
89
+ },
90
+ {
91
+ "epoch": 21,
92
+ "val_spearman": 0.7184039354324341,
93
+ "val_pearson": 0.7051573991775513,
94
+ "val_rmse": 0.2181491106748581,
95
+ "val_mae": 0.15215973556041718,
96
+ "val_loss": 0.18873080611228943
97
+ },
98
+ {
99
+ "epoch": 23,
100
+ "val_spearman": 0.7027687430381775,
101
+ "val_pearson": 0.6955024600028992,
102
+ "val_rmse": 0.2097272276878357,
103
+ "val_mae": 0.15577757358551025,
104
+ "val_loss": 0.18064801394939423
105
+ },
106
+ {
107
+ "epoch": 25,
108
+ "val_spearman": 0.714386522769928,
109
+ "val_pearson": 0.7009456157684326,
110
+ "val_rmse": 0.21122492849826813,
111
+ "val_mae": 0.14346665143966675,
112
+ "val_loss": 0.17209604382514954
113
+ },
114
+ {
115
+ "epoch": 27,
116
+ "val_spearman": 0.70694899559021,
117
+ "val_pearson": 0.7035908699035645,
118
+ "val_rmse": 0.20511534810066223,
119
+ "val_mae": 0.14063650369644165,
120
+ "val_loss": 0.16399827599525452
121
+ },
122
+ {
123
+ "epoch": 29,
124
+ "val_spearman": 0.7011319398880005,
125
+ "val_pearson": 0.6921243071556091,
126
+ "val_rmse": 0.20802052319049835,
127
+ "val_mae": 0.14265219867229462,
128
+ "val_loss": 0.1684778928756714
129
+ },
130
+ {
131
+ "epoch": 31,
132
+ "val_spearman": 0.7167752385139465,
133
+ "val_pearson": 0.6983433365821838,
134
+ "val_rmse": 0.21514888107776642,
135
+ "val_mae": 0.14810852706432343,
136
+ "val_loss": 0.1801908016204834
137
+ },
138
+ {
139
+ "epoch": 33,
140
+ "val_spearman": 0.6976574063301086,
141
+ "val_pearson": 0.6968000531196594,
142
+ "val_rmse": 0.20867715775966644,
143
+ "val_mae": 0.14335672557353973,
144
+ "val_loss": 0.16997966170310974
145
+ },
146
+ {
147
+ "epoch": 35,
148
+ "val_spearman": 0.7058551907539368,
149
+ "val_pearson": 0.6960756778717041,
150
+ "val_rmse": 0.20612922310829163,
151
+ "val_mae": 0.14229901134967804,
152
+ "val_loss": 0.16714692115783691
153
+ },
154
+ {
155
+ "epoch": 37,
156
+ "val_spearman": 0.7054288983345032,
157
+ "val_pearson": 0.6991916298866272,
158
+ "val_rmse": 0.20897570252418518,
159
+ "val_mae": 0.1428215652704239,
160
+ "val_loss": 0.1702808439731598
161
+ },
162
+ {
163
+ "epoch": 39,
164
+ "val_spearman": 0.70374596118927,
165
+ "val_pearson": 0.6952868103981018,
166
+ "val_rmse": 0.20807304978370667,
167
+ "val_mae": 0.14206130802631378,
168
+ "val_loss": 0.1687576025724411
169
+ },
170
+ {
171
+ "epoch": 41,
172
+ "val_spearman": 0.7039631009101868,
173
+ "val_pearson": 0.697415292263031,
174
+ "val_rmse": 0.20869363844394684,
175
+ "val_mae": 0.1420561820268631,
176
+ "val_loss": 0.1694161742925644
177
+ },
178
+ {
179
+ "epoch": 43,
180
+ "val_spearman": 0.7060723900794983,
181
+ "val_pearson": 0.697112500667572,
182
+ "val_rmse": 0.20815865695476532,
183
+ "val_mae": 0.14156942069530487,
184
+ "val_loss": 0.16872069239616394
185
+ },
186
+ {
187
+ "epoch": 45,
188
+ "val_spearman": 0.70244300365448,
189
+ "val_pearson": 0.6977022290229797,
190
+ "val_rmse": 0.2075926959514618,
191
+ "val_mae": 0.14176081120967865,
192
+ "val_loss": 0.16853982210159302
193
+ },
194
+ {
195
+ "epoch": 47,
196
+ "val_spearman": 0.7041802406311035,
197
+ "val_pearson": 0.6974990963935852,
198
+ "val_rmse": 0.20663347840309143,
199
+ "val_mae": 0.14117588102817535,
200
+ "val_loss": 0.16719841957092285
201
+ },
202
+ {
203
+ "epoch": 49,
204
+ "val_spearman": 0.703203022480011,
205
+ "val_pearson": 0.6969878673553467,
206
+ "val_rmse": 0.20800559222698212,
207
+ "val_mae": 0.14180190861225128,
208
+ "val_loss": 0.16883139312267303
209
+ }
210
+ ]
HIC_3595cc57/fold2.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e25f7d41a4d0c5361eb7a41147cfbbd5a4d2d0481226de2a60ef14478243e516
3
+ size 123890816
HIC_3595cc57/fold2_epoch_metrics.json ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "epoch": 0,
4
+ "val_spearman": 0.0,
5
+ "val_pearson": 0.0,
6
+ "val_rmse": 0.0,
7
+ "val_mae": 0.0,
8
+ "val_loss": 0.0
9
+ },
10
+ {
11
+ "epoch": 1,
12
+ "val_spearman": 0.0,
13
+ "val_pearson": 0.0,
14
+ "val_rmse": 0.0,
15
+ "val_mae": 0.0,
16
+ "val_loss": 0.0
17
+ },
18
+ {
19
+ "epoch": 3,
20
+ "val_spearman": 0.28487664461135864,
21
+ "val_pearson": 0.24577899277210236,
22
+ "val_rmse": 0.2775994539260864,
23
+ "val_mae": 0.2379647046327591,
24
+ "val_loss": 0.3456553816795349
25
+ },
26
+ {
27
+ "epoch": 5,
28
+ "val_spearman": 0.39503762125968933,
29
+ "val_pearson": 0.3087135851383209,
30
+ "val_rmse": 0.3922038674354553,
31
+ "val_mae": 0.34011420607566833,
32
+ "val_loss": 0.647723913192749
33
+ },
34
+ {
35
+ "epoch": 7,
36
+ "val_spearman": 0.3937888741493225,
37
+ "val_pearson": 0.28563374280929565,
38
+ "val_rmse": 0.30011188983917236,
39
+ "val_mae": 0.27211296558380127,
40
+ "val_loss": 0.42887192964553833
41
+ },
42
+ {
43
+ "epoch": 9,
44
+ "val_spearman": 0.4454338252544403,
45
+ "val_pearson": 0.3791351616382599,
46
+ "val_rmse": 0.2756657898426056,
47
+ "val_mae": 0.25136473774909973,
48
+ "val_loss": 0.3637728691101074
49
+ },
50
+ {
51
+ "epoch": 11,
52
+ "val_spearman": 0.6164997220039368,
53
+ "val_pearson": 0.5693210363388062,
54
+ "val_rmse": 0.3232451379299164,
55
+ "val_mae": 0.2843843400478363,
56
+ "val_loss": 0.4539646506309509
57
+ },
58
+ {
59
+ "epoch": 13,
60
+ "val_spearman": 0.6587941646575928,
61
+ "val_pearson": 0.6278648972511292,
62
+ "val_rmse": 0.2772408425807953,
63
+ "val_mae": 0.23949910700321198,
64
+ "val_loss": 0.3516378402709961
65
+ },
66
+ {
67
+ "epoch": 15,
68
+ "val_spearman": 0.6327234506607056,
69
+ "val_pearson": 0.6165239214897156,
70
+ "val_rmse": 0.3101437985897064,
71
+ "val_mae": 0.27170485258102417,
72
+ "val_loss": 0.4254859387874603
73
+ },
74
+ {
75
+ "epoch": 17,
76
+ "val_spearman": 0.6551022529602051,
77
+ "val_pearson": 0.6544174551963806,
78
+ "val_rmse": 0.23892855644226074,
79
+ "val_mae": 0.17404885590076447,
80
+ "val_loss": 0.23731371760368347
81
+ },
82
+ {
83
+ "epoch": 19,
84
+ "val_spearman": 0.5480237007141113,
85
+ "val_pearson": 0.5417963862419128,
86
+ "val_rmse": 0.24770137667655945,
87
+ "val_mae": 0.18359912931919098,
88
+ "val_loss": 0.2606838345527649
89
+ },
90
+ {
91
+ "epoch": 21,
92
+ "val_spearman": 0.6174769997596741,
93
+ "val_pearson": 0.6357879042625427,
94
+ "val_rmse": 0.26737821102142334,
95
+ "val_mae": 0.20234982669353485,
96
+ "val_loss": 0.29601556062698364
97
+ },
98
+ {
99
+ "epoch": 23,
100
+ "val_spearman": 0.6195026636123657,
101
+ "val_pearson": 0.6091170310974121,
102
+ "val_rmse": 0.28289857506752014,
103
+ "val_mae": 0.20435605943202972,
104
+ "val_loss": 0.3198947608470917
105
+ },
106
+ {
107
+ "epoch": 25,
108
+ "val_spearman": 0.668729841709137,
109
+ "val_pearson": 0.6890283823013306,
110
+ "val_rmse": 0.20816849172115326,
111
+ "val_mae": 0.16941618919372559,
112
+ "val_loss": 0.20399072766304016
113
+ },
114
+ {
115
+ "epoch": 27,
116
+ "val_spearman": 0.6108532547950745,
117
+ "val_pearson": 0.6159042716026306,
118
+ "val_rmse": 0.23851680755615234,
119
+ "val_mae": 0.1746911257505417,
120
+ "val_loss": 0.2380896657705307
121
+ },
122
+ {
123
+ "epoch": 29,
124
+ "val_spearman": 0.61226487159729,
125
+ "val_pearson": 0.6171475052833557,
126
+ "val_rmse": 0.2254137098789215,
127
+ "val_mae": 0.1728758066892624,
128
+ "val_loss": 0.2239905595779419
129
+ },
130
+ {
131
+ "epoch": 31,
132
+ "val_spearman": 0.6140022277832031,
133
+ "val_pearson": 0.6194939613342285,
134
+ "val_rmse": 0.2261139452457428,
135
+ "val_mae": 0.1755291223526001,
136
+ "val_loss": 0.22503070533275604
137
+ },
138
+ {
139
+ "epoch": 33,
140
+ "val_spearman": 0.6027635335922241,
141
+ "val_pearson": 0.6202996969223022,
142
+ "val_rmse": 0.23471014201641083,
143
+ "val_mae": 0.17787159979343414,
144
+ "val_loss": 0.23750239610671997
145
+ },
146
+ {
147
+ "epoch": 35,
148
+ "val_spearman": 0.6109075546264648,
149
+ "val_pearson": 0.6246870160102844,
150
+ "val_rmse": 0.2259512096643448,
151
+ "val_mae": 0.17571471631526947,
152
+ "val_loss": 0.22482934594154358
153
+ },
154
+ {
155
+ "epoch": 37,
156
+ "val_spearman": 0.6125906109809875,
157
+ "val_pearson": 0.6252511143684387,
158
+ "val_rmse": 0.22890925407409668,
159
+ "val_mae": 0.1744578629732132,
160
+ "val_loss": 0.22772257030010223
161
+ },
162
+ {
163
+ "epoch": 39,
164
+ "val_spearman": 0.6299644708633423,
165
+ "val_pearson": 0.6383653879165649,
166
+ "val_rmse": 0.2249901443719864,
167
+ "val_mae": 0.1719013899564743,
168
+ "val_loss": 0.22105231881141663
169
+ },
170
+ {
171
+ "epoch": 41,
172
+ "val_spearman": 0.620408833026886,
173
+ "val_pearson": 0.6338037848472595,
174
+ "val_rmse": 0.22637276351451874,
175
+ "val_mae": 0.1732068657875061,
176
+ "val_loss": 0.2239828109741211
177
+ },
178
+ {
179
+ "epoch": 43,
180
+ "val_spearman": 0.6172598600387573,
181
+ "val_pearson": 0.6319254636764526,
182
+ "val_rmse": 0.22711242735385895,
183
+ "val_mae": 0.17348141968250275,
184
+ "val_loss": 0.22496871650218964
185
+ },
186
+ {
187
+ "epoch": 45,
188
+ "val_spearman": 0.6187800765037537,
189
+ "val_pearson": 0.6315181255340576,
190
+ "val_rmse": 0.2272627353668213,
191
+ "val_mae": 0.17381954193115234,
192
+ "val_loss": 0.22531425952911377
193
+ },
194
+ {
195
+ "epoch": 47,
196
+ "val_spearman": 0.6205174326896667,
197
+ "val_pearson": 0.6320487856864929,
198
+ "val_rmse": 0.22631485760211945,
199
+ "val_mae": 0.1736975908279419,
200
+ "val_loss": 0.22428834438323975
201
+ },
202
+ {
203
+ "epoch": 49,
204
+ "val_spearman": 0.6188886165618896,
205
+ "val_pearson": 0.6316857933998108,
206
+ "val_rmse": 0.22597822546958923,
207
+ "val_mae": 0.17381858825683594,
208
+ "val_loss": 0.22400633990764618
209
+ }
210
+ ]
HIC_3595cc57/fold3.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:717aedb27b2d0fcb3d47c80209c9a5df45538bce5fc7e8ce425f8b7de4e73b60
3
+ size 123890816
HIC_3595cc57/fold3_epoch_metrics.json ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "epoch": 0,
4
+ "val_spearman": 0.0,
5
+ "val_pearson": 0.0,
6
+ "val_rmse": 0.0,
7
+ "val_mae": 0.0,
8
+ "val_loss": 0.0
9
+ },
10
+ {
11
+ "epoch": 1,
12
+ "val_spearman": 0.0,
13
+ "val_pearson": 0.0,
14
+ "val_rmse": 0.0,
15
+ "val_mae": 0.0,
16
+ "val_loss": 0.0
17
+ },
18
+ {
19
+ "epoch": 3,
20
+ "val_spearman": 0.4138149917125702,
21
+ "val_pearson": 0.40227171778678894,
22
+ "val_rmse": 0.37722277641296387,
23
+ "val_mae": 0.23420391976833344,
24
+ "val_loss": 0.40057867765426636
25
+ },
26
+ {
27
+ "epoch": 5,
28
+ "val_spearman": 0.6179383397102356,
29
+ "val_pearson": 0.5694766640663147,
30
+ "val_rmse": 0.40424051880836487,
31
+ "val_mae": 0.2499263882637024,
32
+ "val_loss": 0.4606415629386902
33
+ },
34
+ {
35
+ "epoch": 7,
36
+ "val_spearman": 0.675019383430481,
37
+ "val_pearson": 0.565518856048584,
38
+ "val_rmse": 0.3586204946041107,
39
+ "val_mae": 0.2179546356201172,
40
+ "val_loss": 0.351173996925354
41
+ },
42
+ {
43
+ "epoch": 9,
44
+ "val_spearman": 0.6977973580360413,
45
+ "val_pearson": 0.5457850694656372,
46
+ "val_rmse": 0.3211660087108612,
47
+ "val_mae": 0.22594185173511505,
48
+ "val_loss": 0.32864636182785034
49
+ },
50
+ {
51
+ "epoch": 11,
52
+ "val_spearman": 0.6997956037521362,
53
+ "val_pearson": 0.6241599917411804,
54
+ "val_rmse": 0.3392646610736847,
55
+ "val_mae": 0.27270209789276123,
56
+ "val_loss": 0.4582064747810364
57
+ },
58
+ {
59
+ "epoch": 13,
60
+ "val_spearman": 0.6986432075500488,
61
+ "val_pearson": 0.6341396570205688,
62
+ "val_rmse": 0.3035755753517151,
63
+ "val_mae": 0.19644135236740112,
64
+ "val_loss": 0.2833426892757416
65
+ },
66
+ {
67
+ "epoch": 15,
68
+ "val_spearman": 0.6920176148414612,
69
+ "val_pearson": 0.6368826031684875,
70
+ "val_rmse": 0.3188478946685791,
71
+ "val_mae": 0.20305052399635315,
72
+ "val_loss": 0.2972010672092438
73
+ },
74
+ {
75
+ "epoch": 17,
76
+ "val_spearman": 0.7414273023605347,
77
+ "val_pearson": 0.6749023199081421,
78
+ "val_rmse": 0.284707248210907,
79
+ "val_mae": 0.194620281457901,
80
+ "val_loss": 0.2676836848258972
81
+ },
82
+ {
83
+ "epoch": 19,
84
+ "val_spearman": 0.6739031076431274,
85
+ "val_pearson": 0.6551007032394409,
86
+ "val_rmse": 0.28888604044914246,
87
+ "val_mae": 0.19682849943637848,
88
+ "val_loss": 0.27917832136154175
89
+ },
90
+ {
91
+ "epoch": 21,
92
+ "val_spearman": 0.7634890079498291,
93
+ "val_pearson": 0.6634722352027893,
94
+ "val_rmse": 0.28774648904800415,
95
+ "val_mae": 0.20414938032627106,
96
+ "val_loss": 0.2789265513420105
97
+ },
98
+ {
99
+ "epoch": 23,
100
+ "val_spearman": 0.7502378821372986,
101
+ "val_pearson": 0.6673375368118286,
102
+ "val_rmse": 0.2965039908885956,
103
+ "val_mae": 0.2230881303548813,
104
+ "val_loss": 0.32820308208465576
105
+ },
106
+ {
107
+ "epoch": 25,
108
+ "val_spearman": 0.7038590312004089,
109
+ "val_pearson": 0.6608157753944397,
110
+ "val_rmse": 0.28855010867118835,
111
+ "val_mae": 0.20242567360401154,
112
+ "val_loss": 0.2831656336784363
113
+ },
114
+ {
115
+ "epoch": 27,
116
+ "val_spearman": 0.7130220532417297,
117
+ "val_pearson": 0.6689530611038208,
118
+ "val_rmse": 0.2872978448867798,
119
+ "val_mae": 0.2003410905599594,
120
+ "val_loss": 0.27994582056999207
121
+ },
122
+ {
123
+ "epoch": 29,
124
+ "val_spearman": 0.7231718301773071,
125
+ "val_pearson": 0.6649885177612305,
126
+ "val_rmse": 0.28861042857170105,
127
+ "val_mae": 0.20344823598861694,
128
+ "val_loss": 0.28530389070510864
129
+ },
130
+ {
131
+ "epoch": 31,
132
+ "val_spearman": 0.72979736328125,
133
+ "val_pearson": 0.6699574589729309,
134
+ "val_rmse": 0.2871810495853424,
135
+ "val_mae": 0.19445089995861053,
136
+ "val_loss": 0.2655622661113739
137
+ },
138
+ {
139
+ "epoch": 33,
140
+ "val_spearman": 0.7304574847221375,
141
+ "val_pearson": 0.6683626174926758,
142
+ "val_rmse": 0.2867603898048401,
143
+ "val_mae": 0.20066016912460327,
144
+ "val_loss": 0.2778034806251526
145
+ },
146
+ {
147
+ "epoch": 35,
148
+ "val_spearman": 0.7197885513305664,
149
+ "val_pearson": 0.663939893245697,
150
+ "val_rmse": 0.2877323031425476,
151
+ "val_mae": 0.2000444531440735,
152
+ "val_loss": 0.2788507342338562
153
+ },
154
+ {
155
+ "epoch": 37,
156
+ "val_spearman": 0.7307841777801514,
157
+ "val_pearson": 0.6722604036331177,
158
+ "val_rmse": 0.2853941023349762,
159
+ "val_mae": 0.19693827629089355,
160
+ "val_loss": 0.2706657648086548
161
+ },
162
+ {
163
+ "epoch": 39,
164
+ "val_spearman": 0.7254528999328613,
165
+ "val_pearson": 0.66835618019104,
166
+ "val_rmse": 0.2863301932811737,
167
+ "val_mae": 0.1991991549730301,
168
+ "val_loss": 0.27637070417404175
169
+ },
170
+ {
171
+ "epoch": 41,
172
+ "val_spearman": 0.7321938276290894,
173
+ "val_pearson": 0.6698120832443237,
174
+ "val_rmse": 0.28632068634033203,
175
+ "val_mae": 0.1976584494113922,
176
+ "val_loss": 0.27209365367889404
177
+ },
178
+ {
179
+ "epoch": 43,
180
+ "val_spearman": 0.7308546304702759,
181
+ "val_pearson": 0.6693940162658691,
182
+ "val_rmse": 0.2863009572029114,
183
+ "val_mae": 0.1972762942314148,
184
+ "val_loss": 0.27241042256355286
185
+ },
186
+ {
187
+ "epoch": 45,
188
+ "val_spearman": 0.7308546304702759,
189
+ "val_pearson": 0.6701040863990784,
190
+ "val_rmse": 0.2860410511493683,
191
+ "val_mae": 0.19796234369277954,
192
+ "val_loss": 0.27423596382141113
193
+ },
194
+ {
195
+ "epoch": 47,
196
+ "val_spearman": 0.728528618812561,
197
+ "val_pearson": 0.6696042418479919,
198
+ "val_rmse": 0.286154568195343,
199
+ "val_mae": 0.1971336454153061,
200
+ "val_loss": 0.27165186405181885
201
+ },
202
+ {
203
+ "epoch": 49,
204
+ "val_spearman": 0.7266960740089417,
205
+ "val_pearson": 0.6696686148643494,
206
+ "val_rmse": 0.2862716317176819,
207
+ "val_mae": 0.19814719259738922,
208
+ "val_loss": 0.27424317598342896
209
+ }
210
+ ]
HIC_3595cc57/fold4.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37c9d598b0a79a80bc65c460c16a7cb43385a67c7df891d3fb20ac4a92f8041d
3
+ size 123890816
HIC_3595cc57/fold4_epoch_metrics.json ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "epoch": 0,
4
+ "val_spearman": 0.0,
5
+ "val_pearson": 0.0,
6
+ "val_rmse": 0.0,
7
+ "val_mae": 0.0,
8
+ "val_loss": 0.0
9
+ },
10
+ {
11
+ "epoch": 1,
12
+ "val_spearman": 0.0,
13
+ "val_pearson": 0.0,
14
+ "val_rmse": 0.0,
15
+ "val_mae": 0.0,
16
+ "val_loss": 0.0
17
+ },
18
+ {
19
+ "epoch": 3,
20
+ "val_spearman": 0.3570699691772461,
21
+ "val_pearson": 0.38143596053123474,
22
+ "val_rmse": 0.49379053711891174,
23
+ "val_mae": 0.41312506794929504,
24
+ "val_loss": 0.8850099444389343
25
+ },
26
+ {
27
+ "epoch": 5,
28
+ "val_spearman": 0.2747149169445038,
29
+ "val_pearson": 0.23183013498783112,
30
+ "val_rmse": 0.43816515803337097,
31
+ "val_mae": 0.2734975218772888,
32
+ "val_loss": 0.5080989599227905
33
+ },
34
+ {
35
+ "epoch": 7,
36
+ "val_spearman": 0.3364033102989197,
37
+ "val_pearson": 0.2827063500881195,
38
+ "val_rmse": 0.5303733348846436,
39
+ "val_mae": 0.359131783246994,
40
+ "val_loss": 0.7993766665458679
41
+ },
42
+ {
43
+ "epoch": 9,
44
+ "val_spearman": 0.36456871032714844,
45
+ "val_pearson": 0.40904414653778076,
46
+ "val_rmse": 0.43803900480270386,
47
+ "val_mae": 0.2811846435070038,
48
+ "val_loss": 0.5492005348205566
49
+ },
50
+ {
51
+ "epoch": 11,
52
+ "val_spearman": 0.3326444625854492,
53
+ "val_pearson": 0.3996555209159851,
54
+ "val_rmse": 0.4914794862270355,
55
+ "val_mae": 0.3319304287433624,
56
+ "val_loss": 0.715819239616394
57
+ },
58
+ {
59
+ "epoch": 13,
60
+ "val_spearman": 0.4188075661659241,
61
+ "val_pearson": 0.4932924509048462,
62
+ "val_rmse": 0.3938601016998291,
63
+ "val_mae": 0.2492586076259613,
64
+ "val_loss": 0.44495129585266113
65
+ },
66
+ {
67
+ "epoch": 15,
68
+ "val_spearman": 0.4551878869533539,
69
+ "val_pearson": 0.5036875009536743,
70
+ "val_rmse": 0.4201027452945709,
71
+ "val_mae": 0.2744910418987274,
72
+ "val_loss": 0.5257875919342041
73
+ },
74
+ {
75
+ "epoch": 17,
76
+ "val_spearman": 0.497129887342453,
77
+ "val_pearson": 0.5460935831069946,
78
+ "val_rmse": 0.36773690581321716,
79
+ "val_mae": 0.23814216256141663,
80
+ "val_loss": 0.411498486995697
81
+ },
82
+ {
83
+ "epoch": 19,
84
+ "val_spearman": 0.5464843511581421,
85
+ "val_pearson": 0.5437753796577454,
86
+ "val_rmse": 0.3735909163951874,
87
+ "val_mae": 0.2434564083814621,
88
+ "val_loss": 0.4249541461467743
89
+ },
90
+ {
91
+ "epoch": 21,
92
+ "val_spearman": 0.5273873209953308,
93
+ "val_pearson": 0.5407066941261292,
94
+ "val_rmse": 0.3561614155769348,
95
+ "val_mae": 0.24755656719207764,
96
+ "val_loss": 0.41758090257644653
97
+ },
98
+ {
99
+ "epoch": 23,
100
+ "val_spearman": 0.5104472041130066,
101
+ "val_pearson": 0.5489084124565125,
102
+ "val_rmse": 0.3764113783836365,
103
+ "val_mae": 0.24821816384792328,
104
+ "val_loss": 0.4394713342189789
105
+ },
106
+ {
107
+ "epoch": 25,
108
+ "val_spearman": 0.5155496597290039,
109
+ "val_pearson": 0.5506041646003723,
110
+ "val_rmse": 0.36063647270202637,
111
+ "val_mae": 0.2453390210866928,
112
+ "val_loss": 0.4148200452327728
113
+ },
114
+ {
115
+ "epoch": 27,
116
+ "val_spearman": 0.5174885988235474,
117
+ "val_pearson": 0.5567147731781006,
118
+ "val_rmse": 0.3612516522407532,
119
+ "val_mae": 0.2451867014169693,
120
+ "val_loss": 0.4156198501586914
121
+ },
122
+ {
123
+ "epoch": 29,
124
+ "val_spearman": 0.5271456241607666,
125
+ "val_pearson": 0.536703884601593,
126
+ "val_rmse": 0.37943941354751587,
127
+ "val_mae": 0.2491041123867035,
128
+ "val_loss": 0.44030189514160156
129
+ },
130
+ {
131
+ "epoch": 31,
132
+ "val_spearman": 0.5262647867202759,
133
+ "val_pearson": 0.5411279797554016,
134
+ "val_rmse": 0.3738693296909332,
135
+ "val_mae": 0.24889101088047028,
136
+ "val_loss": 0.4364151358604431
137
+ },
138
+ {
139
+ "epoch": 33,
140
+ "val_spearman": 0.5154986381530762,
141
+ "val_pearson": 0.5462726354598999,
142
+ "val_rmse": 0.36850062012672424,
143
+ "val_mae": 0.2470441311597824,
144
+ "val_loss": 0.427171528339386
145
+ },
146
+ {
147
+ "epoch": 35,
148
+ "val_spearman": 0.5143761038780212,
149
+ "val_pearson": 0.5415843725204468,
150
+ "val_rmse": 0.3743489980697632,
151
+ "val_mae": 0.24828241765499115,
152
+ "val_loss": 0.43561214208602905
153
+ },
154
+ {
155
+ "epoch": 37,
156
+ "val_spearman": 0.5134576559066772,
157
+ "val_pearson": 0.5443739295005798,
158
+ "val_rmse": 0.37012192606925964,
159
+ "val_mae": 0.24763818085193634,
160
+ "val_loss": 0.4320683479309082
161
+ },
162
+ {
163
+ "epoch": 39,
164
+ "val_spearman": 0.5166211724281311,
165
+ "val_pearson": 0.5414770245552063,
166
+ "val_rmse": 0.3714863359928131,
167
+ "val_mae": 0.24787214398384094,
168
+ "val_loss": 0.4318081736564636
169
+ },
170
+ {
171
+ "epoch": 41,
172
+ "val_spearman": 0.5120800137519836,
173
+ "val_pearson": 0.5459896326065063,
174
+ "val_rmse": 0.37117642164230347,
175
+ "val_mae": 0.24703380465507507,
176
+ "val_loss": 0.4305238127708435
177
+ },
178
+ {
179
+ "epoch": 43,
180
+ "val_spearman": 0.5096308588981628,
181
+ "val_pearson": 0.5454283356666565,
182
+ "val_rmse": 0.3709697127342224,
183
+ "val_mae": 0.24740295112133026,
184
+ "val_loss": 0.43122005462646484
185
+ },
186
+ {
187
+ "epoch": 45,
188
+ "val_spearman": 0.5143761038780212,
189
+ "val_pearson": 0.5418536067008972,
190
+ "val_rmse": 0.37262076139450073,
191
+ "val_mae": 0.24857431650161743,
192
+ "val_loss": 0.434442400932312
193
+ },
194
+ {
195
+ "epoch": 47,
196
+ "val_spearman": 0.5106513500213623,
197
+ "val_pearson": 0.5451083183288574,
198
+ "val_rmse": 0.3711400330066681,
199
+ "val_mae": 0.2474263459444046,
200
+ "val_loss": 0.4314940869808197
201
+ }
202
+ ]