SymboLLM-FE:
LLM-Accelerated Symbolic Regression for Automated Feature Engineering

Zi-Jian Cheng1,2 Zi-Yi Jia1,2 Zhi Zhou1,3 Yu-Feng Li1,3 Lan-Zhe Guo1,2†
1National Key Laboratory for Novel Software Technology, Nanjing University 2School of Intelligence Science and Technology, Nanjing University 3School of Artificial Intelligence, Nanjing University EMNLP 2026 Corresponding author
Comparison of feature generation mechanisms and interpretability across AutoFE paradigms

Traditional AutoFE rely on blind operator stacks, yielding high model scores but poor interpretability. LLM-based AutoFE offer semantic clarity but suffer from costly iterations, hallucinations, and performance instability. SymboLLM-FE synergizes symbolic regression with LLM refinement to achieve both high predictive accuracy and human-interpretable transparency.

Abstract

Tabular data, as a core data format in machine learning, often lacks the discriminative power needed for high-performance modeling due to insufficient feature informativeness. Automated Feature Engineering (AutoFE) overcomes this by automating feature generation and selection, ensuring both model performance and operational efficiency.

However, traditional AutoFE often yields features with poor interpretability because they rely on blind mathematical transformations, while large language model (LLM)-based AutoFE faces challenges in requiring costly multi-round iterations to generate high-utility features, compounded by inherent risks of bias and hallucination.

In this paper, we combine symbolic regression with LLMs for feature engineering (SymboLLM-FE) to solve these challenges. We extract mathematically expressive formulas strongly correlated with the target via symbolic regression — which enhances model performance — then refine them by LLMs with rich prior knowledge to ensure interpretability. Empirical results on six real-world datasets and four Kaggle competitions demonstrate that SymboLLM-FE outperforms existing AutoFE, addressing the dual challenges of poor interpretability and numerous iterations via a statistical prior-grounded LLM refinement mechanism with only single-digit LLM calls.

1. The AutoFE Dilemma

Existing AutoFE approaches are caught in a dichotomy: traditional methods maximize model performance at the cost of interpretability, while LLM-based methods prioritize semantic clarity but sacrifice efficiency and reliability. A comparative analysis (Table 1 below) reveals critical bottlenecks in both efficiency and feature quality.

Traditional AutoFE

Relies on a blind operator stack: features are opaque mathematical compositions with no semantic grounding. Large feature sets (e.g., OpenFE generates 1,436 features) fail to provide actionable insights and generalize poorly.

LLM-based AutoFE

Generates semantically coherent features from task background, but requires extensive iterative trial-and-error with downstream predictors (up to ~50 rounds) and remains susceptible to hallucinations and implicit biases that degrade reliability.

2. SymboLLM-FE Framework

SymboLLM-FE is a two-stage collaborative pipeline. In Stage 1, a Spearman correlation-guided expanding-sliding window reduces the subset search space from exponential O(2n) to polynomial O(n2), and symbolic regression mines explicit, mathematically grounded candidate formulas into a formula repository. In Stage 2, the LLM acts as a deterministic feature integrator: grounded in the discovered formulas and their validation scores, it injects domain priors via chain-of-thought reasoning, synthesizing semantically meaningful, executable feature-engineering code that is validated by a downstream predictor through an iterative refinement loop.

Overview of the two-stage SymboLLM-FE framework

Stage 1 constructs a formula repository via correlation-guided symbolic regression; Stage 2 refines formulas into interpretable features through a grounded LLM loop with downstream predictor validation.

3. Experimental Results

SymboLLM-FE is evaluated on six real-world datasets (binary / multi-class classification and regression) from OpenML and Kaggle, with four downstream predictors (CatBoost, XGBoost, MLP, TabPFN) against two traditional and five LLM-based AutoFE baselines. It achieves statistically significant improvements over traditional AutoFE (average gain of 1.23%) and approximately 1% higher accuracy than LLM-based AutoFE, with an average +2.5pp score improvement over vanilla TabPFN across four Kaggle competitions.

Table 1: Efficiency and cost comparison across AutoFE. Model Score is the average classification accuracy (downstream TabPFN).
Method Generated Features Model Score LLM API Calls
AutoFeat279.75
OpenFE143679.53
CAAFE3079.9410
OcTree5079.5250
FEBP20079.3629
LLM-FE3079.5935
LLM-RANK78.867
SymboLLM-FE7080.024
Table 2: Main results (downstream TabPFN). ↑ higher is better (Accuracy); ↓ lower is better (RMSE). Best in bold, second best underlined.
FE Method Credit-g ↑ Spaceship ↑ Cmc ↑ Academic ↑ Ailerons ↓ Tesla ↓
Acc. Acc. Acc. Acc. RMSE RMSE
Baseline77.03±0.4780.79±1.2757.85±0.8977.33±0.675.10±0.482.39±0.09
AutoFeat77.83±1.4380.76±1.1757.85±0.3276.80±0.465.04±0.452.38±0.00
OpenFE76.50±3.3480.30±1.0057.85±2.3576.42±0.615.26±0.492.18±0.06
CAAFE78.00±0.7180.99±1.0057.78±1.2877.29±0.565.03±0.462.66±0.09
OcTree76.50±0.8280.79±1.1557.85±1.5277.33±0.705.09±0.472.43±0.10
FEBP77.50±0.4180.85±1.2957.93±0.4877.36±0.355.08±0.482.41±0.08
LLM-FE76.67±0.6280.22±0.9657.29±2.2076.42±0.615.05±0.462.39±0.09
LLM-RANK77.50±0.8280.70±1.1557.74±0.8577.25±0.195.10±0.485.87±0.19
SymboLLM-FE77.00±1.6381.27±1.3157.97±0.7377.89±0.235.02±0.462.16±0.06

BibTeX

@inproceedings{cheng2026symbollm-fe,
  title     = {SymboLLM-FE: LLM-Accelerated Symbolic Regression
               for Automated Feature Engineering on Tabular Data},
  author    = {Cheng, Zi-Jian and Jia, Zi-Yi and Zhou, Zhi
               and Li, Yu-Feng and Guo, Lan-Zhe},
  booktitle = {Proceedings of the 2026 Conference on Empirical
               Methods in Natural Language Processing},
  year      = {2026}
}