Skip to content

Commit 226efde

Browse files
0.16.1
1 parent 9360842 commit 226efde

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[project]
99
name = "spotpython"
10-
version = "0.16.0"
10+
version = "0.16.1"
1111
authors = [
1212
{ name="T. Bartz-Beielstein", email="tbb@bartzundbartz.de" }
1313
]

src/spotpython/spot/spot.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2106,13 +2106,10 @@ def plot_important_hyperparameter_contour(
21062106
21072107
"""
21082108
impo = self.print_importance(threshold=threshold, print_screen=True)
2109-
print(f"impo: {impo}")
21102109
indices = sort_by_kth_and_return_indices(array=impo, k=1)
2111-
print(f"indices: {indices}")
21122110
# take the first max_imp values from the indices array
21132111
if max_imp is not None:
21142112
indices = indices[:max_imp]
2115-
print(f"indices after max_imp selection: {indices}")
21162113
if scale_global:
21172114
min_z = min(self.y)
21182115
max_z = max(self.y)

0 commit comments

Comments
 (0)