#include #include "regression_metric.hpp" #include "binary_metric.hpp" #include "rank_metric.hpp" #include "multiclass_metric.hpp" namespace LightGBM { Metric* Metric::CreateMetric(const std::string& type, const MetricConfig& config) { if (type == std::string("l2")) { return new L2Metric(config); } else if (type == std::string("l1")) { return new L1Metric(config); } else if (type == std::string("huber")) { return new HuberLossMetric(config); } else if (type == std::string("binary_logloss")) { return new BinaryLoglossMetric(config); } else if (type == std::string("binary_error")) { return new BinaryErrorMetric(config); } else if (type == std::string("auc")) { return new AUCMetric(config); } else if (type == std::string("ndcg")) { return new NDCGMetric(config); } else if (type == std::string("multi_logloss")) { return new MultiLoglossMetric(config); } else if (type == std::string("multi_error")) { return new MultiErrorMetric(config); } return nullptr; } } // namespace LightGBM