automl / HPOlib

HPOlib is a hyperparameter optimization library. It provides a common interface to three state of the art hyperparameter optimization packages: SMAC, spearmint and hyperopt. This package is discontinued, please read the longer note in the info box below.
http://automl.org/hpolib
GNU General Public License v3.0
166 stars 54 forks source link

module checking routine fails after numpy >= 1.10.0 #110

Closed jh-jeong closed 8 years ago

jh-jeong commented 8 years ago

It's a very simple bug, but since _check_modules() routine at HPOlib/check_before_start.py just compares versions as a string comparing, it fails with numpy 1.11.0 (* Like "1.11.0" < "1.6.0") It's easy to fix with LooseVersion at distutils.version module.