Skip to content

Commit 0bf834b

Browse files
committed
Merge branch 'v0.1.1_hotfixes' into stable
2 parents d723f6e + a2784e4 commit 0bf834b

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

btb/tuning/tuner.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ def __init__(self, tunables, gridding=0, **kwargs):
3030
self.grid_size = gridding
3131
self._define_grid()
3232

33+
self.X = np.array([])
34+
self.y = np.array([])
35+
3336
def _define_grid(self):
3437
"""
3538
Define the range of possible values for each of the tunable

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# Versions should comply with PEP440. For a discussion on single-sourcing
1818
# the version across setup.py and the project code, see
1919
# https://packaging.python.org/en/latest/single_source_version.html
20-
version='0.1.1',
20+
version='0.1.2',
2121

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

@@ -61,5 +61,10 @@
6161
# requirements files see:
6262
# https://packaging.python.org/en/latest/requirements.html
6363
# TODO
64-
install_requires=['future'],
64+
install_requires=[
65+
'future>=0.16.0',
66+
'numpy>=1.14.2',
67+
'scikit-learn>=0.19.1',
68+
'scipy>=1.0.1'
69+
]
6570
)

0 commit comments

Comments
 (0)