StochTree 0.5.0.9000
Loading...
Searching...
No Matches
partition_tracker.h
1
25#ifndef STOCHTREE_PARTITION_TRACKER_H_
26#define STOCHTREE_PARTITION_TRACKER_H_
27
28#include <stochtree/data.h>
29#include <stochtree/ensemble.h>
30#include <stochtree/log.h>
31#include <stochtree/openmp_utils.h>
32#include <stochtree/tree.h>
33
34#include <numeric>
35
36namespace StochTree {
37
39class SampleNodeMapper;
40class SamplePredMapper;
41class UnsortedNodeSampleTracker;
42class SortedNodeSampleTracker;
43class FeaturePresortRootContainer;
44
47 public:
56 ForestTracker(Eigen::MatrixXd& covariates, std::vector<FeatureType>& feature_types, int num_trees, int num_observations);
58 void ReconstituteFromForest(TreeEnsemble& forest, ForestDataset& dataset, ColumnVector& residual, bool is_mean_model);
59 void AssignAllSamplesToRoot();
60 void AssignAllSamplesToRoot(int32_t tree_num);
61 void AssignAllSamplesToConstantPrediction(double value);
62 void AssignAllSamplesToConstantPrediction(int32_t tree_num, double value);
63 void UpdatePredictions(TreeEnsemble* ensemble, ForestDataset& dataset);
64 void UpdateSampleTrackers(TreeEnsemble& forest, ForestDataset& dataset);
65 void UpdateSampleTrackersResidual(TreeEnsemble& forest, ForestDataset& dataset, ColumnVector& residual, bool is_mean_model);
66 void ResetRoot(Eigen::MatrixXd& covariates, std::vector<FeatureType>& feature_types, int32_t tree_num);
67 void AddSplit(Eigen::MatrixXd& covariates, TreeSplit& split, int32_t split_feature, int32_t tree_id, int32_t split_node_id, int32_t left_node_id, int32_t right_node_id, bool keep_sorted = false, int num_threads = -1);
68 void RemoveSplit(Eigen::MatrixXd& covariates, Tree* tree, int32_t tree_id, int32_t split_node_id, int32_t left_node_id, int32_t right_node_id, bool keep_sorted = false);
69 double GetSamplePrediction(data_size_t sample_id);
70 double GetTreeSamplePrediction(data_size_t sample_id, int tree_id);
71 void UpdateVarWeightsFromInternalPredictions(ForestDataset& dataset);
72 void SetSamplePrediction(data_size_t sample_id, double value);
73 void SetTreeSamplePrediction(data_size_t sample_id, int tree_id, double value);
74 void SyncPredictions();
75 data_size_t GetNodeId(int observation_num, int tree_num);
76 data_size_t UnsortedNodeBegin(int tree_id, int node_id);
77 data_size_t UnsortedNodeEnd(int tree_id, int node_id);
78 data_size_t UnsortedNodeSize(int tree_id, int node_id);
79 data_size_t SortedNodeBegin(int node_id, int feature_id);
80 data_size_t SortedNodeEnd(int node_id, int feature_id);
81 data_size_t SortedNodeSize(int node_id, int feature_id);
82 std::vector<data_size_t>::iterator UnsortedNodeBeginIterator(int tree_id, int node_id);
83 std::vector<data_size_t>::iterator UnsortedNodeEndIterator(int tree_id, int node_id);
84 std::vector<data_size_t>::iterator SortedNodeBeginIterator(int node_id, int feature_id);
85 std::vector<data_size_t>::iterator SortedNodeEndIterator(int node_id, int feature_id);
86 SamplePredMapper* GetSamplePredMapper() { return sample_pred_mapper_.get(); }
87 SampleNodeMapper* GetSampleNodeMapper() { return sample_node_mapper_.get(); }
88 UnsortedNodeSampleTracker* GetUnsortedNodeSampleTracker() { return unsorted_node_sample_tracker_.get(); }
89 SortedNodeSampleTracker* GetSortedNodeSampleTracker() { return sorted_node_sample_tracker_.get(); }
90 double* GetSumPredictions() { return sum_predictions_.data(); }
91 int GetNumObservations() { return num_observations_; }
92 int GetNumTrees() { return num_trees_; }
93 int GetNumFeatures() { return num_features_; }
94 bool Initialized() { return initialized_; }
95
96 private:
98 std::vector<double> sum_predictions_;
100 std::unique_ptr<SamplePredMapper> sample_pred_mapper_;
102 std::unique_ptr<SampleNodeMapper> sample_node_mapper_;
106 std::unique_ptr<UnsortedNodeSampleTracker> unsorted_node_sample_tracker_;
110 std::unique_ptr<FeaturePresortRootContainer> presort_container_;
111 std::unique_ptr<SortedNodeSampleTracker> sorted_node_sample_tracker_;
112 std::vector<FeatureType> feature_types_;
113 int num_trees_;
114 int num_observations_;
115 int num_features_;
116 bool initialized_{false};
117
118 void UpdatePredictionsInternal(TreeEnsemble* ensemble, Eigen::MatrixXd& covariates, Eigen::MatrixXd& basis);
119 void UpdatePredictionsInternal(TreeEnsemble* ensemble, Eigen::MatrixXd& covariates);
120 void UpdateSampleTrackersInternal(TreeEnsemble& forest, Eigen::MatrixXd& covariates, Eigen::MatrixXd& basis);
121 void UpdateSampleTrackersInternal(TreeEnsemble& forest, Eigen::MatrixXd& covariates);
122 void UpdateSampleTrackersResidualInternalBasis(TreeEnsemble& forest, ForestDataset& dataset, ColumnVector& residual, bool is_mean_model);
123 void UpdateSampleTrackersResidualInternalNoBasis(TreeEnsemble& forest, ForestDataset& dataset, ColumnVector& residual, bool is_mean_model);
124};
125
128 public:
130 num_trees_ = num_trees;
131 num_observations_ = num_observations;
132 // Initialize the vector of vectors of leaf indices for each tree
133 tree_preds_.resize(num_trees_);
134 for (int j = 0; j < num_trees_; j++) {
135 tree_preds_[j].resize(num_observations_);
136 }
137 }
138
139 inline double GetPred(data_size_t sample_id, int tree_id) {
140 CHECK_LT(sample_id, num_observations_);
141 CHECK_LT(tree_id, num_trees_);
142 return tree_preds_[tree_id][sample_id];
143 }
144
145 inline void SetPred(data_size_t sample_id, int tree_id, double value) {
146 CHECK_LT(sample_id, num_observations_);
147 CHECK_LT(tree_id, num_trees_);
148 tree_preds_[tree_id][sample_id] = value;
149 }
150
151 inline int NumTrees() { return num_trees_; }
152
153 inline int NumObservations() { return num_observations_; }
154
155 inline void AssignAllSamplesToConstantPrediction(int tree_id, double value) {
156 for (data_size_t i = 0; i < num_observations_; i++) {
157 tree_preds_[tree_id][i] = value;
158 }
159 }
160
161 private:
162 std::vector<std::vector<double>> tree_preds_;
163 int num_trees_;
164 data_size_t num_observations_;
165};
166
169 public:
171 num_trees_ = num_trees;
172 num_observations_ = num_observations;
173 // Initialize the vector of vectors of leaf indices for each tree
174 tree_observation_indices_.resize(num_trees_);
175 for (int j = 0; j < num_trees_; j++) {
176 tree_observation_indices_[j].resize(num_observations_);
177 }
178 }
179
181 num_trees_ = other.NumTrees();
182 num_observations_ = other.NumObservations();
183 // Initialize the vector of vectors of leaf indices for each tree
184 tree_observation_indices_.resize(num_trees_);
185 for (int j = 0; j < num_trees_; j++) {
186 tree_observation_indices_[j].resize(num_observations_);
187 for (int i = 0; i < num_observations_; i++) {
188 tree_observation_indices_[j][i] = other.GetNodeId(i, j);
189 }
190 }
191 }
192
194 CHECK_EQ(num_observations_, covariates.rows());
195 // Eigen::MatrixXd X = covariates.GetData();
196 for (int i = 0; i < num_observations_; i++) {
197 if (tree_observation_indices_[tree_id][i] == split_node_id) {
199 if (split.SplitTrue(fvalue)) {
200 tree_observation_indices_[tree_id][i] = left_node_id;
201 } else {
202 tree_observation_indices_[tree_id][i] = right_node_id;
203 }
204 }
205 }
206 }
207
208 inline data_size_t GetNodeId(data_size_t sample_id, int tree_id) {
209 CHECK_LT(sample_id, num_observations_);
210 CHECK_LT(tree_id, num_trees_);
211 return tree_observation_indices_[tree_id][sample_id];
212 }
213
214 inline void SetNodeId(data_size_t sample_id, int tree_id, int node_id) {
215 CHECK_LT(sample_id, num_observations_);
216 CHECK_LT(tree_id, num_trees_);
217 tree_observation_indices_[tree_id][sample_id] = node_id;
218 }
219
220 inline int NumTrees() { return num_trees_; }
221
222 inline int NumObservations() { return num_observations_; }
223
224 inline void AssignAllSamplesToRoot(int tree_id) {
225 for (data_size_t i = 0; i < num_observations_; i++) {
226 tree_observation_indices_[tree_id][i] = 0;
227 }
228 }
229
230 private:
231 std::vector<std::vector<int>> tree_observation_indices_;
232 int num_trees_;
233 data_size_t num_observations_;
234};
235
238 public:
240
243
246
248 void PartitionNode(Eigen::MatrixXd& covariates, int node_id, int left_node_id, int right_node_id, int feature_split, double split_value);
249
251 void PartitionNode(Eigen::MatrixXd& covariates, int node_id, int left_node_id, int right_node_id, int feature_split, std::vector<std::uint32_t> const& category_list);
252
255
257 bool IsLeaf(int node_id);
258
261
264
267
270
273
276
278 int Parent(int node_id);
279
282
285
287 std::vector<data_size_t> indices_;
288
290 std::vector<data_size_t> NodeIndices(int node_id);
291
294
295 private:
296 // Vectors tracking indices in each node
297 std::vector<data_size_t> node_begin_;
298 std::vector<data_size_t> node_length_;
299 std::vector<int32_t> parent_nodes_;
300 std::vector<int32_t> left_nodes_;
301 std::vector<int32_t> right_nodes_;
302 int num_nodes_, num_deleted_nodes_;
303 std::vector<int> deleted_nodes_;
304
305 // Private helper functions
307 void ConvertLeafParentToLeaf(int node_id);
308};
309
312 public:
314 feature_partitions_.resize(num_trees);
315 num_trees_ = num_trees;
316 for (int i = 0; i < num_trees; i++) {
317 feature_partitions_[i].reset(new FeatureUnsortedPartition(n));
318 }
319 }
320
323
326 return feature_partitions_[tree_id]->PartitionNode(covariates, node_id, left_node_id, right_node_id, feature_split, split);
327 }
328
330 void PartitionTreeNode(Eigen::MatrixXd& covariates, int tree_id, int node_id, int left_node_id, int right_node_id, int feature_split, double split_value) {
331 return feature_partitions_[tree_id]->PartitionNode(covariates, node_id, left_node_id, right_node_id, feature_split, split_value);
332 }
333
335 void PartitionTreeNode(Eigen::MatrixXd& covariates, int tree_id, int node_id, int left_node_id, int right_node_id, int feature_split, std::vector<std::uint32_t> const& category_list) {
336 return feature_partitions_[tree_id]->PartitionNode(covariates, node_id, left_node_id, right_node_id, feature_split, category_list);
337 }
338
341 feature_partitions_[tree_id].reset(new FeatureUnsortedPartition(n));
342 ;
343 }
344
347 return feature_partitions_[tree_id]->PruneNodeToLeaf(node_id);
348 }
349
351 bool IsLeaf(int tree_id, int node_id) {
352 return feature_partitions_[tree_id]->IsLeaf(node_id);
353 }
354
356 bool IsValidNode(int tree_id, int node_id) {
357 return feature_partitions_[tree_id]->IsValidNode(node_id);
358 }
359
362 return feature_partitions_[tree_id]->LeftNodeIsLeaf(node_id);
363 }
364
367 return feature_partitions_[tree_id]->RightNodeIsLeaf(node_id);
368 }
369
372 return feature_partitions_[tree_id]->NodeBegin(node_id);
373 }
374
377 return feature_partitions_[tree_id]->NodeEnd(node_id);
378 }
379
380 std::vector<data_size_t>::iterator NodeBeginIterator(int tree_id, int node_id) {
381 data_size_t node_begin = feature_partitions_[tree_id]->NodeBegin(node_id);
382 auto begin_iter = feature_partitions_[tree_id]->indices_.begin();
383 return begin_iter + node_begin;
384 }
385
386 std::vector<data_size_t>::iterator NodeEndIterator(int tree_id, int node_id) {
387 int node_end = feature_partitions_[tree_id]->NodeEnd(node_id);
388 auto begin_iter = feature_partitions_[tree_id]->indices_.begin();
389 return begin_iter + node_end;
390 }
391
394 return feature_partitions_[tree_id]->NodeSize(node_id);
395 }
396
398 int Parent(int tree_id, int node_id) {
399 return feature_partitions_[tree_id]->Parent(node_id);
400 }
401
403 int LeftNode(int tree_id, int node_id) {
404 return feature_partitions_[tree_id]->LeftNode(node_id);
405 }
406
408 int RightNode(int tree_id, int node_id) {
409 return feature_partitions_[tree_id]->RightNode(node_id);
410 }
411
413 std::vector<data_size_t> TreeNodeIndices(int tree_id, int node_id) {
414 return feature_partitions_[tree_id]->NodeIndices(node_id);
415 }
416
419 feature_partitions_[tree_id]->UpdateObservationMapping(node_id, tree_id, sample_node_mapper);
420 }
421
424 std::vector<int> const& leaves = tree->GetLeaves();
425 int leaf;
426 for (int i = 0; i < leaves.size(); i++) {
427 leaf = leaves[i];
429 }
430 }
431
433 int NumTrees() { return num_trees_; }
434
436 FeatureUnsortedPartition* GetFeaturePartition(int i) { return feature_partitions_[i].get(); }
437
438 private:
439 // Vectors of feature partitions
440 std::vector<std::unique_ptr<FeatureUnsortedPartition>> feature_partitions_;
441 int num_trees_;
442};
443
446 public:
447 NodeOffsetSize(data_size_t node_offset, data_size_t node_size) : node_begin_{node_offset}, node_size_{node_size}, presorted_{false} {
448 node_end_ = node_begin_ + node_size_;
449 }
450
451 ~NodeOffsetSize() {}
452
453 void SetSorted() { presorted_ = true; }
454
455 bool IsSorted() { return presorted_; }
456
457 data_size_t Begin() { return node_begin_; }
458
459 data_size_t End() { return node_end_; }
460
461 data_size_t Size() { return node_size_; }
462
463 private:
464 data_size_t node_begin_;
465 data_size_t node_size_;
466 data_size_t node_end_;
467 bool presorted_;
468};
469
472
484
485 public:
487 feature_index_ = feature_index;
488 ArgsortRoot(covariates);
489 }
490
492
493 void ArgsortRoot(Eigen::MatrixXd& covariates) {
494 data_size_t num_obs = covariates.rows();
495
496 // Make a vector of indices from 0 to num_obs - 1
497 if (feature_sort_indices_.size() != num_obs) {
498 feature_sort_indices_.resize(num_obs, 0);
499 }
500 std::iota(feature_sort_indices_.begin(), feature_sort_indices_.end(), 0);
501
502 // Define a custom comparator to be used with stable_sort:
503 // For every two indices l and r store as elements of `data_sort_indices_`,
504 // compare them for sorting purposes by indexing the covariate's raw data with both l and r
505 auto comp_op = [&](size_t const& l, size_t const& r) { return std::less<double>{}(covariates(l, feature_index_), covariates(r, feature_index_)); };
506 std::stable_sort(feature_sort_indices_.begin(), feature_sort_indices_.end(), comp_op);
507 }
508
509 private:
510 std::vector<data_size_t> feature_sort_indices_;
511 int32_t feature_index_;
512};
513
516 public:
517 FeaturePresortRootContainer(Eigen::MatrixXd& covariates, std::vector<FeatureType>& feature_types) {
518 num_features_ = covariates.cols();
519 feature_presort_.resize(num_features_);
520 for (int i = 0; i < num_features_; i++) {
521 feature_presort_[i].reset(new FeaturePresortRoot(covariates, i, feature_types[i]));
522 }
523 }
524
526
527 FeaturePresortRoot* GetFeaturePresort(int feature_num) { return feature_presort_[feature_num].get(); }
528
529 private:
530 std::vector<std::unique_ptr<FeaturePresortRoot>> feature_presort_;
531 int num_features_;
532};
533
545 public:
547 // Unpack all feature details
548 feature_index_ = feature_index;
549 feature_type_ = feature_type;
550 num_obs_ = covariates.rows();
551 feature_sort_indices_ = feature_presort_root->feature_sort_indices_;
552
553 // Initialize new tree to root
555 node_offset_sizes_.emplace_back(node_offset, num_obs_);
556 }
557
559
562
565
567 void SplitFeatureCategorical(Eigen::MatrixXd& covariates, int32_t node_id, int32_t feature_index, std::vector<std::uint32_t> const& category_list);
568
570 data_size_t NodeBegin(int32_t node_id) { return node_offset_sizes_[node_id].Begin(); }
571
573 data_size_t NodeEnd(int32_t node_id) { return node_offset_sizes_[node_id].End(); }
574
576 data_size_t NodeSize(int32_t node_id) { return node_offset_sizes_[node_id].Size(); }
577
579 std::vector<data_size_t> NodeIndices(int node_id);
580
583
585 FeatureType GetFeatureType() { return feature_type_; }
586
589
591 std::vector<data_size_t> feature_sort_indices_;
592
593 private:
596
598 std::vector<NodeOffsetSize> node_offset_sizes_;
599 int32_t feature_index_;
600 FeatureType feature_type_;
601 data_size_t num_obs_;
602};
603
606 public:
607 SortedNodeSampleTracker(FeaturePresortRootContainer* feature_presort_root_container, Eigen::MatrixXd& covariates, std::vector<FeatureType>& feature_types) {
608 num_features_ = covariates.cols();
609 feature_partitions_.resize(num_features_);
611 for (int i = 0; i < num_features_; i++) {
613 feature_partitions_[i].reset(new FeaturePresortPartition(feature_presort_root, covariates, i, feature_types[i]));
614 }
615 }
616
618 void PartitionNode(Eigen::MatrixXd& covariates, int node_id, int feature_split, TreeSplit& split, int num_threads = -1) {
619 StochTree::ParallelFor(0, num_features_, num_threads, [&](int i) {
620 feature_partitions_[i]->SplitFeature(covariates, node_id, feature_split, split);
621 });
622 }
623
625 void PartitionNode(Eigen::MatrixXd& covariates, int node_id, int feature_split, double split_value, int num_threads = -1) {
626 StochTree::ParallelFor(0, num_features_, num_threads, [&](int i) {
627 feature_partitions_[i]->SplitFeatureNumeric(covariates, node_id, feature_split, split_value);
628 });
629 }
630
632 void PartitionNode(Eigen::MatrixXd& covariates, int node_id, int feature_split, std::vector<std::uint32_t> const& category_list, int num_threads = -1) {
633 StochTree::ParallelFor(0, num_features_, num_threads, [&](int i) {
634 feature_partitions_[i]->SplitFeatureCategorical(covariates, node_id, feature_split, category_list);
635 });
636 }
637
640 return feature_partitions_[feature_index]->NodeBegin(node_id);
641 }
642
645 return feature_partitions_[feature_index]->NodeEnd(node_id);
646 }
647
650 return feature_partitions_[feature_index]->NodeSize(node_id);
651 }
652
653 std::vector<data_size_t>::iterator NodeBeginIterator(int node_id, int feature_index) {
655 auto begin_iter = feature_partitions_[feature_index]->feature_sort_indices_.begin();
656 return begin_iter + node_begin;
657 }
658
659 std::vector<data_size_t>::iterator NodeEndIterator(int node_id, int feature_index) {
661 auto begin_iter = feature_partitions_[feature_index]->feature_sort_indices_.begin();
662 return begin_iter + node_end;
663 }
664
666 std::vector<data_size_t> NodeIndices(int node_id, int feature_index) {
667 return feature_partitions_[feature_index]->NodeIndices(node_id);
668 }
669
671 data_size_t SortIndex(data_size_t j, int feature_index) { return feature_partitions_[feature_index]->SortIndex(j); }
672
675 feature_partitions_[feature_index]->UpdateObservationMapping(node_id, tree_id, sample_node_mapper);
676 }
677
678 private:
679 std::vector<std::unique_ptr<FeaturePresortPartition>> feature_partitions_;
680 int num_features_;
681};
682
683} // namespace StochTree
684
685#endif // STOCHTREE_PARTITION_TRACKER_H_
Internal wrapper around Eigen::VectorXd interface for univariate floating point data....
Definition data.h:193
Data structure that tracks pre-sorted feature values through a tree's split lifecycle.
Definition partition_tracker.h:544
void SplitFeature(Eigen::MatrixXd &covariates, int32_t node_id, int32_t feature_index, TreeSplit &split)
Split numeric / ordered categorical feature and update sort indices.
data_size_t NodeEnd(int32_t node_id)
End position of node indexed by node_id.
Definition partition_tracker.h:573
std::vector< data_size_t > NodeIndices(int node_id)
Data indices for a given node.
std::vector< data_size_t > feature_sort_indices_
Feature sort indices.
Definition partition_tracker.h:591
data_size_t NodeSize(int32_t node_id)
Size (in observations) of node indexed by node_id.
Definition partition_tracker.h:576
FeatureType GetFeatureType()
Feature type.
Definition partition_tracker.h:585
data_size_t SortIndex(data_size_t j)
Feature sort index j.
Definition partition_tracker.h:582
data_size_t NodeBegin(int32_t node_id)
Start position of node indexed by node_id.
Definition partition_tracker.h:570
void UpdateObservationMapping(int node_id, int tree_id, SampleNodeMapper *sample_node_mapper)
Update SampleNodeMapper for all the observations in node_id.
void SplitFeatureNumeric(Eigen::MatrixXd &covariates, int32_t node_id, int32_t feature_index, double split_value)
Split numeric / ordered categorical feature and update sort indices.
void SplitFeatureCategorical(Eigen::MatrixXd &covariates, int32_t node_id, int32_t feature_index, std::vector< std::uint32_t > const &category_list)
Split unordered categorical feature and update sort indices.
Container class for FeaturePresortRoot objects stored for every feature in a dataset.
Definition partition_tracker.h:515
Data structure for presorting a feature by its values.
Definition partition_tracker.h:482
Mapping nodes to the indices they contain.
Definition partition_tracker.h:237
void PartitionNode(Eigen::MatrixXd &covariates, int node_id, int left_node_id, int right_node_id, int feature_split, double split_value)
Partition a node based on a new split rule.
void PartitionNode(Eigen::MatrixXd &covariates, int node_id, int left_node_id, int right_node_id, int feature_split, TreeSplit &split)
Partition a node based on a new split rule.
int RightNode(int node_id)
Right child of node_id.
int Parent(int node_id)
Parent node_id.
data_size_t NodeEnd(int node_id)
One past the last index of data points contained in node_id.
std::vector< data_size_t > indices_
Data indices.
Definition partition_tracker.h:287
void PartitionNode(Eigen::MatrixXd &covariates, int node_id, int left_node_id, int right_node_id, int feature_split, std::vector< std::uint32_t > const &category_list)
Partition a node based on a new split rule.
bool RightNodeIsLeaf(int node_id)
Whether node_id's right child is a leaf.
void UpdateObservationMapping(int node_id, int tree_id, SampleNodeMapper *sample_node_mapper)
Update SampleNodeMapper for all the observations in node_id.
data_size_t NodeSize(int node_id)
Number of data points contained in node_id.
std::vector< data_size_t > NodeIndices(int node_id)
Data indices for a given node.
void ReconstituteFromTree(Tree &tree, ForestDataset &dataset)
Reconstitute a tree partition tracker from root based on a tree.
bool IsLeaf(int node_id)
Whether node_id is a leaf.
void PruneNodeToLeaf(int node_id)
Convert a (currently split) node to a leaf.
bool LeftNodeIsLeaf(int node_id)
Whether node_id's left child is a leaf.
int LeftNode(int node_id)
Left child of node_id.
bool IsValidNode(int node_id)
Whether node_id is a valid node.
data_size_t NodeBegin(int node_id)
First index of data points contained in node_id.
API for loading and accessing data used to sample tree ensembles The covariates / bases / weights use...
Definition data.h:272
"Superclass" wrapper around tracking data structures for forest sampling algorithms
Definition partition_tracker.h:46
ForestTracker(Eigen::MatrixXd &covariates, std::vector< FeatureType > &feature_types, int num_trees, int num_observations)
Construct a new ForestTracker object.
Tracking cutpoints available at a given node.
Definition partition_tracker.h:445
Class storing sample-node map for each tree in an ensemble.
Definition partition_tracker.h:168
Class storing sample-prediction map for each tree in an ensemble.
Definition partition_tracker.h:127
Data structure for tracking observations through a tree partition with each feature pre-sorted.
Definition partition_tracker.h:605
void PartitionNode(Eigen::MatrixXd &covariates, int node_id, int feature_split, TreeSplit &split, int num_threads=-1)
Partition a node based on a new split rule.
Definition partition_tracker.h:618
data_size_t NodeSize(int node_id, int feature_index)
One past the last index of data points contained in node_id.
Definition partition_tracker.h:649
void UpdateObservationMapping(int node_id, int tree_id, SampleNodeMapper *sample_node_mapper, int feature_index=0)
Update SampleNodeMapper for all the observations in node_id.
Definition partition_tracker.h:674
void PartitionNode(Eigen::MatrixXd &covariates, int node_id, int feature_split, double split_value, int num_threads=-1)
Partition a node based on a new split rule.
Definition partition_tracker.h:625
std::vector< data_size_t > NodeIndices(int node_id, int feature_index)
Data indices for a given node.
Definition partition_tracker.h:666
data_size_t SortIndex(data_size_t j, int feature_index)
Feature sort index j for feature_index.
Definition partition_tracker.h:671
data_size_t NodeBegin(int node_id, int feature_index)
First index of data points contained in node_id.
Definition partition_tracker.h:639
void PartitionNode(Eigen::MatrixXd &covariates, int node_id, int feature_split, std::vector< std::uint32_t > const &category_list, int num_threads=-1)
Partition a node based on a new split rule.
Definition partition_tracker.h:632
data_size_t NodeEnd(int node_id, int feature_index)
One past the last index of data points contained in node_id.
Definition partition_tracker.h:644
Class storing a "forest," or an ensemble of decision trees.
Definition ensemble.h:31
Representation of arbitrary tree split rules, including numeric split rules (X[,i] <= c) and categori...
Definition tree.h:956
Decision tree data structure.
Definition tree.h:66
Mapping nodes to the indices they contain.
Definition partition_tracker.h:311
void PartitionTreeNode(Eigen::MatrixXd &covariates, int tree_id, int node_id, int left_node_id, int right_node_id, int feature_split, std::vector< std::uint32_t > const &category_list)
Partition a node based on a new split rule.
Definition partition_tracker.h:335
void UpdateObservationMapping(Tree *tree, int tree_id, SampleNodeMapper *sample_node_mapper)
Update SampleNodeMapper for all the observations in tree.
Definition partition_tracker.h:423
int RightNode(int tree_id, int node_id)
Right child of node_id.
Definition partition_tracker.h:408
bool IsLeaf(int tree_id, int node_id)
Whether node_id is a leaf.
Definition partition_tracker.h:351
bool RightNodeIsLeaf(int tree_id, int node_id)
Whether node_id's right child is a leaf.
Definition partition_tracker.h:366
bool IsValidNode(int tree_id, int node_id)
Whether node_id is a valid node.
Definition partition_tracker.h:356
void UpdateObservationMapping(int node_id, int tree_id, SampleNodeMapper *sample_node_mapper)
Update SampleNodeMapper for all the observations in node_id.
Definition partition_tracker.h:418
data_size_t NodeBegin(int tree_id, int node_id)
First index of data points contained in node_id.
Definition partition_tracker.h:371
int NumTrees()
Number of trees.
Definition partition_tracker.h:433
int LeftNode(int tree_id, int node_id)
Left child of node_id.
Definition partition_tracker.h:403
void ResetTreeToRoot(int tree_id, data_size_t n)
Convert a tree to root.
Definition partition_tracker.h:340
void PartitionTreeNode(Eigen::MatrixXd &covariates, int tree_id, int node_id, int left_node_id, int right_node_id, int feature_split, TreeSplit &split)
Partition a node based on a new split rule.
Definition partition_tracker.h:325
data_size_t NodeSize(int tree_id, int node_id)
One past the last index of data points contained in node_id.
Definition partition_tracker.h:393
bool LeftNodeIsLeaf(int tree_id, int node_id)
Whether node_id's left child is a leaf.
Definition partition_tracker.h:361
int Parent(int tree_id, int node_id)
Parent node_id.
Definition partition_tracker.h:398
void ReconstituteFromForest(TreeEnsemble &forest, ForestDataset &dataset)
Reconstruct the node sample tracker based on the splits in a forest.
data_size_t NodeEnd(int tree_id, int node_id)
One past the last index of data points contained in node_id.
Definition partition_tracker.h:376
void PartitionTreeNode(Eigen::MatrixXd &covariates, int tree_id, int node_id, int left_node_id, int right_node_id, int feature_split, double split_value)
Partition a node based on a new split rule.
Definition partition_tracker.h:330
FeatureUnsortedPartition * GetFeaturePartition(int i)
Return a pointer to the feature partition tracking tree i.
Definition partition_tracker.h:436
std::vector< data_size_t > TreeNodeIndices(int tree_id, int node_id)
Data indices for a given node.
Definition partition_tracker.h:413
void PruneTreeNodeToLeaf(int tree_id, int node_id)
Convert a (currently split) node to a leaf.
Definition partition_tracker.h:346
static void GFRSampleOneIter(TreeEnsemble &active_forest, ForestTracker &tracker, ForestContainer &forests, LeafModel &leaf_model, ForestDataset &dataset, ColumnVector &residual, TreePrior &tree_prior, std::mt19937 &gen, std::vector< double > &variable_weights, std::vector< int > &sweep_update_indices, double global_variance, std::vector< FeatureType > &feature_types, int cutpoint_grid_size, bool keep_forest, bool pre_initialized, bool backfitting, int num_features_subsample, int num_threads, LeafSuffStatConstructorArgs &... leaf_suff_stat_args)
Definition tree_sampler.h:816
A collection of random number generation utilities.
Definition bart.h:15