首页 > 解决方案 > 轻型 GBM 提前停止不适用于自定义指标

问题描述

我已经为轻型 gbm 使用了一个自定义指标,但提前停止了日志丢失的工作,这是目标函数,我该如何解决这个问题或更改提前停止以适用于 eval 指标。

def evaluate_macroF1_lgb(truth, predictions):  
    pred_labels = predictions.reshape(len(np.unique(truth)),-1).argmax(axis=0)
    f1 = f1_score(truth, pred_labels, average='macro')
    return ('macroF1', f1, True) 

lg = LGBMClassifier(n_estimators=1000)

lg.fit(x_train,y_train,eval_set=(x_test,y_test),eval_metric=evaluate_macroF1_lgb,early_stopping_rounds=25)

我预计它会运行 1000 次或更少迭代,但它运行了 25 次,因为日志损失没有改善,但 f1 指标正在改善。

标签: pythonmachine-learningdata-sciencelightgbm

解决方案


更新

我找到了一个解决方案,我们可以在 LGBM 分类器中设置 metric="custom" 然后它将使用 eval 指标。


lg = LGBMClassifier(n_estimators=1000,metric="custom")


推荐阅读