We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c95f8c commit 2e860f6Copy full SHA for 2e860f6
bayes_opt/bayesian_optimization.py
@@ -23,7 +23,7 @@ def __init__(self, f, pbounds, random_state):
23
self.bounds = np.array(list(pbounds.values()), dtype=np.float)
24
self.dim = len(pbounds)
25
26
- # Place to constant-time append new values
+ # Place append new values in constant-time
27
self.new_Xs = []
28
self.new_Ys = []
29
0 commit comments