Skip to content

Commit

Permalink
Set __version__ to 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
betatim committed Feb 13, 2017
1 parent 09fa7f8 commit 4d13507
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ fine grained control over the iterations.
* Parallelize L-BFGS minimization runs over the acquisition function.
* Implement weighted hamming distance kernel for problems with only categorical dimensions.
* New acquisition function `gp_hedge` that probabilistically chooses one of `EI`, `PI`
or `LCB` at every iteration depending upon the cumulative gain.
or `LCB` at every iteration depending upon the cumulative gain.

### Bug fixes
* Warnings are now raised if a point is chosen as the candidate optimum multiple
times.
times.
* Infinite gradients that were raised in the kernel gradient computation are
now fixed.
now fixed.
* Integer dimensions are now normalized to [0, 1] internally in `gp_minimize`.

### API Changes.
* The default `acq_optimizer` function has changed from `"auto"` to `"lbfgs"`
in `gp_minimize`.
in `gp_minimize`.


## Version 0.2
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
from distutils.core import setup

setup(name='scikit-optimize',
version='0.2',
version='0.3',
description='Sequential model-based optimization toolbox.',
long_description=('Scikit-Optimize, or skopt, is a simple and efficient'
' library for sequential model-based optimization,'
' accessible to everybody and reusable in various'
' contexts.'),
long_description=('Scikit-Optimize, or `skopt`, is a simple and efficient'
' library to minimize (very) expensive and noisy'
' black-box functions. It implements several methods'
' for sequential model-based optimization.'),
url='https://scikit-optimize.github.io/',
license='BSD',
author='The scikit-optimize contributors',
Expand Down
2 changes: 1 addition & 1 deletion skopt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def f(x):
from .utils import load, dump


__version__ = "0.2"
__version__ = "0.3"


__all__ = (
Expand Down

0 comments on commit 4d13507

Please sign in to comment.