未知类名的CatBoostError

时间:2019-03-19 21:02:18

标签: python-3.x catboost catboostregressor

当我运行下面的代码时,出现以下错误:

CatBoostError: c:/goagent/pipelines/buildmaster/catboost.git/catboost/libs/target/target_converter.cpp:64: Unknown class name: "219.9033"

我的代码:

model=CatBoostRegressor(iterations=1000, 
                         depth=5,
                         learning_rate=0.03,
                         loss_function='RMSE',
                         eval_metric='AUC',
                         l2_leaf_reg=10,
                         metric_period=50,
                         thread_count=32,
                         random_seed=42)

Catboost版本:0.13
Python版本:3.7

1 个答案:

答案 0 :(得分:0)

我在 CatBoostClassifier 中看到了这种错误。可能的原因是您的eval_set具有火车集合所没有的y值。请查看this post的线索。