#include #include "regression_objective.hpp" #include "binary_objective.hpp" #include "rank_objective.hpp" #include "multiclass_objective.hpp" namespace LightGBM { ObjectiveFunction* ObjectiveFunction::CreateObjectiveFunction(const std::string& type, const ObjectiveConfig& config) { if (type == std::string("regression")) { return new RegressionL2loss(config); } else if (type == std::string("binary")) { return new BinaryLogloss(config); } else if (type == std::string("lambdarank")) { return new LambdarankNDCG(config); } else if (type == std::string("multiclass")) { return new MulticlassLogloss(config); } return nullptr; } } // namespace LightGBM