Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 5, 2023
1 parent 2400800 commit 448665b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pvnet/models/multimodal/multimodal.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,13 @@ def __init__(
self.embedding_dim = embedding_dim
self.add_image_embedding_channel = add_image_embedding_channel

super().__init__(history_minutes, forecast_minutes, optimizer, output_quantiles, target_key=BatchKey.gsp if target_key == "gsp" else BatchKey.sensor)
super().__init__(
history_minutes,
forecast_minutes,
optimizer,
output_quantiles,
target_key=BatchKey.gsp if target_key == "gsp" else BatchKey.sensor,
)

# Number of features expected by the output_network
# Add to this as network pices are constructed
Expand Down

0 comments on commit 448665b

Please sign in to comment.