LGMLMay 7, 2015

DART: Dropouts meet Multiple Additive Regression Trees

arXiv:1505.01866v1215 citations
Originality Incremental advance
AI Analysis

This work addresses a specific issue in boosted tree models for practitioners in machine learning, offering an incremental improvement over existing methods.

The paper tackles the problem of over-specialization in Multiple Additive Regression Trees (MART), where later trees impact only a few instances, by proposing DART, which employs dropouts to address this issue, resulting in DART outperforming MART with a significant margin on ranking, regression, and classification tasks using large-scale datasets.

Multiple Additive Regression Trees (MART), an ensemble model of boosted regression trees, is known to deliver high prediction accuracy for diverse tasks, and it is widely used in practice. However, it suffers an issue which we call over-specialization, wherein trees added at later iterations tend to impact the prediction of only a few instances, and make negligible contribution towards the remaining instances. This negatively affects the performance of the model on unseen data, and also makes the model over-sensitive to the contributions of the few, initially added tress. We show that the commonly used tool to address this issue, that of shrinkage, alleviates the problem only to a certain extent and the fundamental issue of over-specialization still remains. In this work, we explore a different approach to address the problem that of employing dropouts, a tool that has been recently proposed in the context of learning deep neural networks. We propose a novel way of employing dropouts in MART, resulting in the DART algorithm. We evaluate DART on ranking, regression and classification tasks, using large scale, publicly available datasets, and show that DART outperforms MART in each of the tasks, with a significant margin. We also show that DART overcomes the issue of over-specialization to a considerable extent.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes