bootentrees
Bootentrees are a conceptual data structure used in ensemble learning that arranges multiple bootstrap-trained models in a hierarchical, tree-like organization. The term combines bootstrap sampling with tree-based structuring to enable hierarchical aggregation of predictions. In a bootentree, each leaf typically corresponds to a base learner trained on a distinct bootstrap sample, while internal nodes store aggregated information derived from their descendant leaves. This arrangement allows predictions to be made at different levels of granularity, supporting both coarse and fine-grained inference.
Construction of a bootentree usually involves three steps. First, generate several bootstrap samples from the training
Advantages of bootentrees include robustness to overfitting through bootstraping, a flexible framework for uncertainty estimation, and
Limitations include higher computational and memory requirements compared with flat ensembles, and potential complexity in tuning