Comparative Study on the Performance of Categorical Variable Encoders in Classification and Regression Tasks
Wenbin Zhu, Runwen Qiu, Ying Fu
TL;DR
This work tackles how to encode categorical variables for classification and regression by classifying models into ATI, tree-based, and others, and by proving that the one-hot encoder is a universal encoder for ATI models, while target encoders excel with tree-based models. Theoretical results show that for a categorical variable with $c$ levels, there exists a linear mapping $h(x)=W_{OH}\phi_{OH}(x)$ that reproduces any encoder’s contribution $f(x)=W_{\phi}\phi(x)$ on ATI architectures. Empirically, it evaluates 14 encoders across 28 datasets with 8 models, revealing that data sufficiency quantified by ASPL/minASPL governs when one-hot or target encoders perform best, and that time-cost considerations matter. The findings translate into practical guidance for encoder selection in applications such as fraud detection and disease diagnosis, bridging theory and large-scale experiments.
Abstract
Categorical variables often appear in datasets for classification and regression tasks, and they need to be encoded into numerical values before training. Since many encoders have been developed and can significantly impact performance, choosing the appropriate encoder for a task becomes a time-consuming yet important practical issue. This study broadly classifies machine learning models into three categories: 1) ATI models that implicitly perform affine transformations on inputs, such as multi-layer perceptron neural network; 2) Tree-based models that are based on decision trees, such as random forest; and 3) the rest, such as kNN. Theoretically, we prove that the one-hot encoder is the best choice for ATI models in the sense that it can mimic any other encoders by learning suitable weights from the data. We also explain why the target encoder and its variants are the most suitable encoders for tree-based models. This study conducted comprehensive computational experiments to evaluate 14 encoders, including one-hot and target encoders, along with eight common machine-learning models on 28 datasets. The computational results agree with our theoretical analysis. The findings in this study shed light on how to select the suitable encoder for data scientists in fields such as fraud detection, disease diagnosis, etc.
