We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e465747 commit 25e033dCopy full SHA for 25e033d
pvnet/models/multimodal/multimodal.py
@@ -196,9 +196,7 @@ def __init__(
196
if wind_history_minutes is None:
197
wind_history_minutes = history_minutes
198
199
- self.wind_encoder = wind_encoder(
200
- sequence_length=self.history_len_30
201
- )
+ self.wind_encoder = wind_encoder(sequence_length=self.history_len_30)
202
203
# Update num features
204
fusion_input_features += self.wind_encoder.out_features
pvnet/models/multimodal/site_encoders/encoders.py
@@ -391,6 +391,7 @@ def forward(self, x):
391
392
return x_out
393
394
+
395
class SinglePVAttentionNetwork(AbstractPVSitesEncoder):
396
"""A simple attention-based model with a single multihead attention layer
397
0 commit comments