-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from jungtaekkim/0.5.1
0.5.1
- Loading branch information
Showing
80 changed files
with
7,009 additions
and
1,319 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
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,8 +1,8 @@ | ||
# | ||
# author: Jungtaek Kim ([email protected]) | ||
# last updated: March 14, 2021 | ||
# last updated: June 24, 2021 | ||
# | ||
"""BayesO is a simple, but essential Bayesian optimization | ||
package, implemented in Python.""" | ||
|
||
__version__ = '0.5.0' | ||
__version__ = '0.5.1' |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# | ||
# author: Jungtaek Kim ([email protected]) | ||
# last updated: October 13, 2021 | ||
# | ||
"""These files are for implementing Bayesian optimization classes. | ||
""" | ||
|
||
from bayeso.bo import bo_w_gp | ||
from bayeso.bo import bo_w_tp | ||
from bayeso.bo import bo_w_trees | ||
|
||
|
||
BO = bo_w_gp.BOwGP | ||
BOwGP = bo_w_gp.BOwGP | ||
BOwTP = bo_w_tp.BOwTP | ||
BOwTrees = bo_w_trees.BOwTrees |
Oops, something went wrong.