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

Check out the documentation for more information.

Jewelry DWPose Processed Dataset (with Source)

This dataset is based on noraresense/jewelry-dwpose-processed with an additional source column.

Added Processing

  • Source column: Generated by applying masks to target images with feathering
  • Background: Light gray background (RGB: 242, 242, 242)
  • Feathering: Gaussian blur applied to mask edges for smooth blending
  • Processing time: ~23 minutes for 11147 samples

Dataset Structure

  • Total samples: 11,147
  • Image size: (768, 1024)
  • Columns: target, mask, dwpose, prompt, zoom, pose_quality, prompt_with_zoom, source

Usage

from datasets import load_dataset

# Load the dataset
dataset = load_dataset("raresense/jewelry-dwpose-processed-with-feathering")

# Access the images
sample = dataset['train'][0]
target_image = sample['target']  # Original image
mask_image = sample['mask']      # Mask
source_image = sample['source']  # Processed image with background

Original Dataset

Based on: noraresense/jewelry-dwpose-processed

Processing Details

  • Feather radius: 1.0 pixels
  • Background color: RGB(242, 242, 242)
  • Processing method: PIL with Gaussian blur for smooth edges
Downloads last month
5