TabReD: Benchmark of industry-grade tabular datasets
Project description
TabReD: Analyzing Pitfalls and Filling the Gaps in Tabular Deep Learning Benchmarks
TabReD is a collection of eight industry-grade tabular datasets designed to evaluate machine learning methods under more realistic conditions: temporal distribution shift, rich feature sets from feature engineering pipelines, closer aligned with some real world applications of tabular machine learning.
:scroll: arXiv :books: Other tabular DL projects
[!NOTE] Download preprocessed TabReD datasets with one command
uvx tabred download all # or individual datasets with uvx tabred download cooking-time weatherYou need a Kaggle account and an API token at
~/.kaggle/kaggle.jsonfor this to work.
Datasets
| Dataset | Features | Task | Instances Used | Instances Available | Source |
|---|---|---|---|---|---|
| Homesite Insurance | 299 | Classification | 260,753 | - | Competition |
| Ecom Offers | 119 | Classification | 160,057 | - | Competition |
| Homecredit Default | 696 | Classification | 381,664 | 1,526,659 | Competition |
| Sberbank Housing | 392 | Regression | 28,321 | - | Competition |
| Cooking Time | 192 | Regression | 319,986 | 12,799,642 | Dataset |
| Delivery ETA | 223 | Regression | 416,451 | 17,044,043 | Dataset |
| Maps Routing | 986 | Regression | 340,981 | 13,639,272 | Dataset |
| Weather | 103 | Regression | 423,795 | 16,951,828 | Dataset |
Preprocessed data format
The downloader unpacks each dataset into its own directory:
data/<dataset>/
├── info.json
├── x_num.npy
├── x_cat.npy # when present
├── x_bin.npy # when present
├── x_meta.npy
├── y.npy
└── splits/
├── default/
│ ├── train.npy
│ ├── val.npy
│ └── test.npy
├── random-{0,1,2}/
│ ├── train.npy
│ ├── val.npy
│ └── test.npy
└── sliding-window-{0,1,2}/
├── train.npy
├── val.npy
└── test.npy
The x_*.npy files contain feature matrices, y.npy contains targets, and
info.json contains task metadata. Split files contain row indices into these
arrays. The default split is the main split from the TabReD paper; the random
and sliding-window splits are provided for split-strategy studies.
Repository structure
src/tabred: downloader package and CLI.paper: code for reproducing the paper
Rebuilding datasets from raw sources
Most users should use the preprocessed downloader above. The preprocessing pipeline is kept in this repository for reproducibility and maintenance, but it is not the recommended way to obtain the benchmark data.
The cleaned-up dataset preparation scripts will be published in a few days (@puhsu 10.07.26). For now consult the previous commits and the preprocessing folder there.
Citation
If you use TabReD, please cite:
@inproceedings{
rubachev2025tabred,
title={TabReD: Analyzing Pitfalls and Filling the Gaps in Tabular Deep Learning Benchmarks},
author={Ivan Rubachev and Nikolay Kartashev and Yury Gorishniy and Artem Babenko},
booktitle={The Thirteenth International Conference on Learning Representations},
year={2025},
url={https://openreview.net/forum?id=L14sqcrUC3}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tabred-0.1.2.tar.gz.
File metadata
- Download URL: tabred-0.1.2.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba15ff20a4d596fabd4851112b09f42e437f63ef887a68d96833dbcd7d30c3b8
|
|
| MD5 |
3276ad9715a7419070d55703728e0453
|
|
| BLAKE2b-256 |
b33ffbf0b7fb07f5b680ab73bea541aa4808a7adaf72627d62962cc2a5da5111
|
File details
Details for the file tabred-0.1.2-py3-none-any.whl.
File metadata
- Download URL: tabred-0.1.2-py3-none-any.whl
- Upload date:
- Size: 13.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32d22b94d0ee1fb61156d025ba2c9eee0cffb3f5dda8d4a13a8dfc9e5c64bfaa
|
|
| MD5 |
d5fc53a34ca19689caed7db8854f0d13
|
|
| BLAKE2b-256 |
a434c64576e685b7f625b19032aa1589b14879922142baf9ad388e59fde58350
|