You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

STEM Image Captions Dataset

This dataset contains AI-generated captions for STEM images.

Dataset Structure

The dataset is organized in batches:

  • Total batches: 26
  • Each batch is stored in a separate directory (batch_0000, batch_0001, etc.)

Statistics

  • Total items: 1255641
  • Successfully captioned: 1255640
  • Errors: 1
  • Skipped: 0

Loading the Dataset

You can load individual batches:

from datasets import load_dataset

# Load a specific batch
batch_0 = load_dataset("JackyZhuo/STEM_train", data_dir="batch_0000", split="train")

# Load multiple batches
batch_data = []
for i in range(26):
    batch_name = f"batch_{i:04d}"
    batch = load_dataset("JackyZhuo/STEM_train", data_dir=batch_name, split="train")
    batch_data.append(batch)

Generation Details

  • Model: gpt-5
  • Batch size: 50000
  • Generated on: 2025-09-13
Downloads last month
10