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.

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

how to use

import json
from PIL import Image

# 加载元数据
with open("metadata.json", "r") as f:
    metadata = json.load(f)

# 查看样本信息
sample = metadata[0]
print(f"样本ID: {sample['id']}")
print(f"提示词: {sample['prompt']}")

# 加载图像
original_img = Image.open(sample["original_img"])
model_img = Image.open(sample["color_img"])
item_imgs = Image.open(sample["canny_img"])
Downloads last month
6