Support adaptive tree, a feature supported by both sklearn and lightgbm. The tree leaf is recomputed based on residue of labels and predictions after construction. For l1 error, the optimal value is the median (50 percentile). This is marked as experimental support for the following reasons: - The value is not well defined for distributed training, where we might have empty leaves for local workers. Right now I just use the original leaf value for computing the average with other workers, which might cause significant errors. - Some follow-ups are required, for exact, pruner, and optimization for quantile function. Also, we need to calculate the initial estimation.
60 lines
1.8 KiB
C++
60 lines
1.8 KiB
C++
/*!
|
|
* Copyright 2018-2019 by Contributors
|
|
*/
|
|
#include <xgboost/host_device_vector.h>
|
|
#include <xgboost/tree_updater.h>
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <memory>
|
|
|
|
#include "../helpers.h"
|
|
|
|
namespace xgboost {
|
|
namespace tree {
|
|
|
|
TEST(Updater, Refresh) {
|
|
bst_row_t constexpr kRows = 8;
|
|
bst_feature_t constexpr kCols = 16;
|
|
|
|
HostDeviceVector<GradientPair> gpair =
|
|
{ {0.23f, 0.24f}, {0.23f, 0.24f}, {0.23f, 0.24f}, {0.23f, 0.24f},
|
|
{0.27f, 0.29f}, {0.27f, 0.29f}, {0.27f, 0.29f}, {0.27f, 0.29f} };
|
|
std::shared_ptr<DMatrix> p_dmat{
|
|
RandomDataGenerator{kRows, kCols, 0.4f}.Seed(3).GenerateDMatrix()};
|
|
std::vector<std::pair<std::string, std::string>> cfg{
|
|
{"reg_alpha", "0.0"},
|
|
{"num_feature", std::to_string(kCols)},
|
|
{"reg_lambda", "1"}};
|
|
|
|
RegTree tree = RegTree();
|
|
auto lparam = CreateEmptyGenericParam(GPUIDX);
|
|
tree.param.UpdateAllowUnknown(cfg);
|
|
std::vector<RegTree*> trees {&tree};
|
|
std::unique_ptr<TreeUpdater> refresher(
|
|
TreeUpdater::Create("refresh", &lparam, ObjInfo{ObjInfo::kRegression}));
|
|
|
|
tree.ExpandNode(0, 2, 0.2f, false, 0.0, 0.2f, 0.8f, 0.0f, 0.0f,
|
|
/*left_sum=*/0.0f, /*right_sum=*/0.0f);
|
|
int cleft = tree[0].LeftChild();
|
|
int cright = tree[0].RightChild();
|
|
|
|
tree.Stat(cleft).base_weight = 1.2;
|
|
tree.Stat(cright).base_weight = 1.3;
|
|
|
|
refresher->Configure(cfg);
|
|
std::vector<HostDeviceVector<bst_node_t>> position;
|
|
refresher->Update(&gpair, p_dmat.get(), position, trees);
|
|
|
|
bst_float constexpr kEps = 1e-6;
|
|
ASSERT_NEAR(-0.183392, tree[cright].LeafValue(), kEps);
|
|
ASSERT_NEAR(-0.224489, tree.Stat(0).loss_chg, kEps);
|
|
ASSERT_NEAR(0, tree.Stat(cleft).loss_chg, kEps);
|
|
ASSERT_NEAR(0, tree.Stat(1).loss_chg, kEps);
|
|
ASSERT_NEAR(0, tree.Stat(2).loss_chg, kEps);
|
|
}
|
|
|
|
} // namespace tree
|
|
} // namespace xgboost
|