73 lines
1.9 KiB
C++
73 lines
1.9 KiB
C++
/**
|
|
* Copyright 2015-2023 by XGBoost Contributors
|
|
* \file metric_registry.cc
|
|
* \brief Registry of objective functions.
|
|
*/
|
|
#include <dmlc/registry.h>
|
|
#include <xgboost/context.h>
|
|
#include <xgboost/metric.h>
|
|
|
|
#include "metric_common.h"
|
|
|
|
namespace xgboost {
|
|
template <typename MetricRegistry>
|
|
Metric* CreateMetricImpl(const std::string& name) {
|
|
std::string buf = name;
|
|
std::string prefix = name;
|
|
const char* param;
|
|
auto pos = buf.find('@');
|
|
if (pos == std::string::npos) {
|
|
if (!buf.empty() && buf.back() == '-') {
|
|
// Metrics of form "metric-"
|
|
prefix = buf.substr(0, buf.length() - 1); // Chop off '-'
|
|
param = "-";
|
|
} else {
|
|
prefix = buf;
|
|
param = nullptr;
|
|
}
|
|
auto *e = ::dmlc::Registry<MetricRegistry>::Get()->Find(prefix.c_str());
|
|
if (e == nullptr) {
|
|
return nullptr;
|
|
}
|
|
auto p_metric = (e->body)(param);
|
|
return p_metric;
|
|
} else {
|
|
std::string prefix = buf.substr(0, pos);
|
|
auto *e = ::dmlc::Registry<MetricRegistry>::Get()->Find(prefix.c_str());
|
|
if (e == nullptr) {
|
|
return nullptr;
|
|
}
|
|
auto p_metric = (e->body)(buf.substr(pos + 1, buf.length()).c_str());
|
|
return p_metric;
|
|
}
|
|
}
|
|
|
|
Metric *
|
|
Metric::Create(const std::string& name, Context const* ctx) {
|
|
auto metric = CreateMetricImpl<MetricReg>(name);
|
|
if (metric == nullptr) {
|
|
LOG(FATAL) << "Unknown metric function " << name;
|
|
}
|
|
|
|
metric->ctx_ = ctx;
|
|
return metric;
|
|
}
|
|
} // namespace xgboost
|
|
|
|
namespace dmlc {
|
|
DMLC_REGISTRY_ENABLE(::xgboost::MetricReg);
|
|
}
|
|
|
|
namespace xgboost::metric {
|
|
// List of files that will be force linked in static links.
|
|
DMLC_REGISTRY_LINK_TAG(auc);
|
|
DMLC_REGISTRY_LINK_TAG(elementwise_metric);
|
|
DMLC_REGISTRY_LINK_TAG(multiclass_metric);
|
|
DMLC_REGISTRY_LINK_TAG(survival_metric);
|
|
DMLC_REGISTRY_LINK_TAG(rank_metric);
|
|
#if defined(XGBOOST_USE_CUDA) || defined(XGBOOST_USE_HIP)
|
|
DMLC_REGISTRY_LINK_TAG(auc_gpu);
|
|
DMLC_REGISTRY_LINK_TAG(rank_metric_gpu);
|
|
#endif
|
|
} // namespace xgboost::metric
|