Dataset Viewer
Auto-converted to Parquet Duplicate
The dataset viewer is not available for this split.
Parquet error: Scan size limit exceeded: attempted to read 792938456 bytes, limit is 300000000 bytes Make sure that 1. the Parquet files contain a page index to enable random access without loading entire row groups2. otherwise use smaller row-group sizes when serializing the Parquet files
Error code:   TooBigContentError

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.

YAML Metadata Warning:The task_categories "image-retrieval" is not in the official list: text-classification, token-classification, table-question-answering, question-answering, zero-shot-classification, translation, summarization, feature-extraction, text-generation, fill-mask, sentence-similarity, text-to-speech, text-to-audio, automatic-speech-recognition, audio-to-audio, audio-classification, audio-text-to-text, voice-activity-detection, depth-estimation, image-classification, object-detection, image-segmentation, text-to-image, image-to-text, image-to-image, image-to-video, unconditional-image-generation, video-classification, reinforcement-learning, robotics, tabular-classification, tabular-regression, tabular-to-text, table-to-text, multiple-choice, text-ranking, text-retrieval, time-series-forecasting, text-to-video, image-text-to-text, image-text-to-image, image-text-to-video, visual-question-answering, document-question-answering, zero-shot-image-classification, graph-ml, mask-generation, zero-shot-object-detection, text-to-3d, image-to-3d, image-feature-extraction, video-text-to-text, keypoint-detection, visual-document-retrieval, any-to-any, video-to-video, other

ClothingADC Dataset

ClothingADC is a large-scale clothing image dataset with fine-grained attribute annotations, designed for mental image retrieval research.

Dataset Statistics

  • Total images: 1,076,738
  • Clothing categories: 12 (Dress, Shirt, T-shirt, Jacket, Hoodie, Sweater, Suit, Vest, Windbreaker, Knitwear, Shawl, Underwear)
  • Color attributes: 36 colors
  • Material attributes: various fabrics (Linen, Wool, Cotton, etc.)
  • Pattern attributes: various patterns (Paisley, Geometric, Solid, etc.)

Dataset Fields

Field Type Description
id string Unique image identifier
image Image Clothing image (PNG)
class string Clothing category
color string Dominant color
material string Fabric material
pattern string Visual pattern

Usage

from datasets import load_dataset

ds = load_dataset("mikelmh025/ClothingADC")
sample = ds["train"][0]
print(sample["class"], sample["color"], sample["material"], sample["pattern"])
sample["image"].show()

Citation

If you use this dataset, please cite:

@article{genir2024,
  title={GenIR: Generative Visual Feedback for Mental Image Retrieval},
  author={...},
  year={2024}
}
Downloads last month
300