Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
co63oc committed Oct 19, 2023
1 parent bb5697e commit 15bfc2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/phylstm/phylstm2.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def evaluate(cfg: DictConfig):
output_dir=cfg.output_dir,
seed=cfg.seed,
validator=validator_pde,
checkpoint_path=cfg.TRAIN.checkpoint_path,
checkpoint_path=cfg.EVAL.pretrained_model_path,
eval_with_no_grad=cfg.EVAL.eval_with_no_grad,
)
# evaluate after finished training
Expand Down
2 changes: 1 addition & 1 deletion examples/phylstm/phylstm3.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def evaluate(cfg: DictConfig):
output_dir=cfg.output_dir,
seed=cfg.seed,
validator=validator_pde,
checkpoint_path=cfg.TRAIN.checkpoint_path,
checkpoint_path=cfg.EVAL.pretrained_model_path,
eval_with_no_grad=cfg.EVAL.eval_with_no_grad,
)

Expand Down

0 comments on commit 15bfc2f

Please sign in to comment.