bareethul commited on
Commit
0674e5c
·
verified ·
1 Parent(s): a3c4b46

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +82 -53
README.md CHANGED
@@ -38,74 +38,103 @@ pretty_name: Outfit Combos (Winter Wearability)
38
  size_categories:
39
  - n<1K
40
  ---
41
- This dataset contains 30+ original images of **shirt–pant outfit combinations**, each labeled by **formality** (casual, semi-formal, formal) and **winter wearability** (binary).
42
- All images were manually collected and resized to 224×224.
43
- An augmented split (300+ images) was generated using Torchvision transformations to support educational computer vision tasks.
44
 
45
- # **Model Card: Outfit Combos Dataset**
 
46
 
47
- ## Purpose
48
- This dataset was created to explore how clothing combinations (shirt + pant) can be categorized by **formality** and whether they can be **geared for winter wear or not**.
49
- The goal is educational: to practice dataset construction, augmentation, and deployment for computer vision tasks.
50
 
 
 
 
 
 
51
 
52
- ## Composition
53
- - **30 original outfit images**, photographed by the creator.
54
- - Each image resized to **224×224 px**.
55
- - Labels include:
56
- - `Formality` (categorical: casual, semi formal, formal)
57
- - `is_winter_wearable` (binary: 1 = yes, 0 = no)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58
 
 
59
 
60
- ## Collection
61
- - All images were taken manually from mine and my roommate’s wardrobes(not web sourced).
62
- - Faces/identifiable people excluded; dataset only includes clothing objects.
63
- - No sensitive or personal information included.
64
 
65
- ## Preprocessing & Augmentation
66
- - **Preprocessing**: resized all images to 224×224.
67
- - **Augmentation**: Torchvision transforms including:
68
- - Random crops and resizes
69
- - Horizontal/vertical flips
70
- - Random rotations (±15°)
71
- - Color jitter (brightness, contrast, saturation, hue)
72
- - Optional RandAugment for stronger diversity
73
- - Expanded dataset from 30 images to **300 augmented images**.
74
- - Augmentations were **label preserving**.
75
 
 
 
 
76
 
77
- ## Labels
78
- - `Image`: RGB photo of outfit combo
79
- - `Formality`: categorical label (casual/semi formal/formal)
80
- - `is_winter_wearable`: binary label (1 = yes, 0 = no)
 
 
 
 
81
 
82
- ## Splits
83
- - **original**: 30 manually captured outfit images
84
- - **augmented**: 300 augmented images
85
 
 
 
86
 
87
- ## Intended Use / Limits
88
- - **For use in**:
89
- - Educational purposes (image classification practice)
90
- - Demonstrating augmentation pipelines
91
- - **Not for use in**:
92
- - Real fashion recommendation systems
93
- - Commercial retail applications
94
 
 
95
 
96
- ## Ethical Notes
97
- - Dataset avoids sensitive content and privacy issues.
98
- - Focuses only on clothing items; no personal data is included.
99
 
 
 
 
 
 
 
 
 
100
 
101
- ## License
102
- - **CC BY 4.0** - free to share and adapt with attribution.
103
 
 
 
 
 
 
 
 
 
 
104
 
105
- ## AI Usage Disclosure
106
- - ChatGPT was used as a coding teammate for:
107
- - Defining the augmentation approach
108
- - Helping create image augmentation code blocks
109
- - Building the contact sheet visualization
110
- - Polishing final notebooks and this model card
111
- - All images were manually collected by the creator.
 
38
  size_categories:
39
  - n<1K
40
  ---
41
+ # Dataset Card for Outfit Dataset
 
 
42
 
43
+ This dataset card documents the **Clothing Outfit Dataset**.
44
+ It contains 30 original outfit images (shirt-pant combinations) with categorical and binary labels, with an augmented split expanding to 300 images.
45
 
46
+ ## Dataset Details
 
 
47
 
48
+ **Dataset Description**
49
+ - **Curated by:** Bareethul Kader (Carnegie Mellon University)
50
+ - **Language(s):** English (labels: formality, binary target)
51
+ - **License:** CC BY 4.0
52
+ - **Repository:** [bareethul/clothing-outfits](https://huggingface.co/datasets/bareethul/clothing-outfits)
53
 
54
+ ---
55
+
56
+ ## Uses
57
+
58
+ **Direct Use**
59
+ - Educational practice in **computer vision dataset creation and augmentation**.
60
+ - Binary classification task: predict whether an outfit is **wearable in winter** with a jacket.
61
+ - Multi-class classification: predict outfit **formality** (Casual, Semi-Formal, Formal).
62
+
63
+ **Out-of-Scope Use**
64
+ - Not intended for fashion recommendations or e-commerce applications.
65
+ - Images represent a limited personal wardrobe, not generalizable fashion data.
66
+
67
+ ---
68
+
69
+ ## Dataset Structure
70
+
71
+ - **Original split:** 30 manually captured outfit images (shirt–pant combos).
72
+ - **Augmented split:** 300 images generated with **torchvision transforms** (random crop, flip, rotation, color jitter, etc.).
73
+
74
+ **Features:**
75
+ - `Image` (224×224 JPG, RGB)
76
+ - `Formality` (categorical: Casual, Semi-Formal, Formal)
77
+ - `is_winter_wearable` (binary target: `1 = yes, 0 = no`)
78
+
79
+ ---
80
 
81
+ ## Dataset Creation
82
 
83
+ **Curation Rationale**
84
+ To study how outfit images can be labeled for **seasonal wearability** and **formality classification** in a simplified educational dataset.
 
 
85
 
86
+ **Data Collection and Processing**
87
+ - Original images manually photographed by the dataset creator (shirt–pant combos).
88
+ - Images resized to **224×224 pixels** for consistency.
89
+ - Binary label `is_winter_wearable` assigned based on whether the outfit could be worn in winter with a jacket.
90
+ - Augmentation applied using PyTorch/Torchvision (random flips, rotations, color jitter, erasing, etc.).
 
 
 
 
 
91
 
92
+ **Source Data Producers**
93
+ - Original producer: Bareethul Kader (personal clothing images).
94
+ - Dataset curated solely for educational purposes.
95
 
96
+ ---
97
+
98
+ ## Annotations
99
+
100
+ - **Annotation Process:**
101
+ - `Formality` labeled manually by the creator (Casual, Semi-Formal, Formal).
102
+ - `is_winter_wearable` labeled based on personal judgment.
103
+ - **Annotators:** Dataset creator.
104
 
105
+ ---
106
+
107
+ ## Personal and Sensitive Information
108
 
109
+ - No faces, people, or identifying information included.
110
+ - Only images of **inanimate clothing items**.
111
 
112
+ ---
 
 
 
 
 
 
113
 
114
+ ## Bias, Risks, and Limitations
115
 
116
+ - Small dataset (30 images) — not representative of all outfit styles.
117
+ - Subjective labels (`formality`, `is_winter_wearable`) may reflect individual judgment, not universal agreement.
118
+ - Augmentation may create visually unrealistic variants.
119
 
120
+ ---
121
+
122
+ ## Recommendations
123
+
124
+ Users should be aware of the **limited scope and subjectivity** of this dataset.
125
+ It is intended only for **educational demonstrations** of image dataset creation and augmentation.
126
+
127
+ ---
128
 
129
+ ## Citation
 
130
 
131
+ **BibTeX:**
132
+ ```bibtex
133
+ @dataset{bareethul_clothing_outfits,
134
+ author = {Kader, Bareethul},
135
+ title = {Clothing Outfit Dataset},
136
+ year = {2025},
137
+ publisher = {Hugging Face Datasets},
138
+ url = {https://huggingface.co/datasets/bareethul/clothing-outfits}
139
+ }
140