We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c9d9b2e + 980cdb4 commit 1995da7Copy full SHA for 1995da7
README.md
@@ -155,7 +155,7 @@ __verbose__ : int, default=0
155
156
import pandas as pd
157
from sklearn.ensemble import RandomForestClassifier
158
- from boruta_py import BorutaPy
+ from boruta import BorutaPy
159
160
# load X and y
161
# NOTE BorutaPy accepts numpy arrays only, hence the .values attribute
setup.py
@@ -9,7 +9,7 @@
9
license='BSD 3 clause',
10
packages=['boruta'],
11
zip_safe=False,
12
- install_requires=['numpy==1.10.4',
13
- 'scikit-learn==0.17.1',
14
- 'scipy==0.17.0'
+ install_requires=['numpy>=1.10.4',
+ 'scikit-learn>=0.17.1',
+ 'scipy>=0.17.0'
15
])
0 commit comments