Skip to content

Commit

Permalink
Merge pull request #23 from jungtaekkim/0.5.1
Browse files Browse the repository at this point in the history
0.5.1
  • Loading branch information
jungtaekkim authored Oct 18, 2021
2 parents f6f290c + b507e7a commit d11c9ff
Show file tree
Hide file tree
Showing 80 changed files with 7,009 additions and 1,319 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
</p>

# BayesO: A Bayesian optimization framework in Python
[![Build Status](https://travis-ci.org/jungtaekkim/bayeso.svg?branch=main)](https://travis-ci.org/jungtaekkim/bayeso)
[![Build Status](https://app.travis-ci.com/jungtaekkim/bayeso.svg?branch=main)](https://app.travis-ci.com/jungtaekkim/bayeso)
[![Coverage Status](https://coveralls.io/repos/github/jungtaekkim/bayeso/badge.svg?branch=main)](https://coveralls.io/github/jungtaekkim/bayeso?branch=main)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/bayeso)](https://pypi.org/project/bayeso/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Documentation Status](https://readthedocs.org/projects/bayeso/badge/?version=main)](https://bayeso.readthedocs.io/en/main/?badge=main)

Simple, but essential Bayesian optimization package.

* [http://bayeso.org](http://bayeso.org)
* [Online documentation](http://bayeso.readthedocs.io)
* [https://bayeso.org](https://bayeso.org)
* [Online documentation](https://bayeso.readthedocs.io)

## Installation
We recommend installing it with `virtualenv`.
Expand Down Expand Up @@ -70,14 +70,14 @@ We test our package in the following versions.
* Python 3.9

## Contributor
* [Jungtaek Kim](http://jungtaek.github.io) (POSTECH)
* [Jungtaek Kim](https://jungtaek.github.io) (POSTECH)

## Citation
```
@misc{KimJ2017bayeso,
author={Kim, Jungtaek and Choi, Seungjin},
title={{BayesO}: A {Bayesian} optimization framework in {Python}},
howpublished={\url{http://bayeso.org}},
howpublished={\url{https://bayeso.org}},
year={2017}
}
```
Expand Down
4 changes: 2 additions & 2 deletions bayeso/__init__.py
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'
16 changes: 16 additions & 0 deletions bayeso/bo/__init__.py
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
Loading

0 comments on commit d11c9ff

Please sign in to comment.