diff --git a/src/objective/regression_obj.cu b/src/objective/regression_obj.cu index 1e1ba03b0..0354d5777 100644 --- a/src/objective/regression_obj.cu +++ b/src/objective/regression_obj.cu @@ -147,31 +147,6 @@ XGBOOST_REGISTER_OBJECTIVE(LinearRegression, "reg:linear") .set_body([]() { LOG(WARNING) << "reg:linear is now deprecated in favor of reg:squarederror."; return new RegLossObj(); }); - -XGBOOST_REGISTER_OBJECTIVE(GPULinearRegression, "gpu:reg:linear") -.describe("Deprecated. Linear regression (computed on GPU).") -.set_body([]() { - LOG(WARNING) << "gpu:reg:linear is now deprecated, use reg:linear instead."; - return new RegLossObj(); }); - -XGBOOST_REGISTER_OBJECTIVE(GPULogisticRegression, "gpu:reg:logistic") -.describe("Deprecated. Logistic regression for probability regression task (computed on GPU).") -.set_body([]() { - LOG(WARNING) << "gpu:reg:logistic is now deprecated, use reg:logistic instead."; - return new RegLossObj(); }); - -XGBOOST_REGISTER_OBJECTIVE(GPULogisticClassification, "gpu:binary:logistic") -.describe("Deprecated. Logistic regression for binary classification task (computed on GPU).") -.set_body([]() { - LOG(WARNING) << "gpu:binary:logistic is now deprecated, use binary:logistic instead."; - return new RegLossObj(); }); - -XGBOOST_REGISTER_OBJECTIVE(GPULogisticRaw, "gpu:binary:logitraw") -.describe("Deprecated. Logistic regression for classification, output score " - "before logistic transformation (computed on GPU)") -.set_body([]() { - LOG(WARNING) << "gpu:binary:logitraw is now deprecated, use binary:logitraw instead."; - return new RegLossObj(); }); // End deprecated // declare parameter