Skip to content

Commit

Permalink
Fix for issue #56
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaliki authored Nov 22, 2023
1 parent d258f2f commit cef6dec
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions model_angelo/apps/build_no_seq.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,11 @@ def main(parsed_args):
gnn_infer_args.refine = False

if i == total_gnn_rounds - 1:
gnn_infer_args.aggressive_pruning = True

if parsed_args.config_path is None:
gnn_infer_args.aggressive_pruning = True
else:
gnn_infer_args.aggressive_pruning = False

logger.info(
f"GNN model refinement round {i + 1} with args: {gnn_infer_args}"
)
Expand Down

0 comments on commit cef6dec

Please sign in to comment.