Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Update docstring for the verbosity parameter (now default to False). #148

Merged
merged 1 commit into from
Jan 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GPyOpt/core/bo.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def run_optimization(self, max_iter = 0, max_time = np.inf, eps = 1e-8, context
:param max_iter: exploration horizon, or number of acquisitions. If nothing is provided optimizes the current acquisition.
:param max_time: maximum exploration horizon in seconds.
:param eps: minimum distance between two consecutive x's to keep running the model.
:param verbosity: flag to print the optimization results after each iteration (default, True).
:param verbosity: flag to print the optimization results after each iteration (default, False).
:param report_file: filename of the file where the results of the optimization are saved (default, None).
:param context: fixes specified variables to a particular context (values) for the optimization run (default, None).
"""
Expand Down
2 changes: 1 addition & 1 deletion GPyOpt/methods/bayesian_optimization.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class BayesianOptimization(BO):
- 'thompson_sampling': batch method using Thompson sampling.
:param batch_size: size of the batch in which the objective is evaluated (default, 1).
:param num_cores: number of cores used to evaluate the objective (default, 1).
:param verbosity: prints the models and other options during the optimization.
:param verbosity: prints the models and other options during the optimization (default, False).
:param maximize: when True -f maximization of f is done by minimizing -f (default, False).
:param **kwargs: extra parameters. Can be used to tune the current optimization setup or to use deprecated options in this package release.

Expand Down