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
比如xgb/lgb early stoping参数
The text was updated successfully, but these errors were encountered:
理论上stacking这里的input应该是你已经define好的classifiers,举个例子:
clf1 = XGBClassifier(max_depth=3, learning_rate=0.1) clf2 = XGBClassifier(max_depth=5, learning_rate=0.05) clfs = [clf1, clf2] clf_meta = Stacking(clfs)
不知道这个是不是你想问的问题
Sorry, something went wrong.
这样来说也是,early stopping是不必要,不过像ligthgbm/catboost的categorical_feature特征应该是要用的吧,cat/lgb对cat特征的处理有的时候是优于一般的label encoder处理的
大佬最后有解决吗?就是有的函数fit里面有其他参数的时候,可以用吗?
No branches or pull requests
比如xgb/lgb early stoping参数
The text was updated successfully, but these errors were encountered: