Skip to content

Commit

Permalink
fix bug joblib
Browse files Browse the repository at this point in the history
  • Loading branch information
Axel DEROMBLAY committed Apr 26, 2019
1 parent 96c50e9 commit e360544
Show file tree
Hide file tree
Showing 6 changed files with 287 additions and 92 deletions.
369 changes: 282 additions & 87 deletions .idea/workspace.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ MLBox main package contains 3 sub-packages : **preprocessing**, **optimisation**
'fs__strategy' : {"space" : ["variance", "rf_feature_importance"]},
'fs__threshold': {"search" : "choice", "space" : [0.1, 0.2, 0.3]},            
'est__strategy' : {"space" : ["XGBoost"]},
'est__strategy' : {"space" : ["LightGBM"]},
'est__max_depth' : {"search" : "choice", "space" : [5,6]},
'est__subsample' : {"search" : "uniform", "space" : [0.6,0.9]}
Expand Down
3 changes: 1 addition & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ def __getattr__(cls, name):
'sklearn.pipeline',
'sklearn.preprocessing',
'theano',
'lightgbm',
'xgboost'
'lightgbm'
]

sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ MLBox main package contains 3 sub-packages : **preprocessing**, **optimisation**
'fs__strategy' : {"space" : ["variance", "rf_feature_importance"]},
'fs__threshold': {"search" : "choice", "space" : [0.1, 0.2, 0.3]},            
'est__strategy' : {"space" : ["XGBoost"]},
'est__strategy' : {"space" : ["LightGBM"]},
'est__max_depth' : {"search" : "choice", "space" : [5,6]},
'est__subsample' : {"search" : "uniform", "space" : [0.6,0.9]}
Expand Down
2 changes: 1 addition & 1 deletion python-package/mlbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Axel ARONIO DE ROMBLAY"""
__email__ = 'axelderomblay@gmail.com'
__version__ = '0.6.0'
__version__ = '0.6.1'

from .preprocessing import *
from .encoding import *
Expand Down
1 change: 1 addition & 0 deletions python-package/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ hyperopt==0.1
Keras==2.1.2
pandas==0.21.0
scikit-learn==0.19.0
joblib==0.13.2
Theano==1.0.1
lightgbm==2.0.11
networkx==1.11

0 comments on commit e360544

Please sign in to comment.