Skip to content

Commit

Permalink
feat: + kiba_gvpl tuned model #90
Browse files Browse the repository at this point in the history
  • Loading branch information
jyaacoub committed Jun 4, 2024
1 parent df4f13c commit e2de41a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rayTrain_Tune.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ def train_func(config):

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

"fold_selection": 0,
Expand Down
26 changes: 26 additions & 0 deletions src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,33 @@
'output_dim': 256
}
},
#####################################################
############## kiba #################################
#####################################################
'kiba_gvpl': {
"model": cfg.MODEL_OPT.GVPL,

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


'lr': 0.00003372637625954074,
'batch_size': 32,

'architecture_kwargs': {
'dropout': 0.09399264336737133,
'output_dim': 512,
'num_GVPLayers': 4
}
}


#####################################################
########### PDBbind #################################
#####################################################
#GVPLM_PDBbind0D_nomsaF_aflowE_128B_0.00022659LR_0.02414D_2000E_gvpLF_binaryLE
'PDBbind_gvpl_aflow':{
"model": cfg.MODEL_OPT.GVPL,
Expand Down

0 comments on commit e2de41a

Please sign in to comment.