Skip to content

Commit

Permalink
dtype fix in Weakpredictor
Browse files Browse the repository at this point in the history
  • Loading branch information
pvankatwyk committed Apr 2, 2024
1 parent b65e9a1 commit b290263
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ise/models/hybrid.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,8 @@ def __init__(
super(WeakPredictor, self).__init__()

# Initialize attributes
self.lstm_num_layers = lstm_num_layers
self.lstm_num_hidden = lstm_hidden_size
self.lstm_num_layers = int(lstm_num_layers)
self.lstm_num_hidden = int(lstm_hidden_size)
self.input_size = input_size
self.output_size = output_size
self.ice_sheet = ice_sheet
Expand Down

0 comments on commit b290263

Please sign in to comment.