LGDec 13, 2021

Tree-Based Dynamic Classifier Chains

arXiv:2112.06672v19 citations
Originality Incremental advance
AI Analysis

This work addresses a bottleneck in multi-label classification for practitioners by making classifier chains more efficient and effective, though it is incremental as it builds on existing tree-based methods.

The paper tackles the problem of label order sensitivity in classifier chains for multi-label classification by proposing a dynamic selection approach using random decision trees, which improves prediction quality and speeds up training and prediction compared to static orderings.

Classifier chains are an effective technique for modeling label dependencies in multi-label classification. However, the method requires a fixed, static order of the labels. While in theory, any order is sufficient, in practice, this order has a substantial impact on the quality of the final prediction. Dynamic classifier chains denote the idea that for each instance to classify, the order in which the labels are predicted is dynamically chosen. The complexity of a naive implementation of such an approach is prohibitive, because it would require to train a sequence of classifiers for every possible permutation of the labels. To tackle this problem efficiently, we propose a new approach based on random decision trees which can dynamically select the label ordering for each prediction. We show empirically that a dynamic selection of the next label improves over the use of a static ordering under an otherwise unchanged random decision tree model. % and experimental environment. In addition, we also demonstrate an alternative approach based on extreme gradient boosted trees, which allows for a more target-oriented training of dynamic classifier chains. Our results show that this variant outperforms random decision trees and other tree-based multi-label classification methods. More importantly, the dynamic selection strategy allows to considerably speed up training and prediction.

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