We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5551cd3 commit 1e8775fCopy full SHA for 1e8775f
2 files changed
pyproject.toml
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
7
8
[project]
9
name = "spotPython"
10
-version = "0.2.50"
+version = "0.2.51"
11
authors = [
12
{ name="T. Bartz-Beielstein", email="tbb@bartzundbartz.de" }
13
]
src/spotPython/light/netlightbase.py
@@ -80,7 +80,7 @@ def validation_step(self, batch, batch_idx, prog_bar=False):
80
self.log("valid_mapk", self.valid_mapk, on_step=False, on_epoch=True, prog_bar=prog_bar)
81
self.log("val_loss", loss, prog_bar=prog_bar)
82
self.log("val_acc", acc, prog_bar=prog_bar)
83
- self.log("hp_metric", loss)
+ self.log("hp_metric", loss, prog_bar=prog_bar)
84
85
def test_step(self, batch, batch_idx, prog_bar=False):
86
x, y = batch
@@ -93,7 +93,7 @@ def test_step(self, batch, batch_idx, prog_bar=False):
93
self.log("test_mapk", self.test_mapk, on_step=True, on_epoch=True, prog_bar=prog_bar)
94
95
96
- # self.log("hp_metric", loss, prog_bar=prog_bar)
97
return loss, acc
98
99
def configure_optimizers(self):
0 commit comments