boruta_py icon indicating copy to clipboard operation
boruta_py copied to clipboard

Python implementations of the Boruta all-relevant feature selection method.

Results 45 boruta_py issues
Sort by recently updated
recently updated
newest added

Hi, It took me a while but finally found the time to work on the continuation of the discussion https://github.com/scikit-learn-contrib/boruta_py/pull/77 Meaning: - Not introducing new dependencies, a check import is...

Hello, I'd love to use new features like return_df in BorutaPy transform method, but can't with the latest version on pypi. Is there any chance that I can use soon?...

Hi, I am trying to run the PKG for the survival analysis, keep having this issues, please help, thanks obj2

I download boruta's latest version through pypi (0.3 version) This error still occur (ImportError: cannot import name 'BorutaPy' from 'boruta' ) Is there any solution for this error? My Ubuntu...

Hi, Is there a way to find the optimal number for max_iter? I need to find it to reduce the runtime. thanks, Sac

multi = ((n_feat * 2) / (np.sqrt(n_feat * 2) * depth)) n_estimators = int(multi * f_repr)

Hi, I just wanted to check if there is a way to see the visualization of box-plot and Z-importance scores like R-CRAN package https://www.analyticsvidhya.com/blog/2016/03/select-important-variables-boruta-package/

I tried running BorutaPy using cuML's RF classifier but I receive the following error: "ValueError: Bad param 'random_state' passed to set_params". Does BorutaPy work with cuML RandomForestClassifier? Ideally I'd like...

# Use Shap to evaluate the feature importance in XGBoost models Shap is not available from the sklearn API to XGBoost so I added a wrapper around XGBoost to include...