Sundar0989 / XuniVerse

xverse (XuniVerse) is collection of transformers for feature engineering and feature selection
MIT License
116 stars 38 forks source link

update _voting.py, fixing sklearn related error. #19

Open kahramankostas opened 1 year ago

kahramankostas commented 1 year ago

The problem is due to the updating of the sklearn functions, if you make the following changes on line 131 of the _voting.py file, you will not have any problems in newer versions of Python. rfe = RFE(clf, self.no_of_features) #old #from rfe = RFE(estimator=clf,n_features_to_select=self.no_of_features) # new #to