Skip to content

Commit

Permalink
add missing kwarg to HiLAM.__init__
Browse files Browse the repository at this point in the history
  • Loading branch information
leifdenby committed Sep 27, 2024
1 parent 5df2ecf commit d4d438f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neural_lam/models/hi_lam.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ class HiLAM(BaseHiGraphModel):
The Hi-LAM model from Oskarsson et al. (2023)
"""

def __init__(self, args):
super().__init__(args)
def __init__(self, args, datastore):
super().__init__(args, datastore=datastore)

# Make down GNNs, both for down edges and same level
self.mesh_down_gnns = nn.ModuleList(
Expand Down

0 comments on commit d4d438f

Please sign in to comment.