StackingClassifier final_estimator网格搜索

问题描述

我正在使用将RandomForest和BaggedLogisticRegression作为第一层estimators,并将LogisticRegression用于final_estmator的StackingClassifier。我使用以下参数运行RandomizedSearch:

params = {
    
    'random_forest__max_depth': [3,7,10],'random_forest__n_estimators': [100,150],'logreg_bagged__base_estimator__max_iter': [10000],'logreg_bagged__base_estimator__C': [10000,20000,100000],'logreg_bagged__base_estimator__class_weight': [{0: neg,1: pos} for neg,pos in 
                                                        [(1 - ((val + 1) * 0.01),(val + 1) * 0.01) for val in range(5)]
                                                   ],'final_estimator__max_iter': [10000],'final_estimator__C': np.logspace(-4,4,4),'final_estimator__class_weight': [{0: neg,}

random_forest和logreg_bagged参数按预期运行,但是我似乎无法访问final_estimator参数以将它们包括在超参数调整中。有人知道将其包含在搜索空间中的方法吗?

这是模型图: Model_diagram

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...