Fix Typo in learner.cc (#3902)

This commit is contained in:
theycallhimavi 2018-11-16 05:24:36 +05:30 committed by Jiaming Yuan
parent fe999bf968
commit 0a0d4239d3

View File

@ -382,7 +382,7 @@ class LearnerImpl : public Learner {
#else
if (saved_param == "predictor" && kv.second == "gpu_predictor") {
LOG(INFO) << "Parameter 'predictor' will be set to 'cpu_predictor' "
<< "since XGBoots wasn't compiled with GPU support.";
<< "since XGBoost wasn't compiled with GPU support.";
cfg_["predictor"] = "cpu_predictor";
kv.second = "cpu_predictor";
}