Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

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.

How was it built?

dataset = load_dataset("HuggingFaceM4/the_cauldron", "ai2d", split="train", streaming=True)
dataset_iter = iter(dataset)
sliced_dataset = []
for i in range(50):
    sliced_dataset.append(next(dataset_iter))

ds = Dataset.from_list(sliced_dataset)
ds.push_to_hub("ariG23498/the_cauldron_ai2d_sliced")
Downloads last month
23