Я пытаюсь запустить регрессионную проблему на python, используя XGBOOST:
import xgboost
global clf
clf = XGBRegressor(n_estimators = 500,
learning_rate = 0.05,
max_depth=6,
n_jobs=4,
alpha = 0.1)
clf.fit(X_train, y_train,
early_stopping_rounds = 5,
eval_set = validation, verbose=False)
predicted_test_tr = np.round(clf.predict(X_test))
Но после нескольких итераций возникает следующая ошибка:
XGBoostError: b'[10:56:23] src/objective/regression_obj.cc:43: Check failed: info.labels_.size() != 0U (0 vs. 0) label set cannot be empty\n\nStack trace returned 7 entries:\n[bt] (0) 0 libxgboost.dylib 0x0000001a1971b7a1 dmlc::StackTrace() + 305\n[bt] (1) 1 libxgboost.dylib 0x0000001a1971b52f dmlc::LogMessageFatal::~LogMessageFatal() + 47\n[bt] (2) 2 libxgboost.dylib 0x0000001a19792d21 xgboost::obj::RegLossObj<xgboost::obj::LinearSquareLoss>::GetGradient(xgboost::HostDeviceVector<float>*, xgboost::MetaInfo const&, int, xgboost::HostDeviceVector<xgboost::detail::GradientPairInternal<float> >*) + 257\n[bt] (3) 3 libxgboost.dylib 0x0000001a19717496 xgboost::LearnerImpl::UpdateOneIter(int, xgboost::DMatrix*) + 1014\n[bt] (4) 4 libxgboost.dylib 0x0000001a1973369f XGBoosterUpdateOneIter + 79\n[bt] (5) 5 libffi.6.dylib 0x0000000110308884 ffi_call_unix64 + 76\n[bt] (6) 6 ??? 0x00007ffee1b29950 0x0 + 140732684998992\n\n'
Я попытался преобразовать входы и выходы с помощью:
.apply(pd.to_numeric)
Но все равно сообщает ту же ошибку; как это можно исправить?