Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/openclimatefix/PVNet into main
Browse files Browse the repository at this point in the history
  • Loading branch information
dfulu committed Oct 7, 2024
2 parents 1ec1561 + b5fa2d9 commit 5881da4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 3.0.56
current_version = 3.0.57
message = Bump version: {current_version} → {new_version} [skip ci]

[bumpversion:file:pvnet/__init__.py]
Expand Down
2 changes: 1 addition & 1 deletion pvnet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""PVNet"""
__version__ = "3.0.56"
__version__ = "3.0.57"
2 changes: 1 addition & 1 deletion pvnet/models/base_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ def on_validation_epoch_end(self):

# make and log wand artifact
validation_artifact = wandb.Artifact(
f"validation_results_epoch={self.current_epoch}", type="dataset"
f"validation_results_epoch_{self.current_epoch}", type="dataset"
)
validation_artifact.add_file(filename)
wandb.log_artifact(validation_artifact)
Expand Down

0 comments on commit 5881da4

Please sign in to comment.