Skip to content

Commit

Permalink
Hard code sequence length
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbieker committed Dec 5, 2023
1 parent 5ad332f commit d48590c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pvnet/models/multimodal/multimodal.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def __init__(
nwp_history_minutes = history_minutes
if nwp_forecast_minutes is None:
nwp_forecast_minutes = forecast_minutes
nwp_sequence_len = 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 d48590c

Please sign in to comment.