How to boost a Keras based neural network using AdaBoost?

后端 未结 3 713
-上瘾入骨i
-上瘾入骨i 2021-02-04 07:54

Assuming I fit the following neural network for a binary classification problem:

model = Sequential()
model.add(Dense(21, input_dim=19, init=\'uniform\', activat         


        
3条回答
  •  旧巷少年郎
    2021-02-04 08:50

    Apparently, neural networks are not compatible with the sklearn Adaboost, see https://github.com/scikit-learn/scikit-learn/issues/1752

提交回复
热议问题