Skip to content

Commit 4080331

Browse files
0.31.13
use_max error fixed
1 parent 0b6ed0f commit 4080331

3 files changed

Lines changed: 28 additions & 272 deletions

File tree

notebooks/00_spotPython_tests.ipynb

Lines changed: 25 additions & 255 deletions
Large diffs are not rendered by default.

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.31.12"
10+
version = "0.31.13"
1111
authors = [
1212
{ name="T. Bartz-Beielstein", email="tbb@bartzundbartz.de" }
1313
]

src/spotpython/spot/spot.py

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2637,20 +2637,8 @@ def plot_important_hyperparameter_contour(
26372637
number of contour levels. Default is 10.
26382638
dpi (int):
26392639
dpi of the plot. Default is 200.
2640-
use_min (bool):
2641-
Use the minimum value for determing the hidden dimensions in the plot for categorical and
2642-
integer parameters.
2643-
In 3d-plots, only two variables can be independent. The remaining input variables are set
2644-
to their minimum value.
2645-
Default is `False`.
2646-
If use_min and use_max are both `True`, both values are used.
2647-
use_max (bool):
2648-
Use the minimum value for determing the hidden dimensions in the plot for categorical and
2649-
integer parameters.
2650-
In 3d-plots, only two variables can be independent. The remaining input variables are set
2651-
to their minimum value.
2652-
Default is `True`.
2653-
If use_min and use_max are both `True`, both values are used.
2640+
use_min (bool): Deprecated in 0.31.12.
2641+
use_max (bool): Deprecated in 0.31.12.
26542642
26552643
Returns:
26562644
None.
@@ -2712,8 +2700,6 @@ def plot_important_hyperparameter_contour(
27122700
n_grid=n_grid,
27132701
contour_levels=contour_levels,
27142702
dpi=dpi,
2715-
use_max=use_max,
2716-
use_min=use_min,
27172703
tkagg=tkagg,
27182704
)
27192705

0 commit comments

Comments
 (0)