Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/jacob/windnet' into jacob/windnet
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbieker committed Dec 5, 2023
2 parents 17bc532 + 30a3436 commit 8ec2c73
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pvnet/models/multimodal/multimodal.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ def __init__(
nwp_history_minutes = history_minutes
if nwp_forecast_minutes is None:
nwp_forecast_minutes = forecast_minutes
nwp_sequence_len = 10 # TODO Fix = nwp_history_minutes // 60 + nwp_forecast_minutes // 60 + 1
nwp_sequence_len = (
10 # TODO Fix = nwp_history_minutes // 60 + nwp_forecast_minutes // 60 + 1
)

self.nwp_encoder = nwp_encoder(
sequence_length=nwp_sequence_len,
Expand Down

0 comments on commit 8ec2c73

Please sign in to comment.