Skip to content

Commit 6a8f302

Browse files
committed
wip
1 parent 67fdbf5 commit 6a8f302

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

bayes_opt/bayesian_optimization.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,16 @@ def __init__(self, f, pbounds, random_state=None, verbose=1):
5454
# Utility Function placeholder
5555
self.util = None
5656

57+
# PrintLog object
58+
self.plog = PrintLog(self.space.keys)
59+
5760
# Output dictionary
5861
self.res = {}
5962
# Output dictionary
6063
self.res['max'] = {'max_val': None,
6164
'max_params': None}
6265
self.res['all'] = {'values': [], 'params': []}
6366

64-
self.plog = PrintLog(self.space.keys)
65-
6667
# Verbose
6768
self.verbose = verbose
6869

0 commit comments

Comments
 (0)