forked from bayesian-optimization/BayesianOptimization
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit updates/fixes/improves/adds to the set of examples. - Two tour notebooks are included with everything users need to know about how to use the package. - A clear yet realist example of optimizing parameters of machine learning models is included. It is a much nicer version of the old sklearn_example script. - A glorious example on how to utilize this package in a concurrent fashion was added. - The buggy and redundant xgboost example was removed. PS: The advanced tour notebook is not quite done yet. However I needed to merge this branch so people could submit PRs to the updated release branch.
- Loading branch information
Showing
13 changed files
with
1,261 additions
and
343 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
from .bayesian_optimization import BayesianOptimization, Events | ||
from .util import UtilityFunction | ||
from .observer import ScreenLogger | ||
from .observer import ScreenLogger, JSONLogger | ||
|
||
__all__ = ["BayesianOptimization", "UtilityFunction", "Events", "ScreenLogger"] | ||
__all__ = [ | ||
"BayesianOptimization", | ||
"UtilityFunction", | ||
"Events", | ||
"ScreenLogger", | ||
"JSONLogger", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.