Tabular data is widely present in real-world applications, and tree-based models have long been the dominant approach for tabular machine learning tasks. Recently, the deep learning model TabPFN v2.5 has shown strong performance and scalability.
However, most prior work evaluates TabPFN v2.5 only in closed environments, ignoring the challenges common in open environments, such as:
- Emerging new classes.
- Decremental and incremental features.
- Changing data distributions.
- Varied learning objectives.
Our work is the first comprehensive evaluation of TabPFN v2.5’s robustness and adaptability under these open environment scenarios.
| Task Name | Description |
|---|---|
| Emerging New Classes | Detecting and adapting to novel classes appearing at test time. |
| Decremental Features | Handling feature removal during testing. |
| Incremental Features | Adapting to newly added features during testing. |
| Changing Distributions | Robustness against covariate shifts and concept drift. |
| Varied Learning Objectives | Maintaining performance under different objectives and class imbalances. |
- TabPFN v2.5 exhibits overall limitations across open environment challenges.
- It shows potential for detecting new classes, but results are inconsistent.
- Vulnerable to feature decrement and unable to utilize incremental features during testing.
- Suffers substantial performance degradation under distribution shifts.
- Displays bias towards majority classes and fails to generalize across varied objectives.
- Robustness is highly dependent on dataset scale.
- Tree-based models remain the best option for general open environment tabular tasks.
To further enhance the performance of models in open environments and to provide guidance for the development of subsequent research, the following recommendations are proposed:
- Develop benchmarks targeting unexplored open environments tabular challenges.
- Evaluate models on various open environments metrics.
- Take model robustness as a critical metric when comparing model quality.
- Design universal modules to enhance the robustness of diverse existing models.
Download this GitHub repository.
Create a new Python 3.10 environment and install 'requirements.txt'.
conda create --name tabopen python=3.10
pip install -r requirements.txtpython run_evaluation.py --dataset DatasetName --model ModelName --task TaskName –-export_dataset True/False- dataset: Full dataset name (see
./datasetsfolder). - model: Full model name (e.g., tabpfn, catboost).
- task: One of
enc(emerging new classes),de(decremental features),in(incremental features),ds(data distribution shift),vb(varied learning objectives). export_dataset: Whether to export the dataset or not. Default is 'False'.
The datasets used in Decremental/Incremental Features are publicly available. You can get them from OpenML or Kaggle. Also you can directly use them from ./datasets. The datasets used in other three challenges are need to get them from TableShift or WhyShift.
Datasets used in this paper are placed in the project's current directory, corresponding to the file name.
Each dataset folder consists of:
-
dataset.csv, which must be included. -
info.json, which must include the following two contents (task can be "regression", "multiclass" or "binary", link can be from Kaggle or OpenML, num_classes is optional):{ "task": "binary", "link": "www.kaggle.com", "num_classes": }
Our work supports evaluating three categories of models directly: tree-based models and deep learning models.
-
CatBoost: A powerful gradient boosting library designed for efficient handling of categorical features and robust tabular data modeling.
-
XGBoost: A scalable and efficient implementation of gradient boosted trees widely used in tabular data tasks.
-
RandomForest: a classical ensemble learning method based on bagging and decision trees.
-
MLP: A standard multilayer perceptron neural network, implemented following the approach in RTDL.
-
ModernNCA: A deep tabular model inspired by Neighbor Component Analysis, leveraging learned embeddings and neighbor relations for prediction.
-
RealMLP: An enhanced multilayer perceptron architecture designed for improved tabular learning.
-
TabPFN v2.5: A pre-trained neural network model applicable to various tabular tasks. Our work supports evaluation TabPFN v2.5.
We provide two methods to evaluate new model on experiments.
- Export the dataset. Set export_dataset as True, then can get a csv file of a given dataset in a specific experiment.
- Import model python file.
- Add the model name in
./run_experiment.py. - Add the model function in the
./model/utils.pyby leveraging parameters like dataset, model, train_set and test_sets.
- Add the model name in
- TabPFN v2.5 has the potential to detect new classes.
- TabPFN v2.5 exhibits heightened vulnerability to decremental features.
- TabPFN v2.5 can not address new added features in the testing phase.
- TabPFN v2.5 reveals limited robustness when concepts shift.
- TabPFN v2.5 has statistically significant bias toward majority classes.
- TabPFN v2.5 fails to maintain competitive performance across various learning objectives.
- TabPFN v2.5's robustness is inherently data-dependent.





