|
mlpack
|
The X tree requires that the tree records it's "split history". More...
#include <x_tree_auxiliary_information.hpp>
Public Member Functions | |
| SplitHistoryStruct (int dim) | |
| SplitHistoryStruct (const SplitHistoryStruct &other) | |
| SplitHistoryStruct & | operator= (const SplitHistoryStruct &other) |
| SplitHistoryStruct (SplitHistoryStruct &&other) | |
| template<typename Archive > | |
| void | serialize (Archive &ar, const uint32_t) |
Public Attributes | |
| int | lastDimension |
| std::vector< bool > | history |
The X tree requires that the tree records it's "split history".
To make this easy, we use the following structure.
1.8.13