Skip to content

Commit

Permalink
fix missed removed argument from cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Leif Denby committed Oct 1, 2024
1 parent f3566b0 commit dba94b3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions neural_lam/train_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,7 @@ def main(input_args=None):

# Load model parameters Use new args for model
ModelClass = MODELS[args.model]
model = ModelClass(
args, datastore=datastore, forcing_window_size=args.forcing_window_size
)
model = ModelClass(args, datastore=datastore)

if args.eval:
prefix = f"eval-{args.eval}-"
Expand Down

0 comments on commit dba94b3

Please sign in to comment.