Skip to content

Commit

Permalink
fix(arg_parse) unkown action 'stor'
Browse files Browse the repository at this point in the history
  • Loading branch information
jyaacoub committed Dec 18, 2023
1 parent e85aaa1 commit c1137a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/arg_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def add_hyperparam_args(parser: argparse.ArgumentParser):
)
parser.add_argument('-embP',
'--pro_emb_dim',
action='stor', type=int, default=128,
action='store', type=int, default=128,
help='Embedding dimension for protein GCN branch for training (default: 128)'
)

Expand Down

0 comments on commit c1137a6

Please sign in to comment.