We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe722e3 commit 7de4c72Copy full SHA for 7de4c72
2 files changed
pyproject.toml
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
7
8
[project]
9
name = "spotPython"
10
-version = "0.0.9"
+version = "0.0.10"
11
authors = [
12
{ name="T. Bartz-Beielstein", email="tbb@bartzundbartz.de" }
13
]
src/spotPython/spot/spot.py
@@ -294,6 +294,8 @@ def run(self):
294
else:
295
X_all = X0
296
self.y = self.fun(X=X_all, fun_control=self.fun_control)
297
+ # TODO: Error if only nan values are returned
298
+ logger.debug("New y value: %s", self.y)
299
self.X, self.y = remove_nan(self.X, self.y)
300
self.update_stats()
301
# (S-4): Imputation:
0 commit comments