* Apply Configurable to objective functions. * Apply Model to Learner and Regtree, gbm. * Add Load/SaveConfig to objs. * Refactor obj tests to use smart pointer. * Dummy methods for Save/Load Model.
51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
/*!
|
|
* Copyright 2015 by Contributors
|
|
* \file objective.cc
|
|
* \brief Registry of all objective functions.
|
|
*/
|
|
#include <xgboost/objective.h>
|
|
#include <dmlc/registry.h>
|
|
|
|
#include <sstream>
|
|
|
|
#include "xgboost/host_device_vector.h"
|
|
|
|
namespace dmlc {
|
|
DMLC_REGISTRY_ENABLE(::xgboost::ObjFunctionReg);
|
|
} // namespace dmlc
|
|
|
|
namespace xgboost {
|
|
// implement factory functions
|
|
ObjFunction* ObjFunction::Create(const std::string& name, GenericParameter const* tparam) {
|
|
auto *e = ::dmlc::Registry< ::xgboost::ObjFunctionReg>::Get()->Find(name);
|
|
if (e == nullptr) {
|
|
std::stringstream ss;
|
|
for (const auto& entry : ::dmlc::Registry< ::xgboost::ObjFunctionReg>::List()) {
|
|
ss << "Objective candidate: " << entry->name << "\n";
|
|
}
|
|
LOG(FATAL) << "Unknown objective function: `" << name << "`\n"
|
|
<< ss.str();
|
|
}
|
|
auto pobj = (e->body)();
|
|
pobj->tparam_ = tparam;
|
|
return pobj;
|
|
}
|
|
|
|
} // namespace xgboost
|
|
|
|
namespace xgboost {
|
|
namespace obj {
|
|
// List of files that will be force linked in static links.
|
|
#ifdef XGBOOST_USE_CUDA
|
|
DMLC_REGISTRY_LINK_TAG(regression_obj_gpu);
|
|
DMLC_REGISTRY_LINK_TAG(hinge_obj_gpu);
|
|
DMLC_REGISTRY_LINK_TAG(multiclass_obj_gpu);
|
|
#else
|
|
DMLC_REGISTRY_LINK_TAG(regression_obj);
|
|
DMLC_REGISTRY_LINK_TAG(hinge_obj);
|
|
DMLC_REGISTRY_LINK_TAG(multiclass_obj);
|
|
#endif // XGBOOST_USE_CUDA
|
|
DMLC_REGISTRY_LINK_TAG(rank_obj);
|
|
} // namespace obj
|
|
} // namespace xgboost
|