File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -786,6 +786,7 @@ class ExpectedImprovement(AcquisitionFunction):
786786 Decay rate for xi. If None, no decay is applied.
787787
788788 exploration_decay_delay : int, default None
789+ Delay for decay. If None, decay is applied from the start.
789790
790791 random_state : int, RandomState, default None
791792 Set the random state for reproducibility.
Original file line number Diff line number Diff line change @@ -55,6 +55,11 @@ class BayesianOptimization:
5555 Dictionary with parameters names as keys and a tuple with minimum
5656 and maximum values.
5757
58+ acquisition_function: AcquisitionFunction, optional(default=None)
59+ The acquisition function to use for suggesting new points to evaluate.
60+ If None, defaults to UpperConfidenceBound for unconstrained problems
61+ and ExpectedImprovement for constrained problems.
62+
5863 constraint: NonlinearConstraint.
5964 Note that the names of arguments of the constraint function and of
6065 f need to be the same.
You can’t perform that action at this time.
0 commit comments