Skip to content

Commit

Permalink
chore(Tuned): model config for PDBbind_DG-_aflow-_esm #113
Browse files Browse the repository at this point in the history
  • Loading branch information
jyaacoub committed Jul 22, 2024
1 parent eb10933 commit ba79084
Showing 1 changed file with 56 additions and 18 deletions.
74 changes: 56 additions & 18 deletions src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@
'pro_emb_dim': 512 # just for reference since this is the default for EDI
}
},

'kiba_gvpl_aflow': {
"model": cfg.MODEL_OPT.GVPL,

Expand Down Expand Up @@ -214,6 +213,62 @@
#####################################################
########### PDBbind #################################
#####################################################
#DGM_PDBbind0D_nomsaF_binaryE_64B_0.0001LR_0.4D_2000E
'PDBbind_DG': {
"model": cfg.MODEL_OPT.DG,

"dataset": cfg.DATA_OPT.PDBbind,
"feature_opt": cfg.PRO_FEAT_OPT.nomsa,
"edge_opt": cfg.PRO_EDGE_OPT.binary,
"lig_feat_opt": cfg.LIG_FEAT_OPT.original,
"lig_edge_opt": cfg.LIG_EDGE_OPT.binary,

'lr': 0.0001,
'batch_size': 64,

'architecture_kwargs': {
'dropout': 0.4,
'output_dim': 128,
}
},
'PDBbind_aflow':{
"model": cfg.MODEL_OPT.DG,

"dataset": cfg.DATA_OPT.PDBbind,
"feature_opt": cfg.PRO_FEAT_OPT.nomsa,
"edge_opt": cfg.PRO_EDGE_OPT.aflow,
"lig_feat_opt": cfg.LIG_FEAT_OPT.original,
"lig_edge_opt": cfg.LIG_EDGE_OPT.binary,

'lr': 0.0009185598967356679,
'batch_size': 128,

'architecture_kwargs': {
'dropout': 0.22880989869337157,
'output_dim': 256
}
},
#EDIM_PDBbind1D_nomsaF_binaryE_48B_0.0001LR_0.4D_2000E
'PDBbind_esm':{
"model": cfg.MODEL_OPT.EDI,

"dataset": cfg.DATA_OPT.PDBbind,
"feature_opt": cfg.PRO_FEAT_OPT.nomsa,
"edge_opt": cfg.PRO_EDGE_OPT.binary,
"lig_feat_opt": cfg.LIG_FEAT_OPT.original,
"lig_edge_opt": cfg.LIG_EDGE_OPT.binary,

'lr': 0.0001,
'batch_size': 48, # global batch size (local was 12)

'architecture_kwargs': {
'dropout': 0.4,
'dropout_prot': 0.0,
'output_dim': 128,
'pro_extra_fc_lyr': False,
'pro_emb_dim': 512 # just for reference since this is the default for EDI
}
},
#GVPLM_PDBbind0D_nomsaF_aflowE_128B_0.00022659LR_0.02414D_2000E_gvpLF_binaryLE
'PDBbind_gvpl_aflow':{
"model": cfg.MODEL_OPT.GVPL,
Expand Down Expand Up @@ -250,21 +305,4 @@
'output_dim': 512
}
},
'PDBbind_aflow':{
"model": cfg.MODEL_OPT.DG,

"dataset": cfg.DATA_OPT.PDBbind,
"feature_opt": cfg.PRO_FEAT_OPT.nomsa,
"edge_opt": cfg.PRO_EDGE_OPT.aflow,
"lig_feat_opt": cfg.LIG_FEAT_OPT.original,
"lig_edge_opt": cfg.LIG_EDGE_OPT.binary,

'lr': 0.0009185598967356679,
'batch_size': 128,

'architecture_kwargs': {
'dropout': 0.22880989869337157,
'output_dim': 256
}
},
}

0 comments on commit ba79084

Please sign in to comment.