Skip to content

Commit

Permalink
Merge branch 'v0.1.1_hotfixes' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
csala committed May 2, 2018
2 parents d723f6e + a2784e4 commit 0bf834b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions btb/tuning/tuner.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ def __init__(self, tunables, gridding=0, **kwargs):
self.grid_size = gridding
self._define_grid()

self.X = np.array([])
self.y = np.array([])

def _define_grid(self):
"""
Define the range of possible values for each of the tunable
Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='0.1.1',
version='0.1.2',

description='A framework for Bayesian hyperparameter selection and tuning',

Expand Down Expand Up @@ -61,5 +61,10 @@
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
# TODO
install_requires=['future'],
install_requires=[
'future>=0.16.0',
'numpy>=1.14.2',
'scikit-learn>=0.19.1',
'scipy>=1.0.1'
]
)

0 comments on commit 0bf834b

Please sign in to comment.