Datasets:
Tasks:
Object Detection
Modalities:
Image
Formats:
imagefolder
Languages:
English
Size:
1K - 10K
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,61 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: openrail
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: openrail
|
| 3 |
+
tags:
|
| 4 |
+
- fashion
|
| 5 |
+
- clothing
|
| 6 |
+
- virtual-try-on
|
| 7 |
+
- e-commerce
|
| 8 |
+
- flatlay
|
| 9 |
+
- image-generation
|
| 10 |
+
pretty_name: Codatta Fashion 1K
|
| 11 |
+
size_categories:
|
| 12 |
+
- 1K<n<10K
|
| 13 |
+
task_categories:
|
| 14 |
+
- image-classification
|
| 15 |
+
- object-detection
|
| 16 |
+
configs:
|
| 17 |
+
- config_name: default
|
| 18 |
+
data_files:
|
| 19 |
+
- split: train
|
| 20 |
+
path: data/train-*
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
# Fashion 1K
|
| 24 |
+
|
| 25 |
+
## Dataset Summary
|
| 26 |
+
|
| 27 |
+
**Fashion 1K** is a curated collection of 1,000 high-quality fashion images, focusing on apparel and outfit compositions without human models.
|
| 28 |
+
|
| 29 |
+
Unlike typical street-style datasets (like DeepFashion) that include human poses and complex backgrounds, this dataset provides **clean, human-free** images. The images primarily feature **Flat Lay** (clothing arranged on a flat surface) or **Ghost Mannequin** styles, making them ideal for tasks that require a clear view of the garment's structure, texture, and color without occlusion.
|
| 30 |
+
|
| 31 |
+
**Key Features:**
|
| 32 |
+
* **Human-Free:** No faces, limbs, or skin tones—strictly focused on the garments.
|
| 33 |
+
* **Outfit-Centric:** Many images showcase complete looks (e.g., Top + Bottom + Shoes) to aid in compatibility learning.
|
| 34 |
+
* **Clean Backgrounds:** Minimized background noise to facilitate easier segmentation and feature extraction.
|
| 35 |
+
|
| 36 |
+
## Supported Tasks
|
| 37 |
+
|
| 38 |
+
This dataset is particularly suitable for:
|
| 39 |
+
|
| 40 |
+
* **Virtual Try-On (VTON):** Serving as the "garment" reference image (`g_img`) for 2D try-on pipelines.
|
| 41 |
+
* **Fashion Compatibility Learning:** Learning which items (e.g., shirt and trousers) go well together based on the curated outfits.
|
| 42 |
+
* **Generative AI Training:** Training LoRAs or ControlNets for specific clothing styles without the bias of human figures.
|
| 43 |
+
* **E-commerce Tagging:** Automated classification of clothing categories and attributes.
|
| 44 |
+
|
| 45 |
+
## Dataset Structure
|
| 46 |
+
|
| 47 |
+
### Data Fields
|
| 48 |
+
|
| 49 |
+
* **`image`** (image): The high-resolution image of the clothing item or outfit.
|
| 50 |
+
|
| 51 |
+
## Usage Example
|
| 52 |
+
|
| 53 |
+
```python
|
| 54 |
+
from datasets import load_dataset
|
| 55 |
+
|
| 56 |
+
# Load the dataset
|
| 57 |
+
ds = load_dataset("Codatta/Fashion-1K", split="train")
|
| 58 |
+
|
| 59 |
+
# Display the first image
|
| 60 |
+
sample = ds[0]
|
| 61 |
+
sample['image'].show()
|