Home
last modified time | relevance | path

Searched refs:PredTransform (Results 1 – 25 of 28) sorted by relevance

12

/dports/misc/py-xgboost/xgboost-1.5.1/src/objective/
H A Dregression_loss.h20 XGBOOST_DEVICE static bst_float PredTransform(bst_float x) { return x; } in PredTransform() function
29 static T PredTransform(T x) { return x; } in PredTransform() function
42 XGBOOST_DEVICE static bst_float PredTransform(bst_float x) { return x; } in PredTransform() function
70 XGBOOST_DEVICE static bst_float PredTransform(bst_float x) { return common::Sigmoid(x); } in PredTransform() function
80 static T PredTransform(T x) { return common::Sigmoid(x); } in PredTransform() function
102 XGBOOST_DEVICE static bst_float PredTransform(bst_float x) { in PredTransform() function
142 XGBOOST_DEVICE static bst_float PredTransform(bst_float x) { return x; } in PredTransform() function
153 static T PredTransform(T x) { return x; } in PredTransform() function
H A Dregression_obj.cu100 bst_float p = Loss::PredTransform(preds_ptr[idx]); in GetGradient()
129 void PredTransform(HostDeviceVector<float> *io_preds) const override { in PredTransform() function in xgboost::obj::RegLossObj
132 _preds[_idx] = Loss::PredTransform(_preds[_idx]); in PredTransform()
253 void PredTransform(HostDeviceVector<bst_float> *io_preds) const override { in PredTransform() function in xgboost::obj::PoissonRegression
263 PredTransform(io_preds); in EvalTransform()
363 void PredTransform(HostDeviceVector<bst_float> *io_preds) const override { in PredTransform() function in xgboost::obj::CoxRegression
371 PredTransform(io_preds); in EvalTransform()
440 void PredTransform(HostDeviceVector<bst_float> *io_preds) const override { in PredTransform() function in xgboost::obj::GammaRegression
450 PredTransform(io_preds); in EvalTransform()
543 void PredTransform(HostDeviceVector<bst_float> *io_preds) const override { in PredTransform() function in xgboost::obj::TweedieRegression
H A Dhinge.cu71 void PredTransform(HostDeviceVector<bst_float> *io_preds) const override { in PredTransform() function in xgboost::obj::HingeObj
H A Daft_obj.cu105 void PredTransform(HostDeviceVector<bst_float> *io_preds) const override { in PredTransform() function in xgboost::obj::AFTObj
H A Dmulticlass_obj.cu124 void PredTransform(HostDeviceVector<bst_float>* io_preds) const override { in PredTransform() function in xgboost::obj::SoftmaxMultiClassObj
/dports/misc/xgboost/xgboost-1.5.1/src/objective/
H A Dregression_loss.h20 XGBOOST_DEVICE static bst_float PredTransform(bst_float x) { return x; } in PredTransform() function
29 static T PredTransform(T x) { return x; } in PredTransform() function
42 XGBOOST_DEVICE static bst_float PredTransform(bst_float x) { return x; } in PredTransform() function
70 XGBOOST_DEVICE static bst_float PredTransform(bst_float x) { return common::Sigmoid(x); } in PredTransform() function
80 static T PredTransform(T x) { return common::Sigmoid(x); } in PredTransform() function
102 XGBOOST_DEVICE static bst_float PredTransform(bst_float x) { in PredTransform() function
142 XGBOOST_DEVICE static bst_float PredTransform(bst_float x) { return x; } in PredTransform() function
153 static T PredTransform(T x) { return x; } in PredTransform() function
H A Dregression_obj.cu100 bst_float p = Loss::PredTransform(preds_ptr[idx]); in GetGradient()
129 void PredTransform(HostDeviceVector<float> *io_preds) const override { in PredTransform() function in xgboost::obj::RegLossObj
132 _preds[_idx] = Loss::PredTransform(_preds[_idx]); in PredTransform()
253 void PredTransform(HostDeviceVector<bst_float> *io_preds) const override { in PredTransform() function in xgboost::obj::PoissonRegression
263 PredTransform(io_preds); in EvalTransform()
363 void PredTransform(HostDeviceVector<bst_float> *io_preds) const override { in PredTransform() function in xgboost::obj::CoxRegression
371 PredTransform(io_preds); in EvalTransform()
440 void PredTransform(HostDeviceVector<bst_float> *io_preds) const override { in PredTransform() function in xgboost::obj::GammaRegression
450 PredTransform(io_preds); in EvalTransform()
543 void PredTransform(HostDeviceVector<bst_float> *io_preds) const override { in PredTransform() function in xgboost::obj::TweedieRegression
H A Dhinge.cu71 void PredTransform(HostDeviceVector<bst_float> *io_preds) const override { in PredTransform() function in xgboost::obj::HingeObj
H A Daft_obj.cu105 void PredTransform(HostDeviceVector<bst_float> *io_preds) const override { in PredTransform() function in xgboost::obj::AFTObj
/dports/misc/py-xgboost/xgboost-1.5.1/plugin/updater_oneapi/
H A Dregression_loss_oneapi.h28 static bst_float PredTransform(bst_float x) { return x; } in PredTransform() function
45 static bst_float PredTransform(bst_float x) { return x; } in PredTransform() function
73 static bst_float PredTransform(bst_float x) { return SigmoidOneAPI(x); } in PredTransform() function
83 static T PredTransform(T x) { return SigmoidOneAPI(x); } in PredTransform() function
114 static bst_float PredTransform(bst_float x) { return x; } in PredTransform() function
125 static T PredTransform(T x) { return x; } in PredTransform() function
H A Dregression_obj_oneapi.cc94 bst_float p = Loss::PredTransform(preds_acc[idx]); in GetGradient()
126 void PredTransform(HostDeviceVector<float> *io_preds) override { in PredTransform() function in xgboost::obj::RegLossObjOneAPI
135 io_preds_acc[idx] = Loss::PredTransform(io_preds_acc[idx]); in PredTransform()
/dports/misc/xgboost/xgboost-1.5.1/plugin/updater_oneapi/
H A Dregression_loss_oneapi.h28 static bst_float PredTransform(bst_float x) { return x; } in PredTransform() function
45 static bst_float PredTransform(bst_float x) { return x; } in PredTransform() function
73 static bst_float PredTransform(bst_float x) { return SigmoidOneAPI(x); } in PredTransform() function
83 static T PredTransform(T x) { return SigmoidOneAPI(x); } in PredTransform() function
114 static bst_float PredTransform(bst_float x) { return x; } in PredTransform() function
125 static T PredTransform(T x) { return x; } in PredTransform() function
H A Dregression_obj_oneapi.cc94 bst_float p = Loss::PredTransform(preds_acc[idx]); in GetGradient()
126 void PredTransform(HostDeviceVector<float> *io_preds) override { in PredTransform() function in xgboost::obj::RegLossObjOneAPI
135 io_preds_acc[idx] = Loss::PredTransform(io_preds_acc[idx]); in PredTransform()
/dports/misc/py-xgboost/xgboost-1.5.1/tests/cpp/objective/
H A Dtest_objective.cc22 TEST(Objective, PredTransform) { in TEST() argument
36 obj->PredTransform(&predts); in TEST()
H A Dtest_multiclass_obj.cc50 obj->PredTransform(&io_preds); in TEST()
73 obj->PredTransform(&io_preds); in TEST()
H A Dtest_regression_obj.cc121 obj->PredTransform(&io_preds); in TEST()
191 obj->PredTransform(&io_preds); in TEST()
244 obj->PredTransform(&io_preds); in TEST()
351 obj->PredTransform(&io_preds); in TEST()
/dports/misc/xgboost/xgboost-1.5.1/tests/cpp/objective/
H A Dtest_objective.cc22 TEST(Objective, PredTransform) { in TEST() argument
36 obj->PredTransform(&predts); in TEST()
H A Dtest_multiclass_obj.cc50 obj->PredTransform(&io_preds); in TEST()
73 obj->PredTransform(&io_preds); in TEST()
H A Dtest_regression_obj.cc121 obj->PredTransform(&io_preds); in TEST()
191 obj->PredTransform(&io_preds); in TEST()
244 obj->PredTransform(&io_preds); in TEST()
351 obj->PredTransform(&io_preds); in TEST()
/dports/misc/py-xgboost/xgboost-1.5.1/include/xgboost/
H A Dobjective.h56 virtual void PredTransform(HostDeviceVector<bst_float>*) const {} in PredTransform() function
64 this->PredTransform(io_preds); in EvalTransform()
/dports/misc/xgboost/xgboost-1.5.1/include/xgboost/
H A Dobjective.h56 virtual void PredTransform(HostDeviceVector<bst_float>*) const {} in PredTransform() function
64 this->PredTransform(io_preds); in EvalTransform()
/dports/misc/py-xgboost/xgboost-1.5.1/plugin/example/
H A Dcustom_obj.cc61 void PredTransform(HostDeviceVector<bst_float> *io_preds) const override { in PredTransform() function in xgboost::obj::MyLogistic
/dports/misc/xgboost/xgboost-1.5.1/plugin/example/
H A Dcustom_obj.cc61 void PredTransform(HostDeviceVector<bst_float> *io_preds) const override { in PredTransform() function in xgboost::obj::MyLogistic
/dports/misc/py-xgboost/xgboost-1.5.1/tests/cpp/plugin/
H A Dtest_regression_obj_oneapi.cc98 obj->PredTransform(&io_preds); in TEST()
/dports/misc/xgboost/xgboost-1.5.1/tests/cpp/plugin/
H A Dtest_regression_obj_oneapi.cc98 obj->PredTransform(&io_preds); in TEST()

12