Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Dec 7, 2017
1 parent 2c95f8c commit 2e860f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bayes_opt/bayesian_optimization.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self, f, pbounds, random_state):
self.bounds = np.array(list(pbounds.values()), dtype=np.float)
self.dim = len(pbounds)

# Place to constant-time append new values
# Place append new values in constant-time
self.new_Xs = []
self.new_Ys = []

Expand Down

0 comments on commit 2e860f6

Please sign in to comment.