avewright/tabula-v1
Updated
The dataset viewer should be available soon. Please retry later.
A large-scale synthetic tabular dataset for pretraining transformer-based in-context learning models for tabular data (similar to TabPFN).
| Metric | Value |
|---|---|
| Total rows | 272,271,776 |
| Total datasets | 10,867 |
| Shards | 135 |
| Mean utility AUC | 0.851 |
| Format | Parquet (float32) |
Each shard is a Parquet file with a fixed-width schema:
generator: Which synthetic generator produced this datasettask_type: "binary", "multiclass", or "regression"n_features: Number of active features (rest are NaN-padded)n_classes: Number of target classesn_samples: Number of rows in the original datasetdomain: Semantic domain (finance, health, etc.)feature_names: Original domain-specific column names| Generator | Datasets |
|---|---|
| GaussianMixture | 3,029 |
| Polynomial | 2,738 |
| SCM | 2,674 |
| TreePrior | 2,096 |
| Regression | 325 |
| MixedType_GaussianMixture | 2 |
| MixedType_SCM | 2 |
| MixedType_TreePrior | 1 |
| Type | Datasets |
|---|---|
| binary | 8,396 |
| multiclass | 2,146 |
| regression | 325 |
| Domain | Datasets |
|---|---|
| hr | 1,033 |
| education | 1,031 |
| telecom | 1,028 |
| science | 1,020 |
| iot | 1,005 |
| finance | 1,000 |
| health | 985 |
| ecommerce | 977 |
| logistics | 972 |
| environment | 935 |
| manufacturing | 881 |
Every generated dataset passes quality gates before inclusion:
Gate failure rate: 22.4%
from datasets import load_dataset
ds = load_dataset("avewright/tabula-pretraining-corpus-v2", split="train", streaming=True)
for batch in ds.iter(batch_size=512):
features = batch["feat_0"] # access individual features
target = batch["target"]
meta = batch["_source_meta"] # JSON metadata string
Apache 2.0