AlexSychovUN commited on
Commit
00abb1e
·
1 Parent(s): f51aa5c

Prepared for deploy

Browse files
Files changed (1) hide show
  1. utils.py +4 -4
utils.py CHANGED
@@ -20,12 +20,12 @@ DEVICE = torch.device("cuda" if torch.cuda.is_available() else "cpu")
20
 
21
  # MODEL_PATH = "runs/experiment_attention20260124_104439_optuna/models/model_ep041_mse1.9153.pth"
22
  #
23
- # GAT_HEADS = 2
24
- # HIDDEN_CHANNELS = 256
25
 
26
  MODEL_PATH = "models/model_ep041_attention_mse1.9153.pth"
27
- GAT_HEADS = 4
28
- HIDDEN_CHANNELS = 128
29
 
30
 
31
  def get_inference_data(ligand_smiles, protein_sequence, model_path=MODEL_PATH):
 
20
 
21
  # MODEL_PATH = "runs/experiment_attention20260124_104439_optuna/models/model_ep041_mse1.9153.pth"
22
  #
23
+ GAT_HEADS = 2
24
+ HIDDEN_CHANNELS = 256
25
 
26
  MODEL_PATH = "models/model_ep041_attention_mse1.9153.pth"
27
+ # GAT_HEADS = 4
28
+ # HIDDEN_CHANNELS = 128
29
 
30
 
31
  def get_inference_data(ligand_smiles, protein_sequence, model_path=MODEL_PATH):