xgboost/src/metric/metric.cc
Jiaming Yuan 9fbde21e9d
Rework the precision metric. (#9222)
- Rework the precision metric for both CPU and GPU.
- Mention it in the document.
- Cleanup old support code for GPU ranking metric.
- Deterministic GPU implementation.

* Drop support for classification.

* type.

* use batch shape.

* lint.

* cpu build.

* cpu build.

* lint.

* Tests.

* Fix.

* Cleanup error message.
2023-06-02 20:49:43 +08:00

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);
#ifdef XGBOOST_USE_CUDA
DMLC_REGISTRY_LINK_TAG(auc_gpu);
DMLC_REGISTRY_LINK_TAG(rank_metric_gpu);
#endif
} // namespace xgboost::metric