Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

kahramankostas
Copy link

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

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant