Dataset Viewer
The dataset could not be loaded because the splits use different data file formats, which is not supported. Read more about the splits configuration. Click for more details.
Couldn't infer the same data file format for all splits. Got {NamedSplit('train'): (None, {}), NamedSplit('test'): ('json', {})}
Error code:   FileFormatMismatchBetweenSplitsError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/datasets-cards)

APEBench-scraped (old)

All datasets scraped from the APEBench benchmark suite with the version used for the Neurips submission.

Download

Download without large files

GIT_LFS_SKIP_SMUDGE=1 git clone git@hf.co:datasets/thuerey-group/apebench-scraped-old

Afterwards, you can inspect the repository and download the files you need. For example, for 1d_diff_adv:

git lfs install
git lfs pull -I "data/1d_diff_adv*"

Alternatively, you can download the entire repository with large files:

git lfs install
git clone git@hf.co:datasets/thuerey-group/apebench-scraped-old

Reproduction

Obtained via:

conda create -n apebench python=3.12 -y
conda activate apebench
pip install -U "jax[cuda12]"
pip install git+ssh://git@github.com/Ceyron/apebench@97fb1249a27ab362c95fd33ea7a7f103fd028e37

And then executed the following script:

import apebench
from tqdm import tqdm
import os

DATA_PATH = "data"

os.makedirs(DATA_PATH, exist_ok=True)

for config in tqdm(apebench.scraper.CURATION_APEBENCH_V1):
    apebench.scraper.scrape_data_and_metadata(DATA_PATH, **config)
Downloads last month
0