The package name is in used. So to install:
py
pip install py-hyperpy
Example
Import the library:
py
import hyperpy.core as hy
from hyperpy.util import ExampleConfig Just for example
Reading data:
py
data=ExampleConfig()
train, test, sub = data.readData()
Extract features:
py
feat_X = train.filter(['Pclass','Age', 'SibSp', 'Parch','Fare']).values
Y = train.Survived.values
Run the optimization:
py
running=hy.run(feat_X, Y)
study = running.buildStudy()
See the results:
py
print("best params: ", study.best_params)
print("best test accuracy: ", study.best_value)
best_params, best_value = hy.results.results(study)