We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Looks like the early_stopping parameter wasn't used.
def __init__(self, estimator, n_estimators=1000, perc=100, alpha=0.05, two_step=True, max_iter=100, random_state=None, verbose=0, early_stopping=False, n_iter_no_change=20): self.estimator = estimator self.n_estimators = n_estimators self.perc = perc self.alpha = alpha self.two_step = two_step self.max_iter = max_iter self.random_state = random_state self.verbose = verbose self.early_stopping = early_stopping self.n_iter_no_change = n_iter_no_change self.__version__ = '0.3' self._is_lightgbm = 'lightgbm' in str(type(self.estimator))
Same applies to n_iter_no_change.
n_iter_no_change
The text was updated successfully, but these errors were encountered:
It should be used as it appears here ->
boruta_py/boruta/boruta_py.py
Line 370 in f783995
Sorry, something went wrong.
No branches or pull requests
Looks like the early_stopping parameter wasn't used.
Same applies to
n_iter_no_change
.The text was updated successfully, but these errors were encountered: