CoolFace
Datasetpublic

origami-ml/jsynth-data

jsynth-data Preprocessed datasets for Origami tabular/JSON synthesis experiments. Each configuration is an independent dataset with its own schema and train/test split. Datasets Dataset Train Test Type adult 32,561 16,281 Tabular diabetes 61,059 20,354 Tabular electric_vehicles 189,010 21,001 Tabular ddxplus 1,025,602 134,529 Semi-structured Usage from huggingface_hub import hf_hub_download path = hf_hub_download(… See the full description on the dataset page: https://huggingface.co/datasets/origami-ml/jsynth-data.

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes7downloads
Dataset Card

jsynth-data

Preprocessed datasets for Origami tabular/JSON synthesis experiments.

Each configuration is an independent dataset with its own schema and train/test split.

Datasets

DatasetTrainTestType
adult32,56116,281Tabular
diabetes61,05920,354Tabular
electric_vehicles189,01021,001Tabular
ddxplus1,025,602134,529Semi-structured

Usage

python
from huggingface_hub import hf_hub_download

path = hf_hub_download(
    repo_id="origami-ml/jsynth-data",
    filename="adult/train.jsonl",
    repo_type="dataset",
)

Or with the datasets library:

python
from datasets import load_dataset

ds = load_dataset("origami-ml/jsynth-data", "adult")