Dataset Card for HumanEdit
Paper (CVPR 2025 AI for Content Creation (AI4CC) Workshop)
from datasets import load_dataset
from PIL import Image
Load the dataset
ds = load_dataset("BryanW/HumanEdit")
Print the total number of samples and show the first sample
print(f"Total number of samples: {len(ds['train'])}")
print("First sample in the dataset:", ds['train'][0])
Retrieve the first sample's data
data_dict = ds['train'][0]