makiling commited on
Commit
3e7c3b1
·
verified ·
1 Parent(s): f668798

Upload configs/default.yaml with huggingface_hub

Browse files
Files changed (1) hide show
  1. configs/default.yaml +34 -0
configs/default.yaml ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ seed: 42
2
+ device: "auto"
3
+ feature_backend:
4
+ type: "plm"
5
+ plm_model_name: "facebook/esm1v_t33_650M_UR90S_1"
6
+ layer_pool: "mean"
7
+ cache_dir: ".cache/embeddings"
8
+ descriptors:
9
+ use_anarci: true
10
+ regions:
11
+ - "CDRH1"
12
+ - "CDRH2"
13
+ - "CDRH3"
14
+ features:
15
+ - "length"
16
+ - "charge"
17
+ - "hydropathy"
18
+ - "aromaticity"
19
+ - "pI"
20
+ - "net_charge"
21
+ model:
22
+ head: "logreg"
23
+ C: 0.1
24
+ class_weight: "balanced"
25
+ calibration:
26
+ method: "isotonic"
27
+ training:
28
+ cv_folds: 10
29
+ scoring: "roc_auc"
30
+ n_jobs: -1
31
+ io:
32
+ outputs_dir: "artifacts"
33
+ preds_filename: "preds.csv"
34
+ metrics_filename: "metrics.csv"