SURFACEBENCH: Can Self-Evolving LLMs Find the Equations of 3D Scientific Surfaces?
Paper • 2511.10833 • Published • 2
This dataset contains a comprehensive collection of symbolic regression problems focused on 3D surface modeling. The dataset includes 15 different categories of surface types, each with multiple instances, providing a diverse benchmark for symbolic regression algorithms.
The dataset is organized in HDF5 format with the following structure:
/
├── Category_1/
│ ├── Instance_1/
│ │ ├── train_data (5000, 3) - Training data [x, y, z]
│ │ ├── test_data (500, 3) - Test data [x, y, z]
│ │ └── ood_test (500, 3) - Out-of-distribution test data [x, y, z]
│ └── Instance_2/
│ └── ...
└── Category_2/
└── ...
import h5py
import numpy as np
# Load the dataset
with h5py.File('dataset.h5', 'r') as f:
# Access a specific category and instance
category = 'Elementary_Bivariate_Surfaces'
instance = 'EBS1'
# Load training data
train_data = f[f'{category}/{instance}/train_data'][:]
X_train = train_data[:, :2] # x, y coordinates
y_train = train_data[:, 2] # z values
# Load test data
test_data = f[f'{category}/{instance}/test_data'][:]
X_test = test_data[:, :2]
y_test = test_data[:, 2]
# Load out-of-distribution test data
ood_data = f[f'{category}/{instance}/ood_test'][:]
X_ood = ood_data[:, :2]
y_ood = ood_data[:, 2]
This dataset is designed for:
If you find our code and data useful, please cite our paper:
@article{kabra2026surfacebenchgeometryawarebenchmarksymbolic,
title={SURFACEBENCH: A Geometry-Aware Benchmark for Symbolic Surface Discovery},
author={Sanchit Kabra and Shobhnik Kriplani and Parshin Shojaee and Chandan K. Reddy},
journal={arXiv preprint arXiv:2511.10833},
year={2026}
}
MIT License