Move warning about empty dataset. (#5998)

This commit is contained in:
Jiaming Yuan
2020-08-11 14:10:51 +08:00
committed by GitHub
parent f93f1c03fc
commit 6f7112a848
3 changed files with 4 additions and 6 deletions

View File

@@ -55,9 +55,6 @@ class RegLossObj : public ObjFunction {
const MetaInfo &info,
int iter,
HostDeviceVector<GradientPair>* out_gpair) override {
if (info.labels_.Size() == 0U) {
LOG(WARNING) << "Label set is empty.";
}
CHECK_EQ(preds.Size(), info.labels_.Size())
<< " " << "labels are not correctly provided"
<< "preds.size=" << preds.Size() << ", label.size=" << info.labels_.Size() << ", "